From 36172a565cf2de2201099e0083aa8f2d6796293a Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Wed, 20 Nov 2024 13:18:29 +0100 Subject: [PATCH 01/12] Unedited changelog / release changes --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++ Cargo.lock | 6 +++--- README.md | 6 +++--- crates/ruff/Cargo.toml | 2 +- crates/ruff_linter/Cargo.toml | 2 +- crates/ruff_wasm/Cargo.toml | 2 +- docs/integrations.md | 8 +++---- pyproject.toml | 2 +- scripts/benchmarks/pyproject.toml | 2 +- 9 files changed, 50 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c49510221a79b..e0a059e0569a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # Changelog +## 0.8.0 + +### Breaking changes + +- Ruff 0.8 ([#14383](https://github.com/MichaReiser/ruff/pull/14383)) + +### Preview features + +- Mark UP043 fix unsafe when the type annotation contains any comments ([#14458](https://github.com/astral-sh/ruff/pull/14458)) +- \[`flake8-pyi`\] Implement `redundant-none-literal` (`PYI061`) ([#14316](https://github.com/astral-sh/ruff/pull/14316)) +- \[`flake8-pyi`\] Implement autofix for `redundant-numeric-union` (`PYI041`) ([#14273](https://github.com/astral-sh/ruff/pull/14273)) +- \[`pycodestyle`\] Exempt `pytest.importorskip()` calls (`E402`) ([#14474](https://github.com/astral-sh/ruff/pull/14474)) +- \[`pydoclint`\] Update diagnostics to target the docstring ([#14381](https://github.com/astral-sh/ruff/pull/14381)) +- \[`pylint`\] - use sets when possible for `PLR1714` autofix (`repeated-equality-comparison`) ([#14372](https://github.com/astral-sh/ruff/pull/14372)) +- \[`ruff`\] Add rule forbidding `map(int, package.__version__.split('.'))` (`RUF048`) ([#14373](https://github.com/astral-sh/ruff/pull/14373)) +- \[`ruff`\] Implement `redundant-bool-literal` (`RUF038`) ([#14319](https://github.com/astral-sh/ruff/pull/14319)) +- \[`ruff`\] `re` and `regex` calls with unraw string as first argument (`RUF039`) ([#14446](https://github.com/astral-sh/ruff/pull/14446)) + +### Bug fixes + +- Avoid panic in unfixable `redundant-numeric-union` ([#14402](https://github.com/astral-sh/ruff/pull/14402)) +- Reverse order of `__contains__` arguments ([#14424](https://github.com/astral-sh/ruff/pull/14424)) +- \[`flake8-datetimez`\] Also exempt `.time()` (`DTZ901`) ([#14394](https://github.com/astral-sh/ruff/pull/14394)) +- \[`flake8-type-checking`\] Consider type expressions in list for quoting annotations ([#14371](https://github.com/astral-sh/ruff/pull/14371)) + +### Documentation + +- Improve rule & options documentation ([#14329](https://github.com/astral-sh/ruff/pull/14329)) +- Watch for changes to the generated file during documentation serve ([#14476](https://github.com/astral-sh/ruff/pull/14476)) +- \[`flake8-logging`\] Suggest `.getLogger(__name__)` instead of `.getLogger(__file__)` (`LOG015`) ([#14392](https://github.com/astral-sh/ruff/pull/14392)) + +### Other changes + +- \[`flake8-pie`\] Mark fix as unsafe if the following statement is a string literal (`PIE790`) ([#14393](https://github.com/astral-sh/ruff/pull/14393)) + ## 0.7.4 ### Preview features diff --git a/Cargo.lock b/Cargo.lock index 9f641455da69e..bbc6287fc515b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2489,7 +2489,7 @@ dependencies = [ [[package]] name = "ruff" -version = "0.7.4" +version = "0.8.0" dependencies = [ "anyhow", "argfile", @@ -2708,7 +2708,7 @@ dependencies = [ [[package]] name = "ruff_linter" -version = "0.7.4" +version = "0.8.0" dependencies = [ "aho-corasick", "annotate-snippets 0.9.2", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "ruff_wasm" -version = "0.7.4" +version = "0.8.0" dependencies = [ "console_error_panic_hook", "console_log", diff --git a/README.md b/README.md index c854682b50976..6c4b1dbc75997 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,8 @@ curl -LsSf https://astral.sh/ruff/install.sh | sh powershell -c "irm https://astral.sh/ruff/install.ps1 | iex" # For a specific version. -curl -LsSf https://astral.sh/ruff/0.7.4/install.sh | sh -powershell -c "irm https://astral.sh/ruff/0.7.4/install.ps1 | iex" +curl -LsSf https://astral.sh/ruff/0.8.0/install.sh | sh +powershell -c "irm https://astral.sh/ruff/0.8.0/install.ps1 | iex" ``` You can also install Ruff via [Homebrew](https://formulae.brew.sh/formula/ruff), [Conda](https://anaconda.org/conda-forge/ruff), @@ -170,7 +170,7 @@ Ruff can also be used as a [pre-commit](https://pre-commit.com/) hook via [`ruff ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.7.4 + rev: v0.8.0 hooks: # Run the linter. - id: ruff diff --git a/crates/ruff/Cargo.toml b/crates/ruff/Cargo.toml index d1c074182061b..1fd0889ce523b 100644 --- a/crates/ruff/Cargo.toml +++ b/crates/ruff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff" -version = "0.7.4" +version = "0.8.0" publish = true authors = { workspace = true } edition = { workspace = true } diff --git a/crates/ruff_linter/Cargo.toml b/crates/ruff_linter/Cargo.toml index 2b1f598c88fe0..d2adeffbe1ad7 100644 --- a/crates/ruff_linter/Cargo.toml +++ b/crates/ruff_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_linter" -version = "0.7.4" +version = "0.8.0" publish = false authors = { workspace = true } edition = { workspace = true } diff --git a/crates/ruff_wasm/Cargo.toml b/crates/ruff_wasm/Cargo.toml index 5ca23fe987d12..8186cd6840464 100644 --- a/crates/ruff_wasm/Cargo.toml +++ b/crates/ruff_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruff_wasm" -version = "0.7.4" +version = "0.8.0" publish = false authors = { workspace = true } edition = { workspace = true } diff --git a/docs/integrations.md b/docs/integrations.md index e84cd0a92fc15..acf18682a6fc1 100644 --- a/docs/integrations.md +++ b/docs/integrations.md @@ -80,7 +80,7 @@ You can add the following configuration to `.gitlab-ci.yml` to run a `ruff forma stage: build interruptible: true image: - name: ghcr.io/astral-sh/ruff:0.7.4-alpine + name: ghcr.io/astral-sh/ruff:0.8.0-alpine before_script: - cd $CI_PROJECT_DIR - ruff --version @@ -106,7 +106,7 @@ Ruff can be used as a [pre-commit](https://pre-commit.com) hook via [`ruff-pre-c ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.7.4 + rev: v0.8.0 hooks: # Run the linter. - id: ruff @@ -119,7 +119,7 @@ To enable lint fixes, add the `--fix` argument to the lint hook: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.7.4 + rev: v0.8.0 hooks: # Run the linter. - id: ruff @@ -133,7 +133,7 @@ To run the hooks over Jupyter Notebooks too, add `jupyter` to the list of allowe ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.7.4 + rev: v0.8.0 hooks: # Run the linter. - id: ruff diff --git a/pyproject.toml b/pyproject.toml index e2279fb9cc196..9685ccaccc4fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "ruff" -version = "0.7.4" +version = "0.8.0" description = "An extremely fast Python linter and code formatter, written in Rust." authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] readme = "README.md" diff --git a/scripts/benchmarks/pyproject.toml b/scripts/benchmarks/pyproject.toml index 7dc11ad007b3b..7af491c4b620c 100644 --- a/scripts/benchmarks/pyproject.toml +++ b/scripts/benchmarks/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scripts" -version = "0.7.4" +version = "0.8.0" description = "" authors = ["Charles Marsh "] From 75f017a5bb948c5db2b6eb060aa4f510b33c4db4 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Wed, 20 Nov 2024 14:45:45 +0100 Subject: [PATCH 02/12] Edit changelog --- CHANGELOG.md | 91 ++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 70 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0a059e0569a9..c32af9d451dc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,38 +2,87 @@ ## 0.8.0 +Check out the [blog post](https://astral.sh/blog/ruff-v0.8.0) for a migration guide and overview of the changes! + ### Breaking changes -- Ruff 0.8 ([#14383](https://github.com/MichaReiser/ruff/pull/14383)) +See also, the "Remapped rules" section which may result in disabled rules. -### Preview features +- **Default to Python 3.9** -- Mark UP043 fix unsafe when the type annotation contains any comments ([#14458](https://github.com/astral-sh/ruff/pull/14458)) -- \[`flake8-pyi`\] Implement `redundant-none-literal` (`PYI061`) ([#14316](https://github.com/astral-sh/ruff/pull/14316)) -- \[`flake8-pyi`\] Implement autofix for `redundant-numeric-union` (`PYI041`) ([#14273](https://github.com/astral-sh/ruff/pull/14273)) -- \[`pycodestyle`\] Exempt `pytest.importorskip()` calls (`E402`) ([#14474](https://github.com/astral-sh/ruff/pull/14474)) -- \[`pydoclint`\] Update diagnostics to target the docstring ([#14381](https://github.com/astral-sh/ruff/pull/14381)) -- \[`pylint`\] - use sets when possible for `PLR1714` autofix (`repeated-equality-comparison`) ([#14372](https://github.com/astral-sh/ruff/pull/14372)) -- \[`ruff`\] Add rule forbidding `map(int, package.__version__.split('.'))` (`RUF048`) ([#14373](https://github.com/astral-sh/ruff/pull/14373)) -- \[`ruff`\] Implement `redundant-bool-literal` (`RUF038`) ([#14319](https://github.com/astral-sh/ruff/pull/14319)) -- \[`ruff`\] `re` and `regex` calls with unraw string as first argument (`RUF039`) ([#14446](https://github.com/astral-sh/ruff/pull/14446)) + Ruff now defaults to Python 3.9 instead of 3.8 if no explicit Python version is configured using `ruff.target-version` or `project.requires-python` ([#13896](https://github.com/astral-sh/ruff/pull/13896)) -### Bug fixes +- **Use XDG (i.e. `~/.local/bin`) instead of the Cargo home directory in the installer** -- Avoid panic in unfixable `redundant-numeric-union` ([#14402](https://github.com/astral-sh/ruff/pull/14402)) -- Reverse order of `__contains__` arguments ([#14424](https://github.com/astral-sh/ruff/pull/14424)) -- \[`flake8-datetimez`\] Also exempt `.time()` (`DTZ901`) ([#14394](https://github.com/astral-sh/ruff/pull/14394)) -- \[`flake8-type-checking`\] Consider type expressions in list for quoting annotations ([#14371](https://github.com/astral-sh/ruff/pull/14371)) + Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). Note, this only applies if you installed Ruff with the standalone installer (using the shell or PowerShell script but not when using e.g. pip). -### Documentation +- **Updated Unicode standard** -- Improve rule & options documentation ([#14329](https://github.com/astral-sh/ruff/pull/14329)) -- Watch for changes to the generated file during documentation serve ([#14476](https://github.com/astral-sh/ruff/pull/14476)) -- \[`flake8-logging`\] Suggest `.getLogger(__name__)` instead of `.getLogger(__file__)` (`LOG015`) ([#14392](https://github.com/astral-sh/ruff/pull/14392)) + Ruff now uses a more recent version of the Unicode standard. In very rare cases, this can lead to formatting changes or new `E501` violations if the computed line width differs. -### Other changes +### Removed Rules + +The following deprecated rules have been removed: + +- [`missing-type-self`](https://docs.astral.sh/ruff/rules/missing-type-self/) (`ANN101`) +- [`missing-type-cls`](https://docs.astral.sh/ruff/rules/missing-type-cls/) (`ANN102`) +- [`pytest-incorrect-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-incorrect-fixture-name-underscore/) (`E999`) +- [`pytest-missing-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-missing-fixture-name-underscore/) (`PT004`) +- [`pytest-incorrect-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-incorrect-fixture-name-underscore/) (`PT005`) +- [`unpacked-list-comprehension`](https://docs.astral.sh/ruff/rules/unpacked-list-comprehension/) (`UP027`) + +### Remapped rules + +The following rules have been remapped to new rule codes: + +- [`flake8-type-checking`](https://docs.astral.sh/ruff/rules/#flake8-type-checking-tch): `TCH` to `TC` + +### Stabilization + +The following rules have been stabilized and are no longer in preview: + +- [`builtin-import-shadowing`](https://docs.astral.sh/ruff/rules/builtin-import-shadowing/) (`A004`) +- [`mutable-contextvar-default`](https://docs.astral.sh/ruff/rules/mutable-contextvar-default/) (`B039`) +- [`fast-api-redundant-response-model`](https://docs.astral.sh/ruff/rules/fast-api-redundant-response-model/) (`FAST001`) +- [`fast-api-non-annotated-dependency`](https://docs.astral.sh/ruff/rules/fast-api-non-annotated-dependency/) (`FAST002`) +- [`dict-index-missing-items`](https://docs.astral.sh/ruff/rules/dict-index-missing-items/) (`PLC0206`) +- [`pep484-style-positional-only-argument`](https://docs.astral.sh/ruff/rules/pep484-style-positional-only-argument/) (`PYI063`) +- [`redundant-final-literal`](https://docs.astral.sh/ruff/rules/redundant-final-literal/) (`PYI064`) +- [`bad-version-info-order`](https://docs.astral.sh/ruff/rules/bad-version-info-order/) (`PYI066`) +- [`parenthesize-chained-operators`](https://docs.astral.sh/ruff/rules/parenthesize-chained-operators/) (`RUF021`) +- [`unsorted-dunder-all`](https://docs.astral.sh/ruff/rules/unsorted-dunder-all/) (`RUF022`) +- [`unsorted-dunder-slots`](https://docs.astral.sh/ruff/rules/unsorted-dunder-slots/) (`RUF023`) +- [`assert-with-print-message`](https://docs.astral.sh/ruff/rules/assert-with-print-message/) (`RUF030`) +- [`unnecessary-default-type-args`](https://docs.astral.sh/ruff/rules/unnecessary-default-type-args/) (`UP043`) + +The following behaviors have been stabilized: + +- [`ambiguous-variable-name`](https://docs.astral.sh/ruff/rules/ambiguous-variable-name/) (`E741`): Ignore violations in stub files because the stub-author doesn't control the variable name. +- [`invalid-pyproject-toml`](https://docs.astral.sh/ruff/rules/invalid-pyproject-toml/) (`RUF200`): Updated to reflect the provisionally accepted PEP 639. +- [`printf-string-formatting`](https://docs.astral.sh/ruff/rules/printf-string-formatting/) (`UP031`): Report all printf-like usages even if no autofix is available + +The following fixes have been stabilized: + +- [`zip-instead-of-pairwise`](https://docs.astral.sh/ruff/rules/zip-instead-of-pairwise/) (`RUF007`) + +### Preview features + +- \[`flake8-pyi`\] Add `redundant-none-literal` (`PYI061`) ([#14316](https://github.com/astral-sh/ruff/pull/14316)) +- \[`flake8-pyi`\] Add autofix for `redundant-numeric-union` (`PYI041`) ([#14273](https://github.com/astral-sh/ruff/pull/14273)) +- \[`pycodestyle`\] Exempt `pytest.importorskip()` calls (`E402`) ([#14474](https://github.com/astral-sh/ruff/pull/14474)) +- \[`pydoclint`\] Report pydoclint diagnostics at the start of the docstring instead of the documented statement ([#14381](https://github.com/astral-sh/ruff/pull/14381)) +- \[`pylint`\] Autofix suggests using sets when possible (`PLR1714`) ([#14372](https://github.com/astral-sh/ruff/pull/14372)) +- \[`ruff`\] New rule `map-int-version-parsing` (`RUF048`) ([#14373](https://github.com/astral-sh/ruff/pull/14373)) +- \[`ruff`\] New rule `redundant-bool-literal` (`RUF038`) ([#14319](https://github.com/astral-sh/ruff/pull/14319)) +- \[`ruff`\] New rule `unraw-re-pattern` (`RUF039`) ([#14446](https://github.com/astral-sh/ruff/pull/14446)) + +### Rule changes +- \[`flake8-datetimez`\] Exempt `min.time()` and `max.time()` (`DTZ901`) ([#14394](https://github.com/astral-sh/ruff/pull/14394)) - \[`flake8-pie`\] Mark fix as unsafe if the following statement is a string literal (`PIE790`) ([#14393](https://github.com/astral-sh/ruff/pull/14393)) +- \[`flake8-pyi`\] Avoid panic in unfixable case (`PYI041`) ([#14402](https://github.com/astral-sh/ruff/pull/14402)) +- \[`flake8-type-checking`\] Correctly handle quotes in subscript expression when generating an autofix ([#14371](https://github.com/astral-sh/ruff/pull/14371)) +- \[`pylint`\] Fix incorrect autofix for `__contains__` (`PLC2801`) ([#14424](https://github.com/astral-sh/ruff/pull/14424)) ## 0.7.4 From 019817cd252974db138474c6bd7374338275656a Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Wed, 20 Nov 2024 15:40:25 +0100 Subject: [PATCH 03/12] Apply suggestions from code review Co-authored-by: Alex Waygood --- CHANGELOG.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c32af9d451dc8..00bc3b9a17574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,15 +10,17 @@ See also, the "Remapped rules" section which may result in disabled rules. - **Default to Python 3.9** - Ruff now defaults to Python 3.9 instead of 3.8 if no explicit Python version is configured using `ruff.target-version` or `project.requires-python` ([#13896](https://github.com/astral-sh/ruff/pull/13896)) + Ruff now defaults to Python 3.9 instead of 3.8 if no explicit Python version is configured using [`ruff.target-version`](https://docs.astral.sh/ruff/settings/#target-version) or [`project.requires-python`](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#python-requires) ([#13896](https://github.com/astral-sh/ruff/pull/13896)) -- **Use XDG (i.e. `~/.local/bin`) instead of the Cargo home directory in the installer** +- **Use XDG (i.e. `~/.local/bin`) instead of the Cargo home directory in the standalone installer** - Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). Note, this only applies if you installed Ruff with the standalone installer (using the shell or PowerShell script but not when using e.g. pip). + Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). + + This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using `uv` or `pip`, you should be unaffected. - **Updated Unicode standard** - Ruff now uses a more recent version of the Unicode standard. In very rare cases, this can lead to formatting changes or new `E501` violations if the computed line width differs. + Ruff now uses a more recent version of the Unicode standard. In very rare cases, this can lead to formatting changes or new [`E501`](https://docs.astral.sh/ruff/rules/line-too-long/) violations if the computed line width differs. ### Removed Rules @@ -57,9 +59,9 @@ The following rules have been stabilized and are no longer in preview: The following behaviors have been stabilized: -- [`ambiguous-variable-name`](https://docs.astral.sh/ruff/rules/ambiguous-variable-name/) (`E741`): Ignore violations in stub files because the stub-author doesn't control the variable name. -- [`invalid-pyproject-toml`](https://docs.astral.sh/ruff/rules/invalid-pyproject-toml/) (`RUF200`): Updated to reflect the provisionally accepted PEP 639. -- [`printf-string-formatting`](https://docs.astral.sh/ruff/rules/printf-string-formatting/) (`UP031`): Report all printf-like usages even if no autofix is available +- [`ambiguous-variable-name`](https://docs.astral.sh/ruff/rules/ambiguous-variable-name/) (`E741`): Violations in stub files are now ignored. Stub authors typically don't control variable names. +- [`invalid-pyproject-toml`](https://docs.astral.sh/ruff/rules/invalid-pyproject-toml/) (`RUF200`): Updated to reflect the provisionally accepted [PEP 639](https://peps.python.org/pep-0639/). +- [`printf-string-formatting`](https://docs.astral.sh/ruff/rules/printf-string-formatting/) (`UP031`): Report all `printf`-like usages even if no autofix is available The following fixes have been stabilized: From 0841b4cda286b9dbebad5a543b3bb2f3b1f8ce7d Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Wed, 20 Nov 2024 16:08:02 +0100 Subject: [PATCH 04/12] Fix `E999` --- CHANGELOG.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00bc3b9a17574..a4766d29d1a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ See also, the "Remapped rules" section which may result in disabled rules. - **Use XDG (i.e. `~/.local/bin`) instead of the Cargo home directory in the standalone installer** Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). - + This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using `uv` or `pip`, you should be unaffected. - **Updated Unicode standard** @@ -28,7 +28,7 @@ The following deprecated rules have been removed: - [`missing-type-self`](https://docs.astral.sh/ruff/rules/missing-type-self/) (`ANN101`) - [`missing-type-cls`](https://docs.astral.sh/ruff/rules/missing-type-cls/) (`ANN102`) -- [`pytest-incorrect-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-incorrect-fixture-name-underscore/) (`E999`) +- [`syntax-error`](https://docs.astral.sh/ruff/rules/syntax-error/) (`E999`) - [`pytest-missing-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-missing-fixture-name-underscore/) (`PT004`) - [`pytest-incorrect-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-incorrect-fixture-name-underscore/) (`PT005`) - [`unpacked-list-comprehension`](https://docs.astral.sh/ruff/rules/unpacked-list-comprehension/) (`UP027`) @@ -69,22 +69,22 @@ The following fixes have been stabilized: ### Preview features -- \[`flake8-pyi`\] Add `redundant-none-literal` (`PYI061`) ([#14316](https://github.com/astral-sh/ruff/pull/14316)) +- \[`flake8-pie`\] Mark fix as unsafe if the following statement is a string literal (`PIE790`) ([#14393](https://github.com/astral-sh/ruff/pull/14393)) +- \[`flake8-pyi`\] New rule `redundant-none-literal` (`PYI061`) ([#14316](https://github.com/astral-sh/ruff/pull/14316)) - \[`flake8-pyi`\] Add autofix for `redundant-numeric-union` (`PYI041`) ([#14273](https://github.com/astral-sh/ruff/pull/14273)) +- \[`ruff`\] New rule `map-int-version-parsing` (`RUF048`) ([#14373](https://github.com/astral-sh/ruff/pull/14373)) +- \[`ruff`\] New rule `redundant-bool-literal` (`RUF038`) ([#14319](https://github.com/astral-sh/ruff/pull/14319)) +- \[`ruff`\] New rule `unraw-re-pattern` (`RUF039`) ([#14446](https://github.com/astral-sh/ruff/pull/14446)) - \[`pycodestyle`\] Exempt `pytest.importorskip()` calls (`E402`) ([#14474](https://github.com/astral-sh/ruff/pull/14474)) - \[`pydoclint`\] Report pydoclint diagnostics at the start of the docstring instead of the documented statement ([#14381](https://github.com/astral-sh/ruff/pull/14381)) - \[`pylint`\] Autofix suggests using sets when possible (`PLR1714`) ([#14372](https://github.com/astral-sh/ruff/pull/14372)) -- \[`ruff`\] New rule `map-int-version-parsing` (`RUF048`) ([#14373](https://github.com/astral-sh/ruff/pull/14373)) -- \[`ruff`\] New rule `redundant-bool-literal` (`RUF038`) ([#14319](https://github.com/astral-sh/ruff/pull/14319)) -- \[`ruff`\] New rule `unraw-re-pattern` (`RUF039`) ([#14446](https://github.com/astral-sh/ruff/pull/14446)) ### Rule changes - \[`flake8-datetimez`\] Exempt `min.time()` and `max.time()` (`DTZ901`) ([#14394](https://github.com/astral-sh/ruff/pull/14394)) -- \[`flake8-pie`\] Mark fix as unsafe if the following statement is a string literal (`PIE790`) ([#14393](https://github.com/astral-sh/ruff/pull/14393)) - \[`flake8-pyi`\] Avoid panic in unfixable case (`PYI041`) ([#14402](https://github.com/astral-sh/ruff/pull/14402)) - \[`flake8-type-checking`\] Correctly handle quotes in subscript expression when generating an autofix ([#14371](https://github.com/astral-sh/ruff/pull/14371)) -- \[`pylint`\] Fix incorrect autofix for `__contains__` (`PLC2801`) ([#14424](https://github.com/astral-sh/ruff/pull/14424)) +- \[`pylint`\] Suggest correct autofix for `__contains__` (`PLC2801`) ([#14424](https://github.com/astral-sh/ruff/pull/14424)) ## 0.7.4 From 4fe2b76f262c5b1645b506414cfd71da15fd1d2c Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 08:27:10 +0100 Subject: [PATCH 05/12] Update CHANGELOG.md Co-authored-by: David Salvisberg --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4766d29d1a47..2ccf515e6c4df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,7 +37,7 @@ The following deprecated rules have been removed: The following rules have been remapped to new rule codes: -- [`flake8-type-checking`](https://docs.astral.sh/ruff/rules/#flake8-type-checking-tch): `TCH` to `TC` +- [`flake8-type-checking`](https://docs.astral.sh/ruff/rules/#flake8-type-checking-tc): `TCH` to `TC` ### Stabilization From cee447e96919575b619b4555028a2bd11c46ba92 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 09:13:31 +0100 Subject: [PATCH 06/12] Highlight pydoclint change, rephrase line width calculation changes --- CHANGELOG.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ccf515e6c4df..eda7f2dcc5df0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,15 +12,24 @@ See also, the "Remapped rules" section which may result in disabled rules. Ruff now defaults to Python 3.9 instead of 3.8 if no explicit Python version is configured using [`ruff.target-version`](https://docs.astral.sh/ruff/settings/#target-version) or [`project.requires-python`](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#python-requires) ([#13896](https://github.com/astral-sh/ruff/pull/13896)) +- **Changed location of `pydoclint` diagnostics** + + The [`pydoclint`](https://docs.astral.sh/ruff/rules/#pydoclint-doc) diagnostics now point to the first-line of the problematic docstring. Previously, this was not the case. + + If you've opted into these rules but have them suppressed using + [`noqa`](https://docs.astral.sh/ruff/linter/#error-suppression) comments in + some places, this change may mean that you need to move the `noqa` suppression + comments. Most users should be unaffected by this change. + - **Use XDG (i.e. `~/.local/bin`) instead of the Cargo home directory in the standalone installer** Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using `uv` or `pip`, you should be unaffected. -- **Updated Unicode standard** +- **Changes to the line width calculation** - Ruff now uses a more recent version of the Unicode standard. In very rare cases, this can lead to formatting changes or new [`E501`](https://docs.astral.sh/ruff/rules/line-too-long/) violations if the computed line width differs. + Ruff now uses a new version of the [unicode-width](https://github.com/unicode-rs/unicode-width) Rust crate to calculate the line width. In very rare cases, this can lead to lines containing Unicode characters to get reformatted, or be considered too long ([`E501`](https://docs.astral.sh/ruff/rules/line-too-long/)). ### Removed Rules @@ -60,7 +69,6 @@ The following rules have been stabilized and are no longer in preview: The following behaviors have been stabilized: - [`ambiguous-variable-name`](https://docs.astral.sh/ruff/rules/ambiguous-variable-name/) (`E741`): Violations in stub files are now ignored. Stub authors typically don't control variable names. -- [`invalid-pyproject-toml`](https://docs.astral.sh/ruff/rules/invalid-pyproject-toml/) (`RUF200`): Updated to reflect the provisionally accepted [PEP 639](https://peps.python.org/pep-0639/). - [`printf-string-formatting`](https://docs.astral.sh/ruff/rules/printf-string-formatting/) (`UP031`): Report all `printf`-like usages even if no autofix is available The following fixes have been stabilized: @@ -69,6 +77,7 @@ The following fixes have been stabilized: ### Preview features +- \[`flake8-datetimez`\] Exempt `min.time()` and `max.time()` (`DTZ901`) ([#14394](https://github.com/astral-sh/ruff/pull/14394)) - \[`flake8-pie`\] Mark fix as unsafe if the following statement is a string literal (`PIE790`) ([#14393](https://github.com/astral-sh/ruff/pull/14393)) - \[`flake8-pyi`\] New rule `redundant-none-literal` (`PYI061`) ([#14316](https://github.com/astral-sh/ruff/pull/14316)) - \[`flake8-pyi`\] Add autofix for `redundant-numeric-union` (`PYI041`) ([#14273](https://github.com/astral-sh/ruff/pull/14273)) @@ -76,12 +85,11 @@ The following fixes have been stabilized: - \[`ruff`\] New rule `redundant-bool-literal` (`RUF038`) ([#14319](https://github.com/astral-sh/ruff/pull/14319)) - \[`ruff`\] New rule `unraw-re-pattern` (`RUF039`) ([#14446](https://github.com/astral-sh/ruff/pull/14446)) - \[`pycodestyle`\] Exempt `pytest.importorskip()` calls (`E402`) ([#14474](https://github.com/astral-sh/ruff/pull/14474)) -- \[`pydoclint`\] Report pydoclint diagnostics at the start of the docstring instead of the documented statement ([#14381](https://github.com/astral-sh/ruff/pull/14381)) - \[`pylint`\] Autofix suggests using sets when possible (`PLR1714`) ([#14372](https://github.com/astral-sh/ruff/pull/14372)) ### Rule changes -- \[`flake8-datetimez`\] Exempt `min.time()` and `max.time()` (`DTZ901`) ([#14394](https://github.com/astral-sh/ruff/pull/14394)) +- [`invalid-pyproject-toml`](https://docs.astral.sh/ruff/rules/invalid-pyproject-toml/) (`RUF200`): Updated to reflect the provisionally accepted [PEP 639](https://peps.python.org/pep-0639/). - \[`flake8-pyi`\] Avoid panic in unfixable case (`PYI041`) ([#14402](https://github.com/astral-sh/ruff/pull/14402)) - \[`flake8-type-checking`\] Correctly handle quotes in subscript expression when generating an autofix ([#14371](https://github.com/astral-sh/ruff/pull/14371)) - \[`pylint`\] Suggest correct autofix for `__contains__` (`PLC2801`) ([#14424](https://github.com/astral-sh/ruff/pull/14424)) From 5d68d1b53b8c65daac506e3e6bdfb0511b626fac Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 13:22:45 +0100 Subject: [PATCH 07/12] Apply suggestions from code review Co-authored-by: Alex Waygood --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eda7f2dcc5df0..7bd78b6960666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,9 +14,9 @@ See also, the "Remapped rules" section which may result in disabled rules. - **Changed location of `pydoclint` diagnostics** - The [`pydoclint`](https://docs.astral.sh/ruff/rules/#pydoclint-doc) diagnostics now point to the first-line of the problematic docstring. Previously, this was not the case. + [`pydoclint`](https://docs.astral.sh/ruff/rules/#pydoclint-doc) diagnostics now point to the first-line of the problematic docstring. Previously, this was not the case. - If you've opted into these rules but have them suppressed using + If you've opted into these preview rules but have them suppressed using [`noqa`](https://docs.astral.sh/ruff/linter/#error-suppression) comments in some places, this change may mean that you need to move the `noqa` suppression comments. Most users should be unaffected by this change. @@ -29,7 +29,7 @@ See also, the "Remapped rules" section which may result in disabled rules. - **Changes to the line width calculation** - Ruff now uses a new version of the [unicode-width](https://github.com/unicode-rs/unicode-width) Rust crate to calculate the line width. In very rare cases, this can lead to lines containing Unicode characters to get reformatted, or be considered too long ([`E501`](https://docs.astral.sh/ruff/rules/line-too-long/)). + Ruff now uses a new version of the [unicode-width](https://github.com/unicode-rs/unicode-width) Rust crate to calculate the line width. In very rare cases, this may lead to lines containing Unicode characters being reformatted, or being considered too long when they were not before ([`E501`](https://docs.astral.sh/ruff/rules/line-too-long/)). ### Removed Rules From 480c5262598e83c828c9814a00b7027759f01a0a Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 16:05:37 +0100 Subject: [PATCH 08/12] Mention 14435 --- CHANGELOG.md | 4 + metadata.json | 109040 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 109044 insertions(+) create mode 100644 metadata.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bd78b6960666..55200e7ff0cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,6 +94,10 @@ The following fixes have been stabilized: - \[`flake8-type-checking`\] Correctly handle quotes in subscript expression when generating an autofix ([#14371](https://github.com/astral-sh/ruff/pull/14371)) - \[`pylint`\] Suggest correct autofix for `__contains__` (`PLC2801`) ([#14424](https://github.com/astral-sh/ruff/pull/14424)) +### Configuration + +- Ruff now emits a warning instead of an error when a configuration [`ignore`](https://docs.astral.sh/ruff/settings/#lint_ignore)s a rule that has been removed ([#14435](https://github.com/astral-sh/ruff/pull/14435)) + ## 0.7.4 ### Preview features diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000000000..44214206411be --- /dev/null +++ b/metadata.json @@ -0,0 +1,109040 @@ +{ + "packages": [ + { + "name": "adler", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2", + "license": "0BSD OR MIT OR Apache-2.0", + "license_file": null, + "description": "A simple clean-room implementation of the Adler-32 checksum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "adler", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler-1.0.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler-1.0.2/benches/bench.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler-1.0.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--cfg=docsrs" + ] + } + }, + "release": { + "no-dev-version": true, + "pre-release-commit-message": "Release {{version}}", + "tag-message": "{{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\\.-]+" + } + ] + } + }, + "publish": null, + "authors": [ + "Jonas Schievink " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "checksum", + "integrity", + "hash", + "adler32", + "zlib" + ], + "readme": "README.md", + "repository": "https://github.com/jonas-schievink/adler.git", + "homepage": null, + "documentation": "https://docs.rs/adler/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ahash", + "version": "0.8.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A non-cryptographic hash function using AES-NI for high performance", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "atomic-polyfill", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-random", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pcg-mwc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.4", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ahash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nopanic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/nopanic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ahash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/map_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/./build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "atomic-polyfill": [ + "dep:atomic-polyfill", + "once_cell/atomic-polyfill" + ], + "compile-time-rng": [ + "const-random" + ], + "const-random": [ + "dep:const-random" + ], + "default": [ + "std", + "runtime-rng" + ], + "getrandom": [ + "dep:getrandom" + ], + "nightly-arm-aes": [], + "no-rng": [], + "runtime-rng": [ + "getrandom" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustc-args": [ + "-C", + "target-feature=+aes" + ], + "rustdoc-args": [ + "-C", + "target-feature=+aes" + ] + } + } + }, + "publish": null, + "authors": [ + "Tom Kaitchuck " + ], + "categories": [ + "algorithms", + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "hasher", + "hashmap", + "aes", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/tkaitchuck/ahash", + "homepage": null, + "documentation": "https://docs.rs/ahash", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "aho-corasick", + "version": "1.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Fast multiple substring searching.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "aho_corasick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std", + "perf-literal" + ], + "logging": [ + "dep:log" + ], + "perf-literal": [ + "dep:memchr" + ], + "std": [ + "memchr?/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "string", + "search", + "text", + "pattern", + "multi" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/aho-corasick", + "homepage": "https://github.com/BurntSushi/aho-corasick", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "android-tzdata", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for the Android-specific tzdata file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "android_tzdata", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android-tzdata-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android-tzdata-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RumovZ" + ], + "categories": [ + "date-and-time" + ], + "keywords": [ + "parser", + "android", + "timezone" + ], + "readme": "README.md", + "repository": "https://github.com/RumovZ/android-tzdata", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "android_system_properties", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Minimal Android system properties wrapper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.126", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "android_system_properties", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android_system_properties-0.1.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "time_zone", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android_system_properties-0.1.5/examples/time_zone.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android_system_properties-0.1.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "arm-linux-androideabi", + "armv7-linux-androideabi", + "aarch64-linux-android", + "i686-linux-android", + "x86_64-linux-android", + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Nicolas Silva " + ], + "categories": [], + "keywords": [ + "android" + ], + "readme": "README.md", + "repository": "https://github.com/nical/android_system_properties", + "homepage": "https://github.com/nical/android_system_properties", + "documentation": "https://docs.rs/android_system_properties", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "anes", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ANSI Escape Sequences provider & parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "execute", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/execute.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parser", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/parser.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "queue", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/queue.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sequence", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/sequence.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stdout", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/stdout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/string.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench_main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/benches/bench_main.rs", + "edition": "2018", + "required-features": [ + "parser" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bitflags": [ + "dep:bitflags" + ], + "default": [], + "parser": [ + "bitflags" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Robert Vojta " + ], + "categories": [], + "keywords": [ + "terminal", + "ansi", + "sequence", + "code", + "parser" + ], + "readme": "README.md", + "repository": "https://github.com/zrzka/anes-rs", + "homepage": null, + "documentation": "https://docs.rs/anes/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "annotate-snippets", + "version": "0.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Library for building code annotations", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "difference", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_yaml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "annotate_snippets", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "expected_type", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/expected_type.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "footer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/footer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "format", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/format.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "multislice", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/multislice.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dl_from_snippet", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/tests/dl_from_snippet.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fixtures", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/tests/fixtures.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "formatter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/tests/formatter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "ansi_term": [ + "dep:ansi_term" + ], + "color": [ + "ansi_term" + ], + "default": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Zibi Braniecki " + ], + "categories": [], + "keywords": [ + "code", + "analysis", + "ascii", + "errors", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/annotate-snippets-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "annotate-snippets", + "version": "0.9.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Library for building code annotations", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yansi-term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "difference", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yansi-term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "annotate_snippets", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "expected_type", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/expected_type.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "footer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/footer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "format", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/format.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "multislice", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/multislice.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dl_from_snippet", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/tests/dl_from_snippet.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fixtures_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/tests/fixtures_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "formatter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/tests/formatter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/benches/simple.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "color": [ + "yansi-term" + ], + "default": [], + "yansi-term": [ + "dep:yansi-term" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Zibi Braniecki " + ], + "categories": [], + "keywords": [ + "code", + "analysis", + "ascii", + "errors", + "debug" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/annotate-snippets-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "anstream", + "version": "0.6.13", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple cross platform library for writing colored text to a terminal.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-query", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colorchoice", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owo-colors", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strip-ansi-escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle-wincon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/examples/dump-stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "query-stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/examples/query-stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/benches/stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "strip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/benches/strip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "wincon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/benches/wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "auto": [ + "dep:anstyle-query" + ], + "default": [ + "auto", + "wincon" + ], + "test": [], + "wincon": [ + "dep:anstyle-wincon" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "strip", + "wincon" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "anstyle", + "version": "1.0.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ANSI text styling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-1.0.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-style", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-1.0.8/examples/dump-style.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-1.0.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-prefix": "", + "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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "anstyle-parse", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parse ANSI Style Escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "codegenrs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "path" + ], + "target": null, + "registry": null + }, + { + "name": "vte_generate_state_changes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parselog", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/examples/parselog.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/benches/parse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "core": [ + "dep:arrayvec" + ], + "default": [ + "utf8" + ], + "utf8": [ + "dep:utf8parse" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "vte" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "anstyle-query", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Look up colored console capabilities", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Console", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_query", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-query-1.0.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "query", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-query-1.0.2/examples/query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-query-1.0.2/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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "color", + "no-std", + "terminal", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "anstyle-wincon", + "version": "3.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Styling legacy Windows terminals", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Console", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anstyle_wincon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dump-wincon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/examples/dump-wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "set-wincon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/examples/set-wincon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [], + "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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "windows" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle.git", + "homepage": "https://github.com/rust-cli/anstyle", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "anyhow", + "version": "1.0.93", + "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Flexible concrete Error type built on std::error::Error", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.51", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "anyhow", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_autotrait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_autotrait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_backtrace.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_boxed", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_boxed.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_chain", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_chain.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_context", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_context.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_convert", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_convert.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_downcast", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_downcast.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ensure", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_ensure.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ffi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_ffi.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_fmt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_fmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_repr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_repr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_source.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "backtrace": [ + "dep:backtrace" + ], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "error", + "error-handling" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/anyhow", + "homepage": null, + "documentation": "https://docs.rs/anyhow", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.39" + }, + { + "name": "append-only-vec", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Append-only, concurrent vector", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scaling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "append_only_vec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/append-only-vec-0.1.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/append-only-vec-0.1.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/append-only-vec-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Roundy " + ], + "categories": [ + "data-structures", + "concurrency" + ], + "keywords": [ + "frozen", + "data-structure" + ], + "readme": "README.md", + "repository": "https://github.com/droundy/append-only-vec", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "arc-swap", + "version": "1.7.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Atomically swappable Arc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "adaptive-barrier", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.130", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.130", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "arc_swap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "random", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/tests/random.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stress", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/tests/stress.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "background", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/benches/background.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "int-access", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/benches/int-access.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "track", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/benches/track.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "experimental-strategies": [], + "experimental-thread-local": [], + "internal-test-strategies": [], + "serde": [ + "dep:serde" + ], + "weak": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "weak" + ] + } + } + }, + "publish": null, + "authors": [ + "Michal 'vorner' Vaner " + ], + "categories": [ + "data-structures", + "memory-management" + ], + "keywords": [ + "atomic", + "Arc" + ], + "readme": "README.md", + "repository": "https://github.com/vorner/arc-swap", + "homepage": null, + "documentation": "https://docs.rs/arc-swap", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "argfile", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Load additional CLI args from file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fs-err", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "os_str_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winsplit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "argfile", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/argfile-0.2.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "response": [ + "dep:winsplit" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/argfile-0.2.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/rust-cli/argfile/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "clap" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/argfile.git", + "homepage": "https://github.com/rust-cli/argfile", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "arrayvec", + "version": "0.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "arrayvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arraystring", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/benches/arraystring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "extend", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/benches/extend.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "zeroize" + ] + } + }, + "release": { + "no-dev-version": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "stack", + "vector", + "array", + "data-structure", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/arrayvec", + "homepage": null, + "documentation": "https://docs.rs/arrayvec/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "assert_fs", + "version": "1.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Filesystem fixtures and assertions for testing.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globwalk", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "predicates", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "predicates-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "predicates-tree", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "assert_fs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/assert_fs-1.1.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "failure", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/assert_fs-1.1.2/examples/failure.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "color": [ + "dep:anstream", + "predicates/color" + ], + "color-auto": [ + "color" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/assert_fs-1.1.2/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/assert-rs/assert_fs/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Ed Page " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "filesystem", + "test", + "assert", + "fixture" + ], + "readme": "README.md", + "repository": "https://github.com/assert-rs/assert_fs.git", + "homepage": "https://github.com/assert-rs/assert_fs", + "documentation": "http://docs.rs/assert_fs/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "autocfg", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Automatic cfg for Rust compiler features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "autocfg", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "integers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/integers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "paths", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/paths.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "traits", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/traits.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "versions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/versions.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/tests/no_std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rustflags", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/tests/rustflags.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wrappers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/tests/wrappers.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Josh Stone " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "rustc", + "build", + "autoconf" + ], + "readme": "README.md", + "repository": "https://github.com/cuviper/autocfg", + "homepage": null, + "documentation": "https://docs.rs/autocfg/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.0" + }, + { + "name": "base64", + "version": "0.13.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "encodes and decodes base64 as bytes or utf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "structopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "base64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "base64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/examples/base64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make_tables", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/examples/make_tables.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/decode.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/encode.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "helpers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/helpers.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/benches/benchmarks.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alice Maz ", + "Marshall Pierce " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "base64", + "utf8", + "encode", + "decode", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/marshallpierce/rust-base64", + "homepage": null, + "documentation": "https://docs.rs/base64", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "base64", + "version": "0.22.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "encodes and decodes base64 as bytes or utf8", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rstest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rstest_reuse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "base64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "base64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/examples/base64.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/tests/encode.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/tests/tests.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/benches/benchmarks.rs", + "edition": "2018", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Alice Maz ", + "Marshall Pierce " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "base64", + "utf8", + "encode", + "decode", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/marshallpierce/rust-base64", + "homepage": null, + "documentation": "https://docs.rs/base64", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48.0" + }, + { + "name": "bincode", + "version": "1.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "license": "MIT", + "license_file": null, + "description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.27", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bincode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bincode-1.3.3/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bincode-1.3.3/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "i128": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bincode-1.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ty Overby ", + "Francesco Mazzoli ", + "David Tolnay ", + "Zoey Riordan " + ], + "categories": [ + "encoding", + "network-programming" + ], + "keywords": [ + "binary", + "encode", + "decode", + "serialize", + "deserialize" + ], + "readme": "./readme.md", + "repository": "https://github.com/servo/bincode", + "homepage": null, + "documentation": "https://docs.rs/bincode", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitflags", + "version": "1.3.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A macro to generate structures which behave like bitflags.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitflags", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/tests/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/tests/compile.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [], + "example_generated": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "example_generated" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "no-std" + ], + "keywords": [ + "bit", + "bitmask", + "bitflags", + "flags" + ], + "readme": "README.md", + "repository": "https://github.com/bitflags/bitflags", + "homepage": "https://github.com/bitflags/bitflags", + "documentation": "https://docs.rs/bitflags", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bitflags", + "version": "2.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A macro to generate structures which behave like bitflags.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.19", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bitflags", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_bits_type", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/custom_bits_type.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/custom_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fmt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/fmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "macro_free", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/macro_free.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/benches/parse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "example_generated": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "example_generated" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "no-std" + ], + "keywords": [ + "bit", + "bitmask", + "bitflags", + "flags" + ], + "readme": "README.md", + "repository": "https://github.com/bitflags/bitflags", + "homepage": "https://github.com/bitflags/bitflags", + "documentation": "https://docs.rs/bitflags", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "block-buffer", + "version": "0.10.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Buffer type for block processing of data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "block_buffer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "block", + "buffer" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/block-buffer", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "boxcar", + "version": "0.2.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", + "license": "MIT", + "license_file": null, + "description": "A concurrent, append-only vector", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "boxcar", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "vec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/tests/vec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ibraheem Ahmed " + ], + "categories": [ + "concurrency", + "data-structures" + ], + "keywords": [ + "concurrent", + "vector", + "lock-free" + ], + "readme": "README.md", + "repository": "https://github.com/ibraheemdev/boxcar", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "bstr", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A string type that is not required to be valid UTF-8.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "dfa-search" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.85", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bstr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "graphemes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/graphemes.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "graphemes-std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/graphemes-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lines", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/lines.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lines-std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/lines-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "uppercase", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/uppercase.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "uppercase-std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/uppercase-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "words", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/words.rs", + "edition": "2021", + "required-features": [ + "std", + "unicode" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "words-std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/words-std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "memchr/alloc", + "serde?/alloc" + ], + "default": [ + "std", + "unicode" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc", + "memchr/std", + "serde?/std" + ], + "unicode": [ + "dep:regex-automata" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing", + "encoding" + ], + "keywords": [ + "string", + "str", + "byte", + "bytes", + "text" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/bstr", + "homepage": "https://github.com/BurntSushi/bstr", + "documentation": "https://docs.rs/bstr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73" + }, + { + "name": "bumpalo", + "version": "3.16.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A fast bump allocation arena for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.171", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.115", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "bumpalo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "try_alloc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/tests/try_alloc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/benches/benches.rs", + "edition": "2021", + "required-features": [ + "collections" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "allocator-api2": [ + "dep:allocator-api2" + ], + "allocator_api": [], + "boxed": [], + "collections": [], + "default": [], + "serde": [ + "dep:serde" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [ + "memory-management", + "rust-patterns", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/fitzgen/bumpalo", + "homepage": null, + "documentation": "https://docs.rs/bumpalo", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.73.0" + }, + { + "name": "byteorder", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Library for reading/writing numbers in big-endian and little-endian.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "byteorder", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "encoding", + "parsing", + "no-std" + ], + "keywords": [ + "byte", + "endian", + "big-endian", + "little-endian", + "binary" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/byteorder", + "homepage": "https://github.com/BurntSushi/byteorder", + "documentation": "https://docs.rs/byteorder", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "cachedir", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", + "license": "MIT", + "license_file": null, + "description": "A library to help interacting with cache directories and CACHEDIR.TAG files.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cachedir", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cachedir-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "cachedir", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cachedir-0.3.1/src/bin/cachedir.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cachedir-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jakub Stasiak " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/jstasiak/cachedir", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "camino", + "version": "1.1.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "UTF-8 paths", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "camino", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/tests/integration_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "proptest": [ + "dep:proptest" + ], + "proptest1": [ + "proptest" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=doc_cfg" + ] + } + } + }, + "publish": null, + "authors": [ + "Without Boats ", + "Ashley Williams ", + "Steve Klabnik ", + "Rain " + ], + "categories": [ + "development-tools", + "filesystem", + "os" + ], + "keywords": [ + "paths", + "utf8", + "unicode", + "filesystem" + ], + "readme": "README.md", + "repository": "https://github.com/camino-rs/camino", + "homepage": null, + "documentation": "https://docs.rs/camino", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.34.0" + }, + { + "name": "cast", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Ergonomic, checked cast functions for primitive types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cast", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cast-0.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cast-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jorge Aparicio " + ], + "categories": [], + "keywords": [ + "checked", + "cast", + "primitive", + "integer", + "float" + ], + "readme": "README.md", + "repository": "https://github.com/japaric/cast.rs", + "homepage": null, + "documentation": "https://docs.rs/cast", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "castaway", + "version": "0.2.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", + "license": "MIT", + "license_file": null, + "description": "Safe, zero-cost downcasting for limited compile-time specialization.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "castaway", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/castaway-0.2.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/castaway-0.2.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Stephen M. Coakley " + ], + "categories": [ + "no-std", + "rust-patterns" + ], + "keywords": [ + "specialization", + "specialize", + "cast" + ], + "readme": "README.md", + "repository": "https://github.com/sagebind/castaway", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cc", + "version": "1.0.95", + "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "license": "MIT OR Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "jobserver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.30", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.62", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.0.95/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "jobserver": [ + "dep:jobserver" + ], + "libc": [ + "dep:libc" + ], + "once_cell": [ + "dep:once_cell" + ], + "parallel": [ + "libc", + "jobserver", + "once_cell" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.0.95/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "development-tools::build-utils" + ], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cc-rs", + "homepage": "https://github.com/rust-lang/cc-rs", + "documentation": "https://docs.rs/cc", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "cfg-if", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cfg_if", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "xcrate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/tests/xcrate.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/cfg-if", + "homepage": "https://github.com/alexcrichton/cfg-if", + "documentation": "https://docs.rs/cfg-if", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cfg_aliases", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", + "license": "MIT", + "license_file": null, + "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cfg_aliases", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Zicklag " + ], + "categories": [ + "development-tools", + "development-tools::build-utils" + ], + "keywords": [ + "cfg", + "alias", + "conditional", + "compilation", + "build" + ], + "readme": "README.md", + "repository": "https://github.com/katharostech/cfg_aliases", + "homepage": "https://github.com/katharostech/cfg_aliases", + "documentation": "https://docs.rs/cfg_aliases", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cfg_aliases", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "license": "MIT", + "license_file": null, + "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cfg_aliases", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Zicklag " + ], + "categories": [ + "development-tools", + "development-tools::build-utils" + ], + "keywords": [ + "cfg", + "alias", + "conditional", + "compilation", + "build" + ], + "readme": "README.md", + "repository": "https://github.com/katharostech/cfg_aliases", + "homepage": "https://github.com/katharostech/cfg_aliases", + "documentation": "https://docs.rs/cfg_aliases", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "chic", + "version": "1.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pretty parser error reporting.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "chic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cursor", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/examples/cursor.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/examples/error.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Yoshua Wuyts " + ], + "categories": [ + "parser-implementations" + ], + "keywords": [ + "pretty", + "error", + "reporting", + "stream" + ], + "readme": "README.md", + "repository": "https://github.com/yoshuawuyts/chic", + "homepage": null, + "documentation": "https://docs.rs/chic", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "chrono", + "version": "0.4.38", + "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Date and time library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pure-rust-locales", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.43", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.99", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "android-tzdata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"android\")", + "registry": null + }, + { + "name": "iana-time-zone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "fallback" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.56", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "chrono", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dateutils", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/tests/dateutils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/tests/wasm.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "win_bindings", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/tests/win_bindings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_bench": [], + "alloc": [], + "android-tzdata": [ + "dep:android-tzdata" + ], + "arbitrary": [ + "dep:arbitrary" + ], + "clock": [ + "winapi", + "iana-time-zone", + "android-tzdata", + "now" + ], + "default": [ + "clock", + "std", + "oldtime", + "wasmbind" + ], + "iana-time-zone": [ + "dep:iana-time-zone" + ], + "js-sys": [ + "dep:js-sys" + ], + "libc": [], + "now": [ + "std" + ], + "oldtime": [], + "pure-rust-locales": [ + "dep:pure-rust-locales" + ], + "rkyv": [ + "dep:rkyv", + "rkyv/size_32" + ], + "rkyv-16": [ + "dep:rkyv", + "rkyv?/size_16" + ], + "rkyv-32": [ + "dep:rkyv", + "rkyv?/size_32" + ], + "rkyv-64": [ + "dep:rkyv", + "rkyv?/size_64" + ], + "rkyv-validation": [ + "rkyv?/validation" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "unstable-locales": [ + "pure-rust-locales" + ], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ], + "wasmbind": [ + "wasm-bindgen", + "js-sys" + ], + "winapi": [ + "windows-targets" + ], + "windows-targets": [ + "dep:windows-targets" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "rkyv", + "serde", + "unstable-locales" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "date-and-time" + ], + "keywords": [ + "date", + "time", + "calendar" + ], + "readme": "README.md", + "repository": "https://github.com/chronotope/chrono", + "homepage": "https://github.com/chronotope/chrono", + "documentation": "https://docs.rs/chrono/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61.0" + }, + { + "name": "ciborium", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", + "license": "Apache-2.0", + "license_file": null, + "description": "serde implementation of CBOR using ciborium-basic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ciborium-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "ciborium-ll", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.100", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rstest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ciborium", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "canonical", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/canonical.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "codec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/codec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fuzz", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/fuzz.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/macro.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/no_std.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "recursion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/recursion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tag", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/tag.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "ciborium-io/std", + "serde/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nathaniel McCallum " + ], + "categories": [ + "data-structures", + "embedded", + "encoding", + "no-std", + "parsing" + ], + "keywords": [ + "cbor", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/enarx/ciborium", + "homepage": "https://github.com/enarx/ciborium", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.58" + }, + { + "name": "ciborium-io", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", + "license": "Apache-2.0", + "license_file": null, + "description": "Simplified Read/Write traits for no_std usage", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ciborium_io", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-io-0.2.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-io-0.2.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nathaniel McCallum " + ], + "categories": [ + "data-structures", + "embedded", + "no-std" + ], + "keywords": [ + "io", + "read", + "write" + ], + "readme": "README.md", + "repository": "https://github.com/enarx/ciborium", + "homepage": "https://github.com/enarx/ciborium", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.58" + }, + { + "name": "ciborium-ll", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", + "license": "Apache-2.0", + "license_file": null, + "description": "Low-level CBOR codec primitives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ciborium-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "half", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ciborium_ll", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-ll-0.2.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "std": [ + "alloc", + "half/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-ll-0.2.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Nathaniel McCallum " + ], + "categories": [ + "data-structures", + "embedded", + "encoding", + "no-std", + "parsing" + ], + "keywords": [ + "cbor" + ], + "readme": "README.md", + "repository": "https://github.com/enarx/ciborium", + "homepage": "https://github.com/enarx/ciborium", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.58" + }, + { + "name": "clap", + "version": "4.5.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap_builder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.5.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=4.5.18", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap-cargo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "humantime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.91", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trycmd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "color-auto", + "diff", + "examples" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "stdio-fixture", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/src/bin/stdio-fixture.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "01_quick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/01_quick.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "01_quick_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/01_quick.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_app_settings", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/02_app_settings.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_app_settings_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/02_app_settings.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_apps", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/02_apps.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_apps_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/02_apps.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_crate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/02_crate.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "02_crate_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/02_crate.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_bool", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_01_flag_bool.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_bool_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_01_flag_bool.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_count", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_01_flag_count.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_01_flag_count_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_01_flag_count.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_02_option.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_02_option.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_mult", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_02_option_mult.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_02_option_mult_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_02_option_mult.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_03_positional.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_03_positional.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_mult", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_03_positional_mult.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_03_positional_mult_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_03_positional_mult.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_04_subcommands.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands_alt_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_04_subcommands_alt.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_04_subcommands_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_04_subcommands.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_05_default_values", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_05_default_values.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "03_05_default_values_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_05_default_values.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_enum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_01_enum.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_enum_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_01_enum.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_01_possible", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_01_possible.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_02_parse.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_parse_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_02_parse.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_validate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_02_validate.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_02_validate_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_02_validate.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_03_relations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_03_relations.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_03_relations_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_03_relations.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_04_custom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_04_custom.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "04_04_custom_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_04_custom.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "05_01_assert", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/05_01_assert.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "05_01_assert_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/05_01_assert.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "busybox", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/multicall-busybox.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo-example", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/cargo-example.rs", + "edition": "2021", + "required-features": [ + "cargo", + "color" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo-example-derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/cargo-example-derive.rs", + "edition": "2021", + "required-features": [ + "derive", + "color" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "demo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/demo.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "escaped-positional", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/escaped-positional.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "escaped-positional-derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/escaped-positional-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "find", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/find.rs", + "edition": "2021", + "required-features": [ + "cargo" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "git", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/git.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "git-derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/git-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hostname", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/multicall-hostname.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_augment_args", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/augment_args.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_augment_subcommands", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/augment_subcommands.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_flatten_hand_args", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/flatten_hand_args.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "interop_hand_subcommand", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/hand_subcommand.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pacman", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/pacman.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "repl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/repl.rs", + "edition": "2021", + "required-features": [ + "help" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "repl-derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/repl-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "typed-derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/typed-derive.rs", + "edition": "2021", + "required-features": [ + "derive" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "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" + ], + "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-derive-ui-tests": [], + "unstable-doc": [ + "clap_builder/unstable-doc", + "derive" + ], + "unstable-ext": [ + "clap_builder/unstable-ext" + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "unstable-doc" + ] + }, + "release": { + "shared-version": true, + "tag-name": "v{{version}}", + "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: .+\\..+\\..+" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_builder", + "version": "4.5.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.73", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_lex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strsim", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicase", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "color-print", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unic-emoji-char", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_builder", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_builder-4.5.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "cargo": [], + "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-ext" + ], + "unstable-ext": [], + "unstable-styles": [ + "color" + ], + "unstable-v5": [ + "deprecated" + ], + "usage": [], + "wrap_help": [ + "help", + "dep:terminal_size" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_builder-4.5.21/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}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_complete", + "version": "4.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generate shell completion scripts for your clap::Command", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "clap_lex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is_executable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pathdiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shlex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-xid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "derive", + "help" + ], + "target": null, + "registry": null + }, + { + "name": "completest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "completest-pty", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff", + "path", + "examples" + ], + "target": null, + "registry": null + }, + { + "name": "trycmd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "color-auto", + "diff", + "examples" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_complete", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "completion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/completion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "completion-derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/completion-derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dynamic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/dynamic.rs", + "edition": "2021", + "required-features": [ + "unstable-dynamic" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/exhaustive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "debug": [ + "clap/debug" + ], + "default": [], + "unstable-doc": [ + "unstable-dynamic" + ], + "unstable-dynamic": [ + "dep:clap_lex", + "dep:shlex", + "dep:unicode-xid", + "clap/derive", + "dep:is_executable", + "dep:pathdiff" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zunstable-options", + "-Zrustdoc-scrape-examples" + ], + "features": [ + "unstable-doc" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + }, + "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/[^/]+/" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "clap", + "cli", + "completion", + "bash" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap/tree/master/clap_complete", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_complete_command", + "version": "0.6.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", + "license": "MIT", + "license_file": null, + "description": "Reduces boilerplate for adding a shell completion command to Clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "carapace_spec_clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_complete", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_complete_fig", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap_complete_nushell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_complete_command", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "builder", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/examples/builder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/examples/derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "carapace": [ + "dep:carapace_spec_clap" + ], + "default": [ + "nushell" + ], + "fig": [ + "dep:clap_complete_fig" + ], + "nushell": [ + "dep:clap_complete_nushell" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "clap", + "cli", + "completion" + ], + "readme": "README.md", + "repository": "https://github.com/nihaals/clap-complete-command", + "homepage": null, + "documentation": "https://docs.rs/clap_complete_command", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "clap_complete_nushell", + "version": "4.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A generator library used with clap for Nushell completion scripts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "clap_complete", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "help" + ], + "target": null, + "registry": null + }, + { + "name": "completest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "completest-nu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff", + "examples", + "dir" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_complete_nushell", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nushell_completion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/examples/nushell_completion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sub_subcommands", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/examples/sub_subcommands.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/examples/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "clap", + "cli", + "completion", + "nushell" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_derive", + "version": "4.5.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parse command line argument by defining a struct, derive crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "heck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "clap_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_derive-4.5.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "debug": [], + "default": [], + "deprecated": [], + "raw-deprecated": [ + "deprecated" + ], + "unstable-v5": [ + "deprecated" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_derive-4.5.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "release": { + "dependent-version": "upgrade", + "shared-version": true, + "tag-name": "v{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface", + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "clap", + "cli", + "parse", + "derive", + "proc_macro" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clap_lex", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Minimal, flexible command line parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clap_lex", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_lex-0.7.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_lex-0.7.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/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/[^/]+/" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "argument", + "cli", + "arg", + "parser", + "parse" + ], + "readme": "README.md", + "repository": "https://github.com/clap-rs/clap/tree/master/clap_lex", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "clearscreen", + "version": "3.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Cross-platform terminal screen clearing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "terminfo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.38", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "which", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.28.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fs", + "term" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "consoleapi", + "errhandlingapi", + "handleapi", + "impl-default", + "lmapibuf", + "lmserver", + "lmwksta", + "processenv", + "winbase", + "wincon" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "clearscreen", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "clscli", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/examples/clscli.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/tests/default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "platformed", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/tests/platformed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "windows-console": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Félix Saparelli " + ], + "categories": [], + "keywords": [ + "clear", + "cls", + "cli", + "terminal" + ], + "readme": "README.md", + "repository": "https://github.com/watchexec/clearscreen", + "homepage": "https://github.com/watchexec/clearscreen", + "documentation": "https://github.com/watchexec/clearscreen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.72.0" + }, + { + "name": "colorchoice", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Global override of color control", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colorchoice", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colorchoice-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "color", + "no-std", + "terminal", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/anstyle", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64.0" + }, + { + "name": "colored", + "version": "2.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "license": "MPL-2.0", + "license_file": null, + "description": "The most simple way to add colors in your terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ansi_term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rspec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.0-beta.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "colored", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "as_error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/as_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "control", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/control.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/custom_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dynamic_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/dynamic_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "most_simple", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/most_simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nested_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/nested_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ansi_term_compat", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/tests/ansi_term_compat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "no-color": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Thomas Wickham " + ], + "categories": [], + "keywords": [ + "color", + "string", + "term", + "ansi_term", + "term-painter" + ], + "readme": "README.md", + "repository": "https://github.com/mackwic/colored", + "homepage": "https://github.com/mackwic/colored", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "compact_str", + "version": "0.8.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "license": "MIT", + "license_file": null, + "description": "A memory efficient string type that transparently stores strings on the stack, when possible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "castaway", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "diesel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "markup", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "size_32" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ryu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "union" + ], + "target": null, + "registry": null + }, + { + "name": "sqlx", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "size_32" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-strategy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "compact_str", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/compact_str-0.8.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "borsh": [ + "dep:borsh" + ], + "bytes": [ + "dep:bytes" + ], + "default": [ + "std" + ], + "diesel": [ + "dep:diesel" + ], + "markup": [ + "dep:markup" + ], + "proptest": [ + "dep:proptest" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rkyv": [ + "dep:rkyv" + ], + "serde": [ + "dep:serde" + ], + "smallvec": [ + "dep:smallvec" + ], + "sqlx": [ + "dep:sqlx", + "std" + ], + "sqlx-mysql": [ + "sqlx", + "sqlx/mysql" + ], + "sqlx-postgres": [ + "sqlx", + "sqlx/postgres" + ], + "sqlx-sqlite": [ + "sqlx", + "sqlx/sqlite" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/compact_str-0.8.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Parker Timmerman " + ], + "categories": [ + "encoding", + "parsing", + "memory-management", + "text-processing" + ], + "keywords": [ + "string", + "compact", + "small", + "memory", + "mutable" + ], + "readme": "README.md", + "repository": "https://github.com/ParkMyCar/compact_str", + "homepage": "https://github.com/ParkMyCar/compact_str", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "console", + "version": "0.15.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", + "license": "MIT", + "license_file": null, + "description": "A terminal and console abstraction for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.99", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "bit-set", + "break-dead-code" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "encode_unicode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console", + "Win32_Storage_FileSystem", + "Win32_UI_Input_KeyboardAndMouse" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/colors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "colors256", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/colors256.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cursor_at", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/cursor_at.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "keyboard", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/keyboard.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "term", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/term.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ansi_parser", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/benches/ansi_parser.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ansi-parsing": [], + "default": [ + "unicode-width", + "ansi-parsing" + ], + "unicode-width": [ + "dep:unicode-width" + ], + "windows-console-colors": [ + "ansi-parsing" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Armin Ronacher " + ], + "categories": [], + "keywords": [ + "cli", + "terminal", + "colors", + "console", + "ansi" + ], + "readme": "README.md", + "repository": "https://github.com/console-rs/console", + "homepage": "https://github.com/console-rs/console", + "documentation": "https://docs.rs/console", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "console_error_panic_hook", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console_error_panic_hook", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_error_panic_hook-0.1.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_error_panic_hook-0.1.7/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_error_panic_hook-0.1.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nick Fitzgerald " + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "./README.md", + "repository": "https://github.com/rustwasm/console_error_panic_hook", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "console_log", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A logging facility that routes Rust log messages to the browser's console.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "console" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "console_log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_log-1.0.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "color": [ + "wasm-bindgen" + ], + "default": [], + "wasm-bindgen": [ + "dep:wasm-bindgen" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_log-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Matthew Nicholson " + ], + "categories": [ + "wasm" + ], + "keywords": [ + "log", + "logging", + "console", + "web_sys", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/iamcodemaker/console_log", + "homepage": null, + "documentation": "https://docs.rs/console_log", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "core-foundation-sys", + "version": "0.8.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings to Core Foundation for macOS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "core_foundation_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/core-foundation-sys-0.8.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "link" + ], + "link": [], + "mac_os_10_7_support": [], + "mac_os_10_8_features": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/core-foundation-sys-0.8.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-apple-darwin" + } + } + }, + "publish": null, + "authors": [ + "The Servo Project Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/core-foundation-rs", + "homepage": "https://github.com/servo/core-foundation-rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "countme", + "version": "3.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Counts the number of live instances of types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "dashmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "countme", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/examples/bench.rs", + "edition": "2018", + "required-features": [ + "enable" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench_single_thread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/examples/bench_single_thread.rs", + "edition": "2018", + "required-features": [ + "enable" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "print_at_exit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/examples/print_at_exit.rs", + "edition": "2018", + "required-features": [ + "print_at_exit" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "dashmap": [ + "dep:dashmap" + ], + "enable": [ + "dashmap", + "once_cell", + "rustc-hash" + ], + "once_cell": [ + "dep:once_cell" + ], + "print_at_exit": [ + "enable" + ], + "rustc-hash": [ + "dep:rustc-hash" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Aleksey Kladov " + ], + "categories": [ + "development-tools::profiling" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/matklad/countme", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "cpufeatures", + "version": "0.2.13", + "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, \nwith no_std support and support for mobile targets including Android and iOS\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "aarch64-linux-android", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "cpufeatures", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aarch64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/tests/aarch64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "loongarch64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/tests/loongarch64.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "x86", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/tests/x86.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "hardware-support", + "no-std" + ], + "keywords": [ + "cpuid", + "target-feature" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils", + "homepage": null, + "documentation": "https://docs.rs/cpufeatures", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crc32fast", + "version": "1.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crc32fast", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/benches/bench.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sam Rijs ", + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "checksum", + "crc", + "crc32", + "simd", + "fast" + ], + "readme": "README.md", + "repository": "https://github.com/srijs/rust-crc32fast", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "criterion", + "version": "0.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Statistics-driven micro-benchmarking library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "async-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ciborium", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "criterion-plot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "csv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "oorandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^11.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "plotters", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "svg_backend", + "area_series", + "line_series" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinytemplate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "rt" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "approx", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "executor" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "criterion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "criterion_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/tests/criterion_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench_main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/benches/bench_main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "async": [ + "futures" + ], + "async-std": [ + "dep:async-std" + ], + "async_futures": [ + "futures/executor", + "async" + ], + "async_smol": [ + "smol", + "async" + ], + "async_std": [ + "async-std", + "async" + ], + "async_tokio": [ + "tokio", + "async" + ], + "cargo_bench_support": [], + "csv": [ + "dep:csv" + ], + "csv_output": [ + "csv" + ], + "default": [ + "rayon", + "plotters", + "cargo_bench_support" + ], + "futures": [ + "dep:futures" + ], + "html_reports": [], + "plotters": [ + "dep:plotters" + ], + "rayon": [ + "dep:rayon" + ], + "real_blackbox": [], + "smol": [ + "dep:smol" + ], + "stable": [ + "csv_output", + "html_reports", + "async_futures", + "async_smol", + "async_tokio", + "async_std" + ], + "tokio": [ + "dep:tokio" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "async_futures", + "async_smol", + "async_std", + "async_tokio" + ] + } + } + }, + "publish": null, + "authors": [ + "Jorge Aparicio ", + "Brook Heisler " + ], + "categories": [ + "development-tools::profiling" + ], + "keywords": [ + "criterion", + "benchmark" + ], + "readme": "README.md", + "repository": "https://github.com/bheisler/criterion.rs", + "homepage": "https://bheisler.github.io/criterion.rs/book/index.html", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "criterion-plot", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Criterion's plotting library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools-num", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-complex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "criterion_plot", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-plot-0.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-plot-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jorge Aparicio ", + "Brook Heisler " + ], + "categories": [ + "visualization" + ], + "keywords": [ + "plotting", + "gnuplot", + "criterion" + ], + "readme": "README.md", + "repository": "https://github.com/bheisler/criterion.rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crossbeam", + "version": "0.8.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Tools for concurrent programming", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-epoch", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-queue", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-0.8.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "subcrates", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-0.8.4/tests/subcrates.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "crossbeam-epoch/alloc", + "crossbeam-queue/alloc" + ], + "crossbeam-channel": [ + "dep:crossbeam-channel" + ], + "crossbeam-deque": [ + "dep:crossbeam-deque" + ], + "crossbeam-epoch": [ + "dep:crossbeam-epoch" + ], + "crossbeam-queue": [ + "dep:crossbeam-queue" + ], + "default": [ + "std" + ], + "nightly": [ + "crossbeam-epoch/nightly", + "crossbeam-utils/nightly", + "crossbeam-queue/nightly" + ], + "std": [ + "alloc", + "crossbeam-channel/std", + "crossbeam-deque/std", + "crossbeam-epoch/std", + "crossbeam-queue/std", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-0.8.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "memory-management", + "data-structures", + "no-std" + ], + "keywords": [ + "atomic", + "garbage", + "non-blocking", + "lock-free", + "rcu" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-channel", + "version": "0.5.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Multi-producer multi-consumer channels for message passing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "signal-hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_channel", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fibonacci", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/examples/fibonacci.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "matching", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/examples/matching.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stopwatch", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/examples/stopwatch.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "after", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/after.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "array", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/array.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "golang", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/golang.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "list", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mpsc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/mpsc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "never", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/never.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ready", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/ready.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "same_channel", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/same_channel.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "select", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/select.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "select_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/select_macro.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "thread_locals", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/thread_locals.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/tick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zero", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/zero.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "crossbeam", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/benches/crossbeam.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures" + ], + "keywords": [ + "channel", + "mpmc", + "select", + "golang", + "message" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crossbeam-deque", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Concurrent work-stealing deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-epoch", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_deque", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fifo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/fifo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "injector", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/injector.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lifo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/lifo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "steal", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/steal.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "crossbeam-epoch/std", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures" + ], + "keywords": [ + "chase-lev", + "lock-free", + "scheduler", + "scheduling" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-epoch", + "version": "0.9.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Epoch-based garbage collection", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": "loom-crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(crossbeam_loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_epoch", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "sanitize", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/examples/sanitize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "loom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/tests/loom.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "defer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/benches/defer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "flush", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/benches/flush.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "pin", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/benches/pin.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "loom": [ + "loom-crate", + "crossbeam-utils/loom" + ], + "loom-crate": [ + "dep:loom-crate" + ], + "nightly": [ + "crossbeam-utils/nightly" + ], + "std": [ + "alloc", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "memory-management", + "no-std" + ], + "keywords": [ + "lock-free", + "rcu", + "atomic", + "garbage" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "crossbeam-queue", + "version": "0.3.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Concurrent queues", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_queue", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "array_queue", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/tests/array_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "seg_queue", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/tests/seg_queue.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "nightly": [ + "crossbeam-utils/nightly" + ], + "std": [ + "alloc", + "crossbeam-utils/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "data-structures", + "no-std" + ], + "keywords": [ + "queue", + "mpmc", + "lock-free", + "producer", + "consumer" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crossbeam-utils", + "version": "0.8.19", + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Utilities for concurrent programming", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(crossbeam_loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crossbeam_utils", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "atomic_cell", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/atomic_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cache_padded", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/cache_padded.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parker", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/parker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sharded_lock", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/sharded_lock.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "thread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/thread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wait_group", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/wait_group.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "atomic_cell", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/benches/atomic_cell.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "loom": [ + "dep:loom" + ], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "algorithms", + "concurrency", + "data-structures", + "no-std" + ], + "keywords": [ + "scoped", + "thread", + "atomic", + "cache" + ], + "readme": "README.md", + "repository": "https://github.com/crossbeam-rs/crossbeam", + "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "crunchy", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2", + "license": "MIT", + "license_file": null, + "description": "Crunchy unroller: deterministically unroll constant loops", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crunchy", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "limit_128" + ], + "limit_1024": [], + "limit_128": [], + "limit_2048": [], + "limit_256": [], + "limit_512": [], + "limit_64": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Vurich " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "crypto-common", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Common cryptographic traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "generic-array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "more_lengths" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "crypto_common", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crypto-common-0.1.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "getrandom": [ + "rand_core/getrandom" + ], + "rand_core": [ + "dep:rand_core" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crypto-common-0.1.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "traits" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/crypto-common", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ctrlc", + "version": "3.4.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Easy Ctrl-C handler for Rust projects", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "signal-hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.29", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fs", + "signal" + ], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Threading", + "Win32_Security", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Storage_FileSystem", + "Win32_Foundation", + "Win32_System_IO", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ctrlc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "issue_46_example", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/examples/issue_46_example.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme_example", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/examples/readme_example.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_97", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/tests/main/issue_97.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/tests/main/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "termination": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Antti Keränen " + ], + "categories": [ + "os" + ], + "keywords": [ + "ctrlc", + "signal", + "SIGINT" + ], + "readme": "README.md", + "repository": "https://github.com/Detegr/rust-ctrlc.git", + "homepage": "https://github.com/Detegr/rust-ctrlc", + "documentation": "https://detegr.github.io/doc/ctrlc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.69.0" + }, + { + "name": "darling", + "version": "0.20.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", + "license": "MIT", + "license_file": null, + "description": "A proc-macro library for reading attributes into structs when\nimplementing custom derives.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "darling_macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.37", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(compiletests)", + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.38", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(compiletests)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "darling", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "automatic_bounds", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/automatic_bounds.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "consume_fields", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/consume_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "expr_with", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/expr_with.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fallible_read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/fallible_read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "heterogeneous_enum_and_word", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/heterogeneous_enum_and_word.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "shorthand_or_long_field", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/shorthand_or_long_field.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "supports_struct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/supports_struct.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accrue_errors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/accrue_errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "attrs_with", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/attrs_with.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/compiletests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "computed_bound", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/computed_bound.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_bound", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/custom_bound.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "defaults", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/defaults.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_default.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_newtype", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_newtype.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_struct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_struct.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enums_unit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/error.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/flatten.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_error_accumulation", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/flatten_error_accumulation.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_from_field", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/flatten_from_field.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_generics", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_generics.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_meta", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_meta.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_type_param", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_type_param.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_type_param_default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_type_param_default.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_variant", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_variant.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generics", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/generics.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "happy_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/happy_path.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/hash_map.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/multiple.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "newtype", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/newtype.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/skip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "split_declaration", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/split_declaration.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "suggestions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/suggestions.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "supports", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/supports.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unsupported_attributes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/unsupported_attributes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "suggestions" + ], + "diagnostics": [ + "darling_core/diagnostics" + ], + "suggestions": [ + "darling_core/suggestions" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": "https://docs.rs/darling/0.20.8", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "darling_core", + "version": "0.20.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", + "license": "MIT", + "license_file": null, + "description": "Helper crate for proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ident_case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strsim", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "darling_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_core-0.20.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "diagnostics": [], + "strsim": [ + "dep:strsim" + ], + "suggestions": [ + "strsim" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_core-0.20.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "darling_macro", + "version": "0.20.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8", + "license": "MIT", + "license_file": null, + "description": "Internal support for a proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.20.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "darling_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_macro-0.20.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_macro-0.20.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/TedDriggs/darling", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dashmap", + "version": "5.5.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", + "license": "MIT", + "license_file": null, + "description": "Blazing fast concurrent HashMap for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dashmap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-5.5.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "inline": [ + "hashbrown/inline-more" + ], + "raw-api": [], + "rayon": [ + "dep:rayon" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-5.5.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "rayon", + "raw-api", + "serde" + ] + } + } + }, + "publish": null, + "authors": [ + "Acrimon " + ], + "categories": [ + "concurrency", + "algorithms", + "data-structures" + ], + "keywords": [ + "atomic", + "concurrent", + "hashmap" + ], + "readme": "README.md", + "repository": "https://github.com/xacrimon/dashmap", + "homepage": "https://github.com/xacrimon/dashmap", + "documentation": "https://docs.rs/dashmap", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "dashmap", + "version": "6.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "license": "MIT", + "license_file": null, + "description": "Blazing fast concurrent HashMap for Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw" + ], + "target": null, + "registry": null + }, + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.18.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "typesize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dashmap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-6.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "inline": [ + "hashbrown/inline-more" + ], + "raw-api": [], + "rayon": [ + "dep:rayon" + ], + "serde": [ + "dep:serde" + ], + "typesize": [ + "dep:typesize" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-6.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "rayon", + "raw-api", + "serde" + ] + } + } + }, + "publish": null, + "authors": [ + "Acrimon " + ], + "categories": [ + "concurrency", + "algorithms", + "data-structures" + ], + "keywords": [ + "atomic", + "concurrent", + "hashmap" + ], + "readme": "README.md", + "repository": "https://github.com/xacrimon/dashmap", + "homepage": "https://github.com/xacrimon/dashmap", + "documentation": "https://docs.rs/dashmap", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "diff", + "version": "0.1.13", + "id": "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An LCS based slice and string diffing implementation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "speculate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "diff", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/examples/simple.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/benches/benches.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Utkarsh Kukreti " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/utkarshkukreti/diff.rs", + "homepage": "https://github.com/utkarshkukreti/diff.rs", + "documentation": "https://docs.rs/diff", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "difflib", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", + "license": "MIT", + "license_file": null, + "description": "Port of Python's difflib library to Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "difflib", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "example", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/examples/example.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dima Kudosh " + ], + "categories": [], + "keywords": [ + "difflib", + "text", + "diff" + ], + "readme": null, + "repository": "https://github.com/DimaKudosh/difflib", + "homepage": "https://github.com/DimaKudosh/difflib", + "documentation": "https://github.com/DimaKudosh/difflib/wiki", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "digest", + "version": "0.10.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Traits for cryptographic hash functions and message authentication codes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "blobby", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "block-buffer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "const-oid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crypto-common", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "digest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/digest-0.10.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/digest-0.10.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "digest", + "crypto", + "hash" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/traits", + "homepage": null, + "documentation": "https://docs.rs/digest", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dir-test", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", + "license": "Apache-2.0", + "license_file": null, + "description": "Provides a macro to generate tests from files in a directory", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "dir-test-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dir_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-0.3.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-0.3.0/tests/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Fe Project Developers" + ], + "categories": [ + "development-tools", + "filesystem" + ], + "keywords": [ + "test", + "dir", + "directory", + "macro" + ], + "readme": "README.md", + "repository": "https://github.com/fe-lang/dir-test", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dir-test-macros", + "version": "0.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0", + "license": "Apache-2.0", + "license_file": null, + "description": "Provides a procedural macro for `dir-test`", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "dir_test_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-macros-0.3.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-macros-0.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Fe Project Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/fe-lang/dir-test", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dirs", + "version": "4.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "dirs-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dirs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-4.0.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-4.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Simon Ochsenreither " + ], + "categories": [], + "keywords": [ + "xdg", + "basedir", + "app_dirs", + "path", + "folder" + ], + "readme": "README.md", + "repository": "https://github.com/soc/dirs-rs", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dirs", + "version": "5.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "dirs-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dirs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-5.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-5.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Simon Ochsenreither " + ], + "categories": [], + "keywords": [ + "xdg", + "basedir", + "app_dirs", + "path", + "folder" + ], + "readme": "README.md", + "repository": "https://github.com/soc/dirs-rs", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dirs-sys", + "version": "0.3.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "System-level helper functions for the dirs and directories crates.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "redox_users", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "knownfolders", + "objbase", + "shlobj", + "winbase", + "winerror" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dirs_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.3.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.3.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Simon Ochsenreither " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dirs-dev/dirs-sys-rs", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dirs-sys", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "System-level helper functions for the dirs and directories crates.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "option-ext", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "redox_users", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_UI_Shell", + "Win32_Foundation", + "Win32_Globalization", + "Win32_System_Com" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dirs_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.4.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Simon Ochsenreither " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dirs-dev/dirs-sys-rs", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "displaydoc", + "version": "0.2.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "displaydoc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/compile_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "happy", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/happy.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "num_in_field", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/num_in_field.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "variantless", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/variantless.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "no-dev-version": true, + "pre-release-hook": [ + "./update-readme.sh" + ], + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "{{version}}", + "search": "Unreleased" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "#![doc(html_root_url = \"https://docs.rs/{{crate_name}}/{{version}}\")]", + "search": "#!\\[doc\\(html_root_url.*" + }, + { + "file": "CHANGELOG.md", + "replace": "{{date}}", + "search": "ReleaseDate" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n\n# [Unreleased] - ReleaseDate", + "search": "" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "...{{tag_name}}", + "search": "\\.\\.\\.HEAD" + }, + { + "exactly": 1, + "file": "CHANGELOG.md", + "replace": "\n[Unreleased]: https://github.com/yaahc/{{crate_name}}/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Jane Lusby " + ], + "categories": [], + "keywords": [ + "display", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/yaahc/displaydoc", + "homepage": "https://github.com/yaahc/displaydoc", + "documentation": "https://docs.rs/displaydoc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "doc-comment", + "version": "0.3.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", + "license": "MIT", + "license_file": null, + "description": "Macro to generate doc comments", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "doc_comment", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no_core": [], + "old_macros": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Guillaume Gomez " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/GuillaumeGomez/doc-comment", + "homepage": null, + "documentation": "http://docs.rs/crate/doc-comment", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "drop_bomb", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A runtime guard for implementing linear types.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "drop_bomb", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/drop_bomb-0.1.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/drop_bomb-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Aleksey Kladov " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/matklad/drop_bomb", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dunce", + "version": "1.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", + "license": "CC0-1.0 OR MIT-0 OR Apache-2.0", + "license_file": null, + "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dunce", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dunce-1.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dunce-1.0.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Kornel " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "realpath", + "unc", + "canonicalize", + "windows", + "deunc" + ], + "readme": "README.md", + "repository": "https://gitlab.com/kornelski/dunce", + "homepage": "https://lib.rs/crates/dunce", + "documentation": "https://docs.rs/dunce", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "dyn-clone", + "version": "1.0.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Clone trait that is object-safe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "dyn_clone", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/examples/readme.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/tests/trait.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "dyn", + "clone", + "trait-object" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/dyn-clone", + "homepage": null, + "documentation": "https://docs.rs/dyn-clone", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.45" + }, + { + "name": "either", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "either", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "use_std" + ], + "serde": [ + "dep:serde" + ], + "use_std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + }, + "release": { + "no-dev-version": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "data-structure", + "no_std" + ], + "readme": "README-crates.io.md", + "repository": "https://github.com/rayon-rs/either", + "homepage": null, + "documentation": "https://docs.rs/either/1/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "encode_unicode", + "version": "0.3.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "UTF-8 and UTF-16 character types, iterators and related methods for char, u8 and u16.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ascii", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.8, <2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clippy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "0.*", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "1.0.*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "encode_unicode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "errs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/errs.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/exhaustive.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "iterators", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/iterators.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "oks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/oks.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "multiiterators", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/benches/multiiterators.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ascii": [ + "dep:ascii" + ], + "clippy": [ + "dep:clippy" + ], + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "ascii/std" + ] + } + } + }, + "publish": null, + "authors": [ + "Torbjørn Birch Moltu " + ], + "categories": [ + "encoding", + "no-std" + ], + "keywords": [ + "unicode", + "UTF-8", + "UTF-16" + ], + "readme": "README.md", + "repository": "https://github.com/tormol/encode_unicode", + "homepage": null, + "documentation": "https://docs.rs/encode_unicode/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "env_filter", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Filter log events using environment variables\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "perf" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "env_filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_filter-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "regex" + ], + "regex": [ + "dep:regex" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_filter-0.1.0/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/rust-cli/env_logger/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging", + "log", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/env_logger", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "env_logger", + "version": "0.11.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "wincon" + ], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_filter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "humantime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "env_logger", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_default_format", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/custom_default_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_format", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/custom_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "direct_logger", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/direct_logger.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filters_from_code", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/filters_from_code.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "in_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/in_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syslog_friendly_format", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/syslog_friendly_format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "init-twice-retains-filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/init-twice-retains-filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log-in-log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/log-in-log.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log_tls_dtors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/log_tls_dtors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regexp_filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/regexp_filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "auto-color": [ + "color", + "anstream/auto" + ], + "color": [ + "dep:anstream", + "dep:anstyle" + ], + "default": [ + "auto-color", + "humantime", + "regex" + ], + "humantime": [ + "dep:humantime" + ], + "regex": [ + "env_filter/regex" + ], + "unstable-kv": [ + "log/kv" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/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/rust-cli/env_logger/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging", + "log", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/env_logger", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.71" + }, + { + "name": "equivalent", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Traits for key comparison in maps.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "equivalent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/equivalent-1.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/equivalent-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/cuviper/equivalent", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.6" + }, + { + "name": "errno", + "version": "0.3.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Cross-platform interface to the `errno` variable.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Diagnostics_Debug" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "errno", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/errno-0.3.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "libc/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/errno-0.3.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Chris Wong " + ], + "categories": [ + "no-std", + "os" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/lambda-fairy/rust-errno", + "homepage": null, + "documentation": "https://docs.rs/errno", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "etcetera", + "version": "0.8.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An unopinionated library for obtaining configuration, data, cache, & other directories", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "home", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_UI_Shell" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "etcetera", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/etcetera-0.8.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/etcetera-0.8.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "config" + ], + "keywords": [ + "xdg", + "dirs", + "directories", + "basedir", + "path" + ], + "readme": "README.md", + "repository": "https://github.com/lunacookies/etcetera", + "homepage": "https://github.com/lunacookies/etcetera", + "documentation": "https://docs.rs/etcetera", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fastrand", + "version": "2.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A simple and fast random number generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wyhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fastrand", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "char", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/tests/char.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/tests/smoke.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "getrandom": [ + "dep:getrandom" + ], + "js": [ + "std", + "getrandom" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Stjepan Glavina " + ], + "categories": [ + "algorithms" + ], + "keywords": [ + "simple", + "fast", + "rand", + "random", + "wyrand" + ], + "readme": "README.md", + "repository": "https://github.com/smol-rs/fastrand", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "fern", + "version": "0.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", + "license": "MIT", + "license_file": null, + "description": "Simple, efficient logging", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "clock" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "humantime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.58", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "reopen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": "reopen03", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "reopen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1", + "kind": null, + "rename": "reopen1", + "optional": true, + "uses_default_features": true, + "features": [ + "signals" + ], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "syslog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": null, + "rename": "syslog3", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "syslog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": "syslog4", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "syslog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6", + "kind": null, + "rename": "syslog6", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(not(windows))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fern", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cmd-program", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/cmd-program.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "colored", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/colored.rs", + "edition": "2018", + "required-features": [ + "colored" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "date-based-file-log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/date-based-file-log.rs", + "edition": "2018", + "required-features": [ + "date-based" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "meta-logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/meta-logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pretty-colored", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/pretty-colored.rs", + "edition": "2018", + "required-features": [ + "colored" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syslog", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/syslog.rs", + "edition": "2018", + "required-features": [ + "syslog-6" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syslog3", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/syslog3.rs", + "edition": "2018", + "required-features": [ + "syslog-3" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syslog4", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/syslog4.rs", + "edition": "2018", + "required-features": [ + "syslog-4" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "channel_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/channel_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enabled_is_deep_check", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/enabled_is_deep_check.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "file_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/file_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "global_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/global_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "meta_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/meta_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "panic_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/panic_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reopen_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/reopen_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "support", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/support.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "write_logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/write_logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "chrono": [ + "dep:chrono" + ], + "colored": [ + "dep:colored" + ], + "date-based": [ + "chrono" + ], + "libc": [ + "dep:libc" + ], + "meta-logging-in-format": [], + "reopen-03": [ + "reopen03", + "libc" + ], + "reopen-1": [ + "reopen1", + "libc" + ], + "reopen03": [ + "dep:reopen03" + ], + "reopen1": [ + "dep:reopen1" + ], + "syslog-3": [ + "syslog3" + ], + "syslog-4": [ + "syslog4" + ], + "syslog-6": [ + "syslog6" + ], + "syslog3": [ + "dep:syslog3" + ], + "syslog4": [ + "dep:syslog4" + ], + "syslog6": [ + "dep:syslog6" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "David Ross " + ], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "log", + "logging", + "logger" + ], + "readme": "README.md", + "repository": "https://github.com/daboross/fern", + "homepage": null, + "documentation": "https://docs.rs/fern/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "filetime", + "version": "0.2.25", + "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Platform-agnostic accessors of timestamps in File metadata\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libredox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.27", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Storage_FileSystem" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "filetime", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/filetime-0.2.25/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/filetime-0.2.25/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "timestamp", + "mtime" + ], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/filetime", + "homepage": "https://github.com/alexcrichton/filetime", + "documentation": "https://docs.rs/filetime", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "flate2", + "version": "1.0.28", + "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", + "license": "MIT OR Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cloudflare-zlib-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libz-ng-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libz-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "with-alloc" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "miniz_oxide", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "with-alloc" + ], + "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "flate2", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "compress_file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/compress_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decompress_file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/decompress_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflatedecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflatedecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflatedecoder-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflatedecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflateencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflateencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deflateencoder-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflateencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzbuilder", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzbuilder.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzdecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzdecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzdecoder-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzdecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzencoder-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzmultidecoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzmultidecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gzmultidecoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzmultidecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibdecoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibdecoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibdecoder-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibdecoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-bufread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibencoder-bufread.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibencoder-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zlibencoder-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibencoder-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "early-flush", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/early-flush.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "empty-read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/empty-read.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gunzip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/gunzip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zero-write", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/zero-write.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "any_impl": [], + "any_zlib": [ + "any_impl" + ], + "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", + "any_impl" + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Josh Triplett " + ], + "categories": [ + "compression", + "api-bindings" + ], + "keywords": [ + "gzip", + "deflate", + "zlib", + "zlib-ng", + "encoding" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/flate2-rs", + "homepage": "https://github.com/rust-lang/flate2-rs", + "documentation": "https://docs.rs/flate2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fnv", + "version": "1.0.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "license": "Apache-2.0 / MIT", + "license_file": null, + "description": "Fowler–Noll–Vo hash function", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fnv", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fnv-1.0.7/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fnv-1.0.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/servo/rust-fnv", + "homepage": null, + "documentation": "https://doc.servo.org/fnv/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "form_urlencoded", + "version": "1.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "form_urlencoded", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/form_urlencoded-1.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + } + ], + "features": { + "alloc": [ + "percent-encoding/alloc" + ], + "default": [ + "std" + ], + "std": [ + "alloc", + "percent-encoding/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/form_urlencoded-1.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no_std" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/rust-url", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "fs-err", + "version": "2.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A drop-in replacement for std::fs with more helpful error messages.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "fs" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.64", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fs_err", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fs-err-2.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fs-err-2.11.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "io_safety": [], + "tokio": [ + "dep:tokio" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fs-err-2.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "sign-tag": true, + "tag-name": "{{version}}", + "pre-release-replacements": [ + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "html_root_url = \"https://docs.rs/fs-err/{{version}}\"", + "search": "html_root_url = \"https://docs\\.rs/fs-err/.*?\"" + } + ] + } + }, + "publish": null, + "authors": [ + "Andrew Hickman " + ], + "categories": [ + "command-line-interface", + "filesystem" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/andrewhickman/fs-err", + "homepage": null, + "documentation": "https://docs.rs/fs-err", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "fsevent-sys", + "version": "4.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", + "license": "MIT", + "license_file": null, + "description": "Rust bindings to the fsevent macOS API for file changes notifications", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.68", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "fsevent_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fsevent-sys-4.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fsevent-sys-4.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-apple-darwin" + ] + } + } + }, + "publish": null, + "authors": [ + "Pierre Baillet " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "generic-array", + "version": "0.14.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "license": "MIT", + "license_file": null, + "description": "Generic types implementing functionality of arrays", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typenum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "generic_array", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generic-array-0.14.7/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generic-array-0.14.7/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "more_lengths": [], + "serde": [ + "dep:serde" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generic-array-0.14.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "zeroize" + ] + } + } + }, + "publish": null, + "authors": [ + "Bartłomiej Kamiński ", + "Aaron Trent " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "generic", + "array" + ], + "readme": "README.md", + "repository": "https://github.com/fizyk20/generic-array.git", + "homepage": null, + "documentation": "http://fizyk20.github.io/generic-array/generic_array/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "getopts", + "version": "0.2.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "getopts-like option parsing.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "std", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "getopts", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getopts-0.2.21/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getopts-0.2.21/tests/smoke.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "unicode-width/rustc-dep-of-std", + "std", + "core" + ], + "std": [ + "dep:std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getopts-0.2.21/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "command-line-interface" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/getopts", + "homepage": "https://github.com/rust-lang/getopts", + "documentation": "https://doc.rust-lang.org/getopts", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "getrandom", + "version": "0.2.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A small cross-platform library for retrieving random data from system source", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.62", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.149", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "getrandom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/tests/custom.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "normal", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/tests/normal.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rdrand", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/tests/rdrand.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "buffer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/benches/buffer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "custom": [], + "js": [ + "wasm-bindgen", + "js-sys" + ], + "js-sys": [ + "dep:js-sys" + ], + "linux_disable_fallback": [], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/Cargo.toml", + "metadata": { + "cross": { + "target": { + "x86_64-unknown-netbsd": { + "pre-build": [ + "mkdir -p /tmp/netbsd", + "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O", + "tar -C /tmp/netbsd -xJf base.tar.xz", + "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", + "rm base.tar.xz", + "rm -rf /tmp/netbsd" + ] + } + } + }, + "docs": { + "rs": { + "features": [ + "std", + "custom" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers" + ], + "categories": [ + "os", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-random/getrandom", + "homepage": null, + "documentation": "https://docs.rs/getrandom", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "glob", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Support for matching file paths against Unix shell style patterns.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "glob", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "glob-std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/tests/glob-std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "filesystem" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/glob", + "homepage": "https://github.com/rust-lang/glob", + "documentation": "https://docs.rs/glob/0.3.1", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "globset", + "version": "0.4.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "license": "Unlicense OR MIT", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "perf", + "syntax", + "meta", + "nfa", + "hybrid" + ], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.188", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.107", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "globset", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.15/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.15/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "log" + ], + "log": [ + "dep:log" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "simd-accel": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.15/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "regex", + "glob", + "multiple", + "set", + "pattern" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", + "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", + "documentation": "https://docs.rs/globset", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "globwalk", + "version": "0.9.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", + "license": "MIT", + "license_file": null, + "description": "Glob-matched recursive file system walking.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "docmatic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "globwalk", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "list", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/examples/list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "docs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/tests/docs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Gilad Naaman " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "regex", + "glob", + "pattern", + "walk", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/gilnaa/globwalk", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "half", + "version": "2.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.14", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "libm" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_distr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crunchy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crunchy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"spirv\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "half", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/half-2.4.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "convert", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/half-2.4.1/benches/convert.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "bytemuck": [ + "dep:bytemuck" + ], + "default": [ + "std" + ], + "num-traits": [ + "dep:num-traits" + ], + "rand_distr": [ + "dep:rand", + "dep:rand_distr" + ], + "rkyv": [ + "dep:rkyv" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "use-intrinsics": [], + "zerocopy": [ + "dep:zerocopy" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/half-2.4.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Kathryn Long " + ], + "categories": [ + "no-std", + "data-structures", + "encoding" + ], + "keywords": [ + "f16", + "bfloat16", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/starkat99/half-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "hashbrown", + "version": "0.14.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.42", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "allocator-api2" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "validation" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "raw", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/raw.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "alloc": [ + "dep:alloc" + ], + "allocator-api2": [ + "dep:allocator-api2" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "ahash", + "inline-more", + "allocator-api2" + ], + "equivalent": [ + "dep:equivalent" + ], + "inline-more": [], + "nightly": [ + "allocator-api2?/nightly", + "bumpalo/allocator_api" + ], + "raw": [], + "rayon": [ + "dep:rayon" + ], + "rkyv": [ + "dep:rkyv" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "hashbrown", + "version": "0.15.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Rust port of Google's SwissTable hash map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "allocator-api2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "foldhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "allocator-api2" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashbrown", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hasher", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/hasher.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rayon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/rayon.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/serde.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "set", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "insert_unique_unchecked", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/benches/insert_unique_unchecked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "set_ops", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/benches/set_ops.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "dep:alloc" + ], + "allocator-api2": [ + "dep:allocator-api2" + ], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "default-hasher", + "inline-more", + "allocator-api2", + "equivalent", + "raw-entry" + ], + "default-hasher": [ + "dep:foldhash" + ], + "equivalent": [ + "dep:equivalent" + ], + "inline-more": [], + "nightly": [ + "allocator-api2?/nightly", + "bumpalo/allocator_api" + ], + "raw-entry": [], + "rayon": [ + "dep:rayon" + ], + "rustc-dep-of-std": [ + "nightly", + "core", + "compiler_builtins", + "alloc", + "rustc-internal-api", + "raw-entry" + ], + "rustc-internal-api": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "nightly", + "rayon", + "serde", + "raw-entry" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hash", + "no_std", + "hashmap", + "swisstable" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/hashbrown", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "hashlink", + "version": "0.9.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "HashMap-like containers that hold their key-value pairs in a user controllable order", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "ahash", + "inline-more" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hashlink", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "linked_hash_map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/linked_hash_map.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "linked_hash_set", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/linked_hash_set.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lru_cache", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/lru_cache.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/serde.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ], + "serde_impl": [ + "serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kyren " + ], + "categories": [], + "keywords": [ + "data-structures", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/kyren/hashlink", + "homepage": null, + "documentation": "https://docs.rs/hashlink", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "heck", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "heck is a case conversion library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "heck", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/heck-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/heck-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "no-std" + ], + "keywords": [ + "string", + "case", + "camel", + "snake", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/withoutboats/heck", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "hermit-abi", + "version": "0.3.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Hermit system calls definitions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "hermit_abi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hermit-abi-0.3.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hermit-abi-0.3.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stefan Lankes" + ], + "categories": [ + "os" + ], + "keywords": [ + "unikernel", + "libos" + ], + "readme": "README.md", + "repository": "https://github.com/hermit-os/hermit-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "home", + "version": "0.5.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared definitions of home directories.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_UI_Shell", + "Win32_System_Com" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "home", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/home-0.5.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/home-0.5.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brian Anderson " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/cargo", + "homepage": null, + "documentation": "https://docs.rs/home", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70.0" + }, + { + "name": "humantime", + "version": "2.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "humantime", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "datetime_format", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/benches/datetime_format.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "datetime_parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/benches/datetime_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Paul Colomiets " + ], + "categories": [ + "date-and-time" + ], + "keywords": [ + "time", + "human", + "human-friendly", + "parser", + "duration" + ], + "readme": "README.md", + "repository": "https://github.com/tailhook/humantime", + "homepage": "https://github.com/tailhook/humantime", + "documentation": "https://docs.rs/humantime", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "iana-time-zone", + "version": "0.1.60", + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "get the IANA time zone for the current system", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "core-foundation-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.50", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "android_system_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"android\")", + "registry": null + }, + { + "name": "iana-time-zone-haiku", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"haiku\")", + "registry": null + }, + { + "name": "windows-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.50, <=0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "iana_time_zone", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_timezone", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/examples/get_timezone.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stress-test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/examples/stress-test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "fallback": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Straw ", + "René Kijewski ", + "Ryan Lopopolo " + ], + "categories": [ + "date-and-time", + "internationalization", + "os" + ], + "keywords": [ + "IANA", + "time" + ], + "readme": "README.md", + "repository": "https://github.com/strawlab/iana-time-zone", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "iana-time-zone-haiku", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "iana-time-zone support crate for Haiku OS", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "iana_time_zone_haiku", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-haiku-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-haiku-0.1.2/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-haiku-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "René Kijewski " + ], + "categories": [ + "date-and-time", + "internationalization", + "os" + ], + "keywords": [ + "IANA", + "time" + ], + "readme": "README.md", + "repository": "https://github.com/strawlab/iana-time-zone", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "icu_collections", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Collection of API for use in ICU libraries.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive", + "yoke" + ], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_collections", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "unicode_bmp_blocks_selector", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/examples/unicode_bmp_blocks_selector.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "char16trie", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/tests/char16trie.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cpt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/tests/cpt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "codepointtrie", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/benches/codepointtrie.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iai_cpt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/benches/iai_cpt.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "inv_list", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/benches/inv_list.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "databake": [ + "dep:databake", + "zerovec/databake" + ], + "serde": [ + "dep:serde", + "zerovec/serde" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for managing Unicode Language and Locale Identifiers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "litemap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "writeable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filter_langids", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/examples/filter_langids.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "syntatically_canonicalize_locales", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/examples/syntatically_canonicalize_locales.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "langid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/tests/langid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "locale", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/tests/locale.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iai_langid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/iai_langid.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "langid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/langid.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "locale", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/locale.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "subtags", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/subtags.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde" + ], + "databake": [ + "dep:databake" + ], + "serde": [ + "dep:serde", + "tinystr/serde" + ], + "std": [], + "zerovec": [ + "dep:zerovec" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid_transform", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for Unicode Language and Locale Identifiers canonicalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_locid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "icu_locid_transform_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "yoke" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid_transform", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "locale_canonicalizer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/tests/locale_canonicalizer.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "locale_canonicalizer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/benches/locale_canonicalizer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde" + ], + "compiled_data": [ + "dep:icu_locid_transform_data" + ], + "datagen": [ + "serde", + "dep:databake", + "zerovec/databake", + "icu_locid/databake", + "tinystr/databake" + ], + "default": [ + "compiled_data" + ], + "serde": [ + "dep:serde", + "icu_locid/serde", + "tinystr/serde", + "zerovec/serde", + "icu_provider/serde" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ], + "skip_optional_dependencies": true + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_locid_transform_data", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_locid_transform crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_locid_transform_data", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform_data-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform_data-1.5.0/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "45.0.0" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_normalizer", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "API for normalizing text into Unicode Normalization Forms", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_collections", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_normalizer_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf16_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "utf8_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "write16", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arraystring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "atoi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "detone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "write16", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "arrayvec" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_normalizer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "canonical_composition", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/canonical_composition.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "canonical_decomposition", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/canonical_decomposition.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "composing_normalizer_nfc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/composing_normalizer_nfc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "composing_normalizer_nfkc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/composing_normalizer_nfkc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "decomposing_normalizer_nfd", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "decomposing_normalizer_nfkd", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfkd.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiled_data": [ + "dep:icu_normalizer_data", + "icu_properties/compiled_data" + ], + "datagen": [ + "serde", + "dep:databake", + "icu_collections/databake", + "zerovec/databake", + "icu_properties/datagen" + ], + "default": [ + "compiled_data" + ], + "experimental": [], + "serde": [ + "dep:serde", + "icu_collections/serde", + "zerovec/serde", + "icu_properties/serde" + ], + "std": [ + "icu_collections/std", + "icu_properties/std", + "icu_provider/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_normalizer_data", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_normalizer crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_normalizer_data", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer_data-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer_data-1.5.0/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "45.0.0" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_properties", + "version": "1.5.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "license": "Unicode-3.0", + "license_file": null, + "description": "Definitions for Unicode properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_collections", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_locid_transform", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "compiled_data" + ], + "target": null, + "registry": null + }, + { + "name": "icu_properties_data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "zerovec" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-bidi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_properties", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties-1.5.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bidi": [ + "dep:unicode-bidi" + ], + "compiled_data": [ + "dep:icu_properties_data", + "dep:icu_locid_transform" + ], + "datagen": [ + "serde", + "dep:databake", + "zerovec/databake", + "icu_collections/databake", + "tinystr/databake" + ], + "default": [ + "compiled_data" + ], + "serde": [ + "dep:serde", + "tinystr/serde", + "zerovec/serde", + "icu_collections/serde", + "icu_provider/serde" + ], + "std": [ + "icu_collections/std", + "icu_provider/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties-1.5.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_properties_data", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Data for the icu_properties crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_properties_data", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties_data-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties_data-1.5.0/Cargo.toml", + "metadata": { + "sources": { + "cldr": { + "tagged": "45.0.0" + }, + "icuexport": { + "tagged": "icu4x/2024-05-16/75.x" + }, + "segmenter_lstm": { + "tagged": "v0.1.0" + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_provider", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Trait and struct definitions for the ICU data provider", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "erased-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "icu_locid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_provider_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive", + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinystr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "writeable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "icu_provider", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "data_locale_bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0/benches/data_locale_bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "datagen": [ + "serde", + "dep:erased-serde", + "dep:databake", + "std", + "sync" + ], + "deserialize_bincode_1": [ + "serde", + "dep:bincode", + "std" + ], + "deserialize_json": [ + "serde", + "dep:serde_json" + ], + "deserialize_postcard_1": [ + "serde", + "dep:postcard" + ], + "experimental": [], + "log_error_context": [ + "logging" + ], + "logging": [ + "dep:log" + ], + "macros": [ + "dep:icu_provider_macros" + ], + "serde": [ + "dep:serde", + "yoke/serde" + ], + "std": [ + "icu_locid/std" + ], + "sync": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "macros" + ], + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "icu_provider_macros", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "license": "Unicode-3.0", + "license_file": null, + "description": "Proc macros for ICU data providers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "icu_provider_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider_macros-1.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider_macros-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "internationalization" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": "https://icu4x.unicode.org", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "ident_case", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Utility for applying case rules to Rust identifiers.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ident_case", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ident_case-1.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ident_case-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Driggs " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TedDriggs/ident_case", + "homepage": null, + "documentation": "https://docs.rs/ident_case/1.0.1", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "idna", + "version": "1.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "idna_adapter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "const_generics" + ], + "target": null, + "registry": null + }, + { + "name": "utf8_iter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tester", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "idna", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/tests/unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unitbis", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/tests/unitbis.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "all", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/benches/all.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "compiled_data": [ + "idna_adapter/compiled_data" + ], + "default": [ + "std", + "compiled_data" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [], + "keywords": [ + "no_std", + "web", + "http" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-url/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "idna_adapter", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Back end adapter for idna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "icu_normalizer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "icu_properties", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "idna_adapter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna_adapter-1.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "compiled_data": [ + "icu_normalizer/compiled_data", + "icu_properties/compiled_data" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna_adapter-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no-std", + "internationalization" + ], + "keywords": [ + "unicode", + "dns", + "idna" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/idna_adapter", + "homepage": "https://docs.rs/crate/idna_adapter/latest", + "documentation": "https://docs.rs/idna_adapter/latest/idna_adapter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67.0" + }, + { + "name": "ignore", + "version": "0.4.23", + "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "perf", + "syntax", + "meta", + "nfa", + "hybrid", + "dfa-onepass" + ], + "target": null, + "registry": null + }, + { + "name": "same-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "crossbeam-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ignore", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "walk", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/examples/walk.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "gitignore_matched_path_or_any_parents_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/tests/gitignore_matched_path_or_any_parents_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "simd-accel": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "glob", + "ignore", + "gitignore", + "pattern", + "file" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", + "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", + "documentation": "https://docs.rs/ignore", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "imara-diff", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", + "license": "Apache-2.0", + "license_file": null, + "description": "A high performance library for computing diffs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw", + "inline-more" + ], + "target": null, + "registry": null + }, + { + "name": "expect-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "imara_diff", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imara-diff-0.1.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "unified_diff" + ], + "unified_diff": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imara-diff-0.1.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "pascalkuthe " + ], + "categories": [], + "keywords": [ + "diff", + "difference", + "myers", + "compare", + "changes" + ], + "readme": "README.md", + "repository": "https://github.com/pascalkuthe/imara-diff", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "imperative", + "version": "1.0.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Check for imperative mood in text", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "phf", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rust-stemmers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "codegenrs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "multimap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "phf_codegen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rust-stemmers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "imperative", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imperative-1.0.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imperative-1.0.6/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/crate-ci/imperative/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Ed Page " + ], + "categories": [ + "text-processing" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/crate-ci/imperative", + "homepage": null, + "documentation": "https://docs.rs/imperative", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "indexmap", + "version": "2.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A hash table with consistent order and fast iteration.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "equivalent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": "rustc-rayon", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "indexmap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_full_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/macros_full_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/quick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "faststring", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/benches/faststring.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "borsh": [ + "dep:borsh" + ], + "default": [ + "std" + ], + "quickcheck": [ + "dep:quickcheck" + ], + "rayon": [ + "dep:rayon" + ], + "rustc-rayon": [ + "dep:rustc-rayon" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "test_debug": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "quickcheck", + "serde", + "borsh", + "rayon" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "allow-branch": [ + "master" + ], + "sign-tag": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/indexmap-rs/indexmap", + "homepage": null, + "documentation": "https://docs.rs/indexmap/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "indicatif", + "version": "0.17.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", + "license": "MIT", + "license_file": null, + "description": "A progress bar and cli reporting library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "ansi-parsing" + ], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "number_prefix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "io-util" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vt100", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "color", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs", + "time", + "rt" + ], + "target": null, + "registry": null + }, + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "indicatif", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/cargo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cargowrap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/cargowrap.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "download", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/download.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "download-continued", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/download-continued.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "download-speed", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/download-speed.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "fastbar", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/fastbar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "finebars", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/finebars.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/iterator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/log.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "long-spinner", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/long-spinner.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "message", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/message.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "morebars", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/morebars.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "multi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/multi.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "multi-tree", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/multi-tree.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "multi-tree-ext", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/multi-tree-ext.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "single", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/single.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "slow", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/slow.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "spinner-loop", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/spinner-loop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "steady", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/steady.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tokio", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/tokio.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "yarnish", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/yarnish.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multi-autodrop", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/tests/multi-autodrop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "render", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/tests/render.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "unicode-width", + "console/unicode-width" + ], + "futures": [ + "dep:futures-core" + ], + "improved_unicode": [ + "unicode-segmentation", + "unicode-width", + "console/unicode-width" + ], + "in_memory": [ + "vt100" + ], + "rayon": [ + "dep:rayon" + ], + "tokio": [ + "dep:tokio" + ], + "unicode-segmentation": [ + "dep:unicode-segmentation" + ], + "unicode-width": [ + "dep:unicode-width" + ], + "vt100": [ + "dep:vt100" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "progress", + "pb", + "colors", + "progressbar" + ], + "readme": "README.md", + "repository": "https://github.com/console-rs/indicatif", + "homepage": null, + "documentation": "https://docs.rs/indicatif", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "indoc", + "version": "2.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Indented document literals", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "unindent", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "indoc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_concat", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_concat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_formatdoc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_formatdoc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_indoc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_indoc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_unindent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_unindent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_writedoc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_writedoc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns", + "text-processing", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "heredoc", + "nowdoc", + "multiline", + "string", + "literal" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/indoc", + "homepage": null, + "documentation": "https://docs.rs/indoc", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "inotify", + "version": "0.10.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", + "license": "ISC", + "license_file": null, + "description": "Idiomatic wrapper for inotify", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "inotify-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "net" + ], + "target": null, + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "maplit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "inotify", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/examples/stream.rs", + "edition": "2018", + "required-features": [ + "stream" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "watch", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/examples/watch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/tests/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "stream" + ], + "futures-core": [ + "dep:futures-core" + ], + "stream": [ + "futures-core", + "tokio" + ], + "tokio": [ + "dep:tokio" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Hanno Braun ", + "Félix Saparelli ", + "Cristian Kubis ", + "Frank Denis " + ], + "categories": [ + "api-bindings", + "filesystem" + ], + "keywords": [ + "inotify", + "linux" + ], + "readme": "README.md", + "repository": "https://github.com/hannobraun/inotify", + "homepage": null, + "documentation": "https://docs.rs/inotify", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "inotify-sys", + "version": "0.1.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", + "license": "ISC", + "license_file": null, + "description": "inotify bindings for the Rust programming language", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "inotify_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-sys-0.1.5/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-sys-0.1.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Hanno Braun " + ], + "categories": [ + "external-ffi-bindings", + "filesystem" + ], + "keywords": [ + "inotify", + "linux" + ], + "readme": "README.md", + "repository": "https://github.com/hannobraun/inotify-sys", + "homepage": null, + "documentation": "https://docs.rs/inotify-sys", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "insta", + "version": "1.41.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "license": "Apache-2.0", + "license_file": null, + "description": "A snapshot testing library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive", + "env" + ], + "target": null, + "registry": null + }, + { + "name": "console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "csv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "linked-hash-map", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pest_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "unicode" + ], + "target": null, + "registry": null + }, + { + "name": "ron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "similar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "inline" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc_version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.117", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "similar-asserts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "insta", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_advanced", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_advanced.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_basic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_binary", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_binary.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_glob", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_glob.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_inline", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_inline.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_redaction", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_redaction.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_settings", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_settings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "_cargo_insta_internal": [ + "clap" + ], + "clap": [ + "dep:clap" + ], + "colors": [ + "console" + ], + "console": [ + "dep:console" + ], + "csv": [ + "dep:csv", + "serde" + ], + "default": [ + "colors" + ], + "filters": [ + "regex" + ], + "glob": [ + "walkdir", + "globset" + ], + "globset": [ + "dep:globset" + ], + "json": [ + "serde" + ], + "pest": [ + "dep:pest" + ], + "pest_derive": [ + "dep:pest_derive" + ], + "redactions": [ + "pest", + "pest_derive", + "serde" + ], + "regex": [ + "dep:regex" + ], + "ron": [ + "dep:ron", + "serde" + ], + "serde": [ + "dep:serde" + ], + "toml": [ + "dep:toml", + "serde" + ], + "walkdir": [ + "dep:walkdir" + ], + "yaml": [ + "serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Armin Ronacher " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "snapshot", + "testing", + "jest", + "approval" + ], + "readme": "README.md", + "repository": "https://github.com/mitsuhiko/insta", + "homepage": "https://insta.rs/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "insta-cmd", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", + "license": "Apache-2.0", + "license_file": null, + "description": "A command line extension to the insta testing library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.29.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.139", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.82", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "insta_cmd", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "hello", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/src/bin/hello.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hello", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/examples/hello.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Armin Ronacher " + ], + "categories": [], + "keywords": [ + "snapshot", + "cmd", + "trycmd", + "assert-cmd" + ], + "readme": "README.md", + "repository": "https://github.com/mitsuhiko/insta-cmd", + "homepage": "https://insta.rs/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57.0" + }, + { + "name": "instant", + "version": "0.1.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12", + "license": "BSD-3-Clause", + "license_file": null, + "description": "A partial replacement for std::time::Instant that works on WASM too.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "asmjs-unknown-emscripten", + "registry": null + }, + { + "name": "stdweb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "asmjs-unknown-emscripten", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "wasm-bindgen_rs", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "asmjs-unknown-emscripten", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "Window", + "Performance", + "PerformanceTiming" + ], + "target": "asmjs-unknown-emscripten", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-emscripten", + "registry": null + }, + { + "name": "stdweb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-emscripten", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "wasm-bindgen_rs", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-emscripten", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "Window", + "Performance", + "PerformanceTiming" + ], + "target": "wasm32-unknown-emscripten", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-unknown", + "registry": null + }, + { + "name": "stdweb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-unknown", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "wasm-bindgen_rs", + "optional": true, + "uses_default_features": true, + "features": [], + "target": "wasm32-unknown-unknown", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "Window", + "Performance", + "PerformanceTiming" + ], + "target": "wasm32-unknown-unknown", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "instant", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/instant-0.1.12/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/instant-0.1.12/tests/wasm.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/instant-0.1.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "sebcrozet " + ], + "categories": [], + "keywords": [ + "time", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/sebcrozet/instant", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "is-docker", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", + "license": "MIT", + "license_file": null, + "description": "Checks if the process is running inside a Docker container.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "is_docker", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-docker-0.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-docker-0.2.0/examples/main.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-docker-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean Larkin " + ], + "categories": [ + "command-line-utilities" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TheLarkInn/is-docker", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "is-macro", + "version": "0.3.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "license": "Apache-2.0", + "license_file": null, + "description": "Derive methods for using custom enums like Option / Result", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "heck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.33", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold", + "full", + "derive", + "extra-traits", + "fold" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "is_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arg_count", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/arg_count.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "as_mut", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/as_mut.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/generic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reference", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/reference.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rename", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/rename.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trailing_punct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/trailing_punct.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "usage", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/usage.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "강동윤 " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dudykr/ddbase.git", + "homepage": null, + "documentation": "https://docs.rs/is-macro", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "is-terminal", + "version": "0.4.12", + "id": "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", + "license": "MIT", + "license_file": null, + "description": "Test whether a given stream is a terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "atty", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(unix, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(unix, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.38.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "termios" + ], + "target": "cfg(any(unix, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.38.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "stdio" + ], + "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", + "registry": null + }, + { + "name": "hermit-abi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Storage_FileSystem", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "is_terminal", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-terminal-0.4.12/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-terminal-0.4.12/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "softprops ", + "Dan Gohman " + ], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "terminal", + "tty", + "isatty" + ], + "readme": "README.md", + "repository": "https://github.com/sunfishcode/is-terminal", + "homepage": null, + "documentation": "https://docs.rs/is-terminal", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "is-wsl", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", + "license": "MIT", + "license_file": null, + "description": "Checks if the process is running inside Windows Subsystem for Linux.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "is-docker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "is_wsl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-wsl-0.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-wsl-0.4.0/examples/main.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-wsl-0.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sean Larkin " + ], + "categories": [ + "command-line-utilities" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/TheLarkInn/is-wsl", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "itertools", + "version": "0.10.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "permutohedron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itertools", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iris", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/examples/iris.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adaptors_no_collect", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/adaptors_no_collect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_ok", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/flatten_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_hygiene", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/macros_hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge_join", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/merge_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "peeking_take_while", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/peeking_take_while.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/quick.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/test_core.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/test_std.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/zip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench1", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/bench1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations_with_replacement", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/combinations_with_replacement.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fold_specialization", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/fold_specialization.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "powerset", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/powerset.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_fold1", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/tree_fold1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuple_combinations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/tuple_combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_alloc": [], + "use_std": [ + "use_alloc", + "either/use_std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/Cargo.toml", + "metadata": { + "release": { + "no-dev-version": true + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "algorithms", + "rust-patterns" + ], + "keywords": [ + "iterator", + "data-structure", + "zip", + "product", + "group-by" + ], + "readme": "README.md", + "repository": "https://github.com/rust-itertools/itertools", + "homepage": null, + "documentation": "https://docs.rs/itertools/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "itertools", + "version": "0.13.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "permutohedron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itertools", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iris", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/examples/iris.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "adaptors_no_collect", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/adaptors_no_collect.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten_ok", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/flatten_ok.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "laziness", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/laziness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_hygiene", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/macros_hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge_join", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/merge_join.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "peeking_take_while", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/peeking_take_while.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/quick.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/test_core.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/test_std.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/zip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench1", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/bench1.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "combinations_with_replacement", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/combinations_with_replacement.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fold_specialization", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/fold_specialization.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "powerset", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/powerset.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "specializations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/specializations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tree_reduce", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/tree_reduce.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuple_combinations", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/tuple_combinations.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "tuples", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/tuples.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_alloc": [], + "use_std": [ + "use_alloc", + "either/use_std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "algorithms", + "rust-patterns", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "iterator", + "data-structure", + "zip", + "product" + ], + "readme": "README.md", + "repository": "https://github.com/rust-itertools/itertools", + "homepage": null, + "documentation": "https://docs.rs/itertools/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.43.1" + }, + { + "name": "itoa", + "version": "1.0.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Fast integer primitive to string conversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "itoa", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no-panic": [ + "dep:no-panic" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "value-formatting", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "integer" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/itoa", + "homepage": null, + "documentation": "https://docs.rs/itoa", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "jobserver", + "version": "0.1.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of the GNU Make jobserver for Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.10.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.28.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs" + ], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "jobserver", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client-of-myself", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/client-of-myself.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "helper", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/helper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "make-as-a-client", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/make-as-a-client.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "server", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/server.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/jobserver-rs", + "homepage": "https://github.com/rust-lang/jobserver-rs", + "documentation": "https://docs.rs/jobserver", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "jod-thread", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "std::thread which joins on drop by default.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "jod_thread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jod-thread-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jod-thread-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Aleksey Kladov " + ], + "categories": [ + "rust-patterns", + "concurrency" + ], + "keywords": [ + "thread", + "join", + "structured", + "concurrency" + ], + "readme": "README.md", + "repository": "https://github.com/matklad/jod-thread", + "homepage": null, + "documentation": "https://docs.rs/jod-thread", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "js-sys", + "version": "0.3.72", + "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "license": "MIT OR Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "js_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/js-sys-0.3.72/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/js-sys-0.3.72/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/js-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "kqueue", + "version": "1.0.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", + "license": "MIT", + "license_file": null, + "description": "kqueue interface for BSDs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "kqueue-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kqueue", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/examples/file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/examples/pid.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-netbsd", + "x86_64-unknown-freebsd", + "i686-unknown-freebsd", + "x86_64-unknown-dragonfly", + "x86_64-unknown-openbsd", + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "aarch64-apple-ios", + "x86_64-apple-ios" + ] + } + } + }, + "publish": null, + "authors": [ + "William Orr " + ], + "categories": [ + "os::unix-apis", + "filesystem" + ], + "keywords": [ + "kqueue", + "kevent", + "bsd" + ], + "readme": "README.md", + "repository": "https://gitlab.com/rust-kqueue/rust-kqueue", + "homepage": null, + "documentation": "https://docs.worrbase.com/rust/kqueue/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "kqueue-sys", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", + "license": "MIT", + "license_file": null, + "description": "Low-level kqueue interface for BSDs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "kqueue_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-sys-1.0.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-sys-1.0.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-freebsd", + "x86_64-unknown-dragonfly", + "x86_64-unknown-openbsd", + "x86_64-unknown-netbsd", + "x86_64-apple-darwin" + ] + } + } + }, + "publish": null, + "authors": [ + "William Orr ", + "Daniel (dmilith) Dettlaff " + ], + "categories": [ + "external-ffi-bindings", + "no-std", + "os::unix-apis", + "filesystem" + ], + "keywords": [ + "kqueue", + "kevent", + "bsd", + "darwin", + "macos" + ], + "readme": "README.md", + "repository": "https://gitlab.com/rust-kqueue/rust-kqueue-sys", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lazy_static", + "version": "1.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A macro for declaring lazily evaluated statics in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "spin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lazy_static", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_std", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/tests/no_std.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "spin": [ + "dep:spin" + ], + "spin_no_std": [ + "spin" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marvin Löbel " + ], + "categories": [ + "no-std", + "rust-patterns", + "memory-management" + ], + "keywords": [ + "macro", + "lazy", + "static" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", + "homepage": null, + "documentation": "https://docs.rs/lazy_static", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "libc", + "version": "0.2.164", + "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Raw FFI bindings to platform libraries like libc.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "const_fn", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/tests/const_fn.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "cargo-args": [ + "-Zbuild-std=core" + ], + "default-target": "x86_64-unknown-linux-gnu", + "features": [ + "const-extern-fn", + "extra_traits" + ], + "targets": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-freebsd", + "aarch64-unknown-fuchsia", + "aarch64-unknown-hermit", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-linux-musl", + "aarch64-unknown-netbsd", + "aarch64-unknown-openbsd", + "aarch64-wrs-vxworks", + "arm-linux-androideabi", + "arm-unknown-linux-gnueabi", + "arm-unknown-linux-gnueabihf", + "arm-unknown-linux-musleabi", + "arm-unknown-linux-musleabihf", + "armebv7r-none-eabi", + "armebv7r-none-eabihf", + "armv5te-unknown-linux-gnueabi", + "armv5te-unknown-linux-musleabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabihf", + "armv7-unknown-linux-musleabihf", + "armv7-wrs-vxworks-eabihf", + "armv7r-none-eabi", + "armv7r-none-eabihf", + "i586-pc-windows-msvc", + "i586-unknown-linux-gnu", + "i586-unknown-linux-musl", + "i686-linux-android", + "i686-pc-windows-gnu", + "i686-pc-windows-msvc", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-haiku", + "i686-unknown-linux-gnu", + "i686-unknown-linux-musl", + "i686-unknown-netbsd", + "i686-unknown-openbsd", + "i686-wrs-vxworks", + "mips-unknown-linux-gnu", + "mips-unknown-linux-musl", + "mips64-unknown-linux-gnuabi64", + "mips64-unknown-linux-muslabi64", + "mips64el-unknown-linux-gnuabi64", + "mips64el-unknown-linux-muslabi64", + "mipsel-sony-psp", + "mipsel-unknown-linux-gnu", + "mipsel-unknown-linux-musl", + "nvptx64-nvidia-cuda", + "powerpc-unknown-linux-gnu", + "powerpc-unknown-linux-gnuspe", + "powerpc-unknown-netbsd", + "powerpc-wrs-vxworks", + "powerpc-wrs-vxworks-spe", + "powerpc64-unknown-freebsd", + "powerpc64-unknown-linux-gnu", + "powerpc64-wrs-vxworks", + "powerpc64le-unknown-linux-gnu", + "riscv32gc-unknown-linux-gnu", + "riscv32i-unknown-none-elf", + "riscv32imac-unknown-none-elf", + "riscv32imc-unknown-none-elf", + "riscv32-wrs-vxworks", + "riscv64gc-unknown-freebsd", + "riscv64gc-unknown-hermit", + "riscv64gc-unknown-linux-gnu", + "riscv64gc-unknown-linux-musl", + "riscv64gc-unknown-none-elf", + "riscv64imac-unknown-none-elf", + "riscv64-wrs-vxworks", + "s390x-unknown-linux-gnu", + "s390x-unknown-linux-musl", + "sparc-unknown-linux-gnu", + "sparc64-unknown-linux-gnu", + "sparc64-unknown-netbsd", + "sparcv9-sun-solaris", + "thumbv6m-none-eabi", + "thumbv7em-none-eabi", + "thumbv7em-none-eabihf", + "thumbv7m-none-eabi", + "thumbv7neon-linux-androideabi", + "thumbv7neon-unknown-linux-gnueabihf", + "wasm32-unknown-emscripten", + "wasm32-unknown-unknown", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-fortanix-unknown-sgx", + "x86_64-linux-android", + "x86_64-pc-solaris", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-dragonfly", + "x86_64-unknown-freebsd", + "x86_64-unknown-fuchsia", + "x86_64-unknown-haiku", + "x86_64-unknown-hermit", + "x86_64-unknown-illumos", + "x86_64-unknown-l4re-uclibc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-gnux32", + "x86_64-unknown-linux-musl", + "x86_64-unknown-netbsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-redox", + "x86_64-wrs-vxworks" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "external-ffi-bindings", + "no-std", + "os" + ], + "keywords": [ + "libc", + "ffi", + "bindings", + "operating", + "system" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/libc", + "homepage": "https://github.com/rust-lang/libc", + "documentation": "https://docs.rs/libc/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "libcst", + "version": "1.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", + "license": "MIT AND (MIT AND PSF-2.0)", + "license_file": null, + "description": "A Python parser and Concrete Syntax Tree library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libcst_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.15", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "peg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pyo3", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + }, + { + "name": "difference", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "cdylib", + "rlib" + ], + "crate_types": [ + "cdylib", + "rlib" + ], + "name": "libcst_native", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/src/bin.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parser_roundtrip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/tests/parser_roundtrip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parser_benchmark", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/benches/parser_benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "py" + ], + "py": [ + "pyo3", + "pyo3/extension-module" + ], + "pyo3": [ + "dep:pyo3" + ], + "trace": [ + "peg/trace" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "LibCST Developers" + ], + "categories": [ + "parser-implementations" + ], + "keywords": [ + "python", + "cst", + "ast" + ], + "readme": "README.md", + "repository": "https://github.com/Instagram/LibCST", + "homepage": null, + "documentation": "https://libcst.rtfd.org", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "libcst_derive", + "version": "1.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", + "license": null, + "license_file": "LICENSE", + "description": "Proc macro helpers for libcst.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "libcst_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst_derive-1.4.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst_derive-1.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "macros", + "python" + ], + "readme": null, + "repository": "https://github.com/Instagram/LibCST", + "homepage": null, + "documentation": "https://libcst.rtfd.org", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "libmimalloc-sys", + "version": "0.1.39", + "id": "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39", + "license": "MIT", + "license_file": null, + "description": "Sys crate wrapping the mimalloc allocator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cty", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libmimalloc_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libmimalloc-sys-0.1.39/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libmimalloc-sys-0.1.39/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arena": [], + "cty": [ + "dep:cty" + ], + "debug": [], + "debug_in_debug": [], + "extended": [ + "cty" + ], + "local_dynamic_tls": [], + "no_thp": [], + "override": [], + "secure": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libmimalloc-sys-0.1.39/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "extended" + ] + } + } + }, + "publish": null, + "authors": [ + "Octavian Oncescu " + ], + "categories": [ + "memory-management", + "api-bindings" + ], + "keywords": [ + "allocator", + "encrypted-heap", + "performance" + ], + "readme": null, + "repository": "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": "mimalloc", + "default_run": null, + "rust_version": null + }, + { + "name": "libredox", + "version": "0.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "license": "MIT", + "license_file": null, + "description": "Redox stable ABI", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ioslice", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "redox_syscall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "libredox", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libredox-0.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "call": [], + "default": [ + "call", + "std", + "redox_syscall" + ], + "ioslice": [ + "dep:ioslice" + ], + "mkns": [ + "ioslice" + ], + "redox_syscall": [ + "dep:redox_syscall" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libredox-0.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "4lDO2 <4lDO2@protonmail.com>" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://gitlab.redox-os.org/redox-os/libredox.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linked-hash-map", + "version": "0.5.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A HashMap wrapper that holds key-value pairs in insertion order", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "heapsize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linked_hash_map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linked-hash-map-0.5.6/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "heapsize": [ + "dep:heapsize" + ], + "heapsize_impl": [ + "heapsize" + ], + "nightly": [], + "serde": [ + "dep:serde" + ], + "serde_impl": [ + "serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linked-hash-map-0.5.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Stepan Koltsov ", + "Andrew Paseltiner " + ], + "categories": [], + "keywords": [ + "data-structures" + ], + "readme": "README.md", + "repository": "https://github.com/contain-rs/linked-hash-map", + "homepage": "https://github.com/contain-rs/linked-hash-map", + "documentation": "https://docs.rs/linked-hash-map", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "linux-raw-sys", + "version": "0.4.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Generated bindings for Linux's userspace API", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "linux_raw_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linux-raw-sys-0.4.14/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "bootparam": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std", + "general", + "errno" + ], + "elf": [], + "errno": [], + "general": [], + "if_arp": [], + "if_ether": [], + "if_packet": [], + "io_uring": [], + "ioctl": [], + "loop_device": [], + "mempolicy": [], + "net": [], + "netlink": [], + "no_std": [], + "prctl": [], + "rustc-dep-of-std": [ + "core", + "compiler_builtins", + "no_std" + ], + "std": [], + "system": [], + "xdp": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linux-raw-sys-0.4.14/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "default", + "bootparam", + "ioctl", + "netlink", + "io_uring", + "if_arp", + "if_ether", + "if_packet", + "net", + "prctl", + "elf", + "xdp", + "mempolicy", + "system", + "loop_device" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "i686-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman " + ], + "categories": [ + "external-ffi-bindings" + ], + "keywords": [ + "linux", + "uapi", + "ffi" + ], + "readme": "README.md", + "repository": "https://github.com/sunfishcode/linux-raw-sys", + "homepage": null, + "documentation": "https://docs.rs/linux-raw-sys", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "litemap", + "version": "0.7.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", + "license": "Unicode-3.0", + "license_file": null, + "description": "A key-value Map implementation based on a flat, sorted Vec.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "validation" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "litemap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "language_names_hash_map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/language_names_hash_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "language_names_lite_map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/language_names_lite_map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "litemap_bincode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/litemap_bincode.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "litemap_postcard", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/litemap_postcard.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rkyv", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/tests/rkyv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "store", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/tests/store.rs", + "edition": "2021", + "required-features": [ + "testing" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "litemap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/benches/litemap.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "bench": [ + "serde" + ], + "databake": [ + "dep:databake" + ], + "default": [ + "alloc" + ], + "serde": [ + "dep:serde" + ], + "testing": [ + "alloc" + ], + "yoke": [ + "dep:yoke" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [], + "keywords": [ + "sorted", + "vec", + "map", + "hashmap", + "btreemap" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": "https://docs.rs/litemap", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "lock_api", + "version": "0.4.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "owning_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scopeguard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.126", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lock_api", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.11/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arc_lock": [], + "atomic_usize": [], + "default": [ + "atomic_usize" + ], + "nightly": [], + "owning_ref": [ + "dep:owning_ref" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.11/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency", + "no-std" + ], + "keywords": [ + "mutex", + "rwlock", + "lock", + "no_std" + ], + "readme": null, + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49.0" + }, + { + "name": "log", + "version": "0.4.22", + "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A lightweight logging facade for Rust\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval_ref", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "value-bag", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "inline-i128" + ], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sval_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "value-bag", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "test" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/tests/integration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/tests/macros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "value", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/benches/value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "kv": [], + "kv_serde": [ + "kv_std", + "value-bag/serde", + "serde" + ], + "kv_std": [ + "std", + "kv", + "value-bag/error" + ], + "kv_sval": [ + "kv", + "value-bag/sval", + "sval", + "sval_ref" + ], + "kv_unstable": [ + "kv", + "value-bag" + ], + "kv_unstable_serde": [ + "kv_serde", + "kv_unstable_std" + ], + "kv_unstable_std": [ + "kv_std", + "kv_unstable" + ], + "kv_unstable_sval": [ + "kv_sval", + "kv_unstable" + ], + "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" + ], + "sval_ref": [ + "dep:sval_ref" + ], + "value-bag": [ + "dep:value-bag" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std", + "serde", + "kv_std", + "kv_sval", + "kv_serde" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "development-tools::debugging" + ], + "keywords": [ + "logging" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/log", + "homepage": null, + "documentation": "https://docs.rs/log", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "lsp-server", + "version": "0.7.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generic LSP server scaffold.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.192", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.108", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ctrlc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lsp-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.95", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lsp_server", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lsp-server-0.7.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "goto_def", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lsp-server-0.7.7/examples/goto_def.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lsp-server-0.7.7/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "lsp-types", + "version": "0.95.1", + "id": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", + "license": "MIT", + "license_file": null, + "description": "Types for interaction with a language server, using VSCode's Language Server Protocol", + "source": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#3512a9f33eadc5402cfab1b8f7340824c8ca1439", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.34", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.50", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_repr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "lsp_types", + "src_path": "/home/micha/.cargo/git/checkouts/lsp-types-f7b2433de4ce71eb/3512a9f/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lsif", + "src_path": "/home/micha/.cargo/git/checkouts/lsp-types-f7b2433de4ce71eb/3512a9f/tests/lsif.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "proposed": [] + }, + "manifest_path": "/home/micha/.cargo/git/checkouts/lsp-types-f7b2433de4ce71eb/3512a9f/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Markus Westerlind ", + "Bruno Medeiros " + ], + "categories": [], + "keywords": [ + "language", + "server", + "lsp", + "vscode", + "lsif" + ], + "readme": "README.md", + "repository": "https://github.com/gluon-lang/lsp-types", + "homepage": null, + "documentation": "https://docs.rs/lsp-types", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "matchers", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", + "license": "MIT", + "license_file": null, + "description": "Regex matching on character and byte streams.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "matchers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchers-0.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchers-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Eliza Weisman " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "regex", + "match", + "pattern", + "streaming" + ], + "readme": "README.md", + "repository": "https://github.com/hawkw/matchers", + "homepage": "https://github.com/hawkw/matchers", + "documentation": "https://docs.rs/matchers/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "matches", + "version": "0.1.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", + "license": "MIT", + "license_file": null, + "description": "A macro to evaluate, as a boolean, whether an expression matches a pattern.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "matches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro_use_one", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/tests/macro_use_one.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_star", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/tests/use_star.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/SimonSapin/rust-std-candidates", + "homepage": null, + "documentation": "https://docs.rs/matches/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "matchit", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", + "license": "MIT AND BSD-3-Clause", + "license_file": null, + "description": "A high performance, zero-copy URL router.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "actix-router", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gonzales", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.3-beta", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http-body-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hyper", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "http1", + "server" + ], + "target": null, + "registry": null + }, + { + "name": "hyper-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "tokio" + ], + "target": null, + "registry": null + }, + { + "name": "path-tree", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "route-recognizer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "routefinder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "tower", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "make", + "util" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "matchit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hyper", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/examples/hyper.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "insert", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/insert.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "match", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/match.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "merge", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/merge.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "remove", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/remove.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "__test_helpers": [], + "default": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ibraheem Ahmed " + ], + "categories": [ + "network-programming", + "algorithms" + ], + "keywords": [ + "router", + "path", + "tree", + "match", + "url" + ], + "readme": "README.md", + "repository": "https://github.com/ibraheemdev/matchit", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "memchr", + "version": "2.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for\n1, 2 or 3 byte search and single substring search.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "memchr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std" + ], + "libc": [], + "logging": [ + "dep:log" + ], + "rustc-dep-of-std": [ + "core", + "compiler_builtins" + ], + "std": [ + "alloc" + ], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant ", + "bluss" + ], + "categories": [], + "keywords": [ + "memchr", + "memmem", + "substring", + "find", + "search" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/memchr", + "homepage": "https://github.com/BurntSushi/memchr", + "documentation": "https://docs.rs/memchr/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "mimalloc", + "version": "0.1.43", + "id": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", + "license": "MIT", + "license_file": null, + "description": "Performance and security oriented drop-in allocator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libmimalloc-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mimalloc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimalloc-0.1.43/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "debug": [ + "libmimalloc-sys/debug" + ], + "debug_in_debug": [ + "libmimalloc-sys/debug_in_debug" + ], + "default": [], + "extended": [ + "libmimalloc-sys/extended" + ], + "local_dynamic_tls": [ + "libmimalloc-sys/local_dynamic_tls" + ], + "no_thp": [ + "libmimalloc-sys/no_thp" + ], + "override": [ + "libmimalloc-sys/override" + ], + "secure": [ + "libmimalloc-sys/secure" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimalloc-0.1.43/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Octavian Oncescu ", + "Vincent Rouillé ", + "Thom Chiovoloni " + ], + "categories": [ + "memory-management", + "api-bindings" + ], + "keywords": [ + "mimalloc", + "allocator", + "encrypted-heap", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/purpleprotocol/mimalloc_rust", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "minicov", + "version": "0.3.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Code coverage and profile-guided optimization support for no_std and embedded programs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.77", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "minicov", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minicov-0.3.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minicov-0.3.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minicov-0.3.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "development-tools", + "no-std", + "embedded" + ], + "keywords": [ + "coverage", + "no_std", + "llvm-cov", + "pgo", + "profiling" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/minicov", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "minimal-lexical", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Fast float parsing conversion routines.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "minimal_lexical", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bellerophon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/bellerophon.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bellerophon_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/bellerophon_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/integration_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lemire_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/lemire_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "libm_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/libm_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mask_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/mask_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "number_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/number_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parse_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/parse_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rounding_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/rounding_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "slow_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/slow_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stackvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/stackvec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "vec_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/vec_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "compact": [], + "default": [ + "std" + ], + "lint": [], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Huszagh " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "parsing", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/Alexhuszagh/minimal-lexical", + "homepage": null, + "documentation": "https://docs.rs/minimal-lexical", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "miniz_oxide", + "version": "0.7.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2", + "license": "MIT OR Zlib OR Apache-2.0", + "license_file": null, + "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "adler", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "alloc", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "simd-adler32", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "miniz_oxide", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Frommi ", + "oyvindln " + ], + "categories": [ + "compression" + ], + "keywords": [ + "zlib", + "miniz", + "deflate", + "encoding" + ], + "readme": "Readme.md", + "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "documentation": "https://docs.rs/miniz_oxide", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "mio", + "version": "1.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", + "license": "MIT", + "license_file": null, + "description": "Lightweight non-blocking I/O.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hermit-abi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.9", + "kind": null, + "rename": "libc", + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"hermit\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.149", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "wasi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"wasi\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.149", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Wdk_Foundation", + "Wdk_Storage_FileSystem", + "Wdk_System_IO", + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_Storage_FileSystem", + "Win32_System_IO", + "Win32_System_WindowsProgramming" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "mio", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_listenfd_server", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/examples/tcp_listenfd_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tcp_server", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/examples/tcp_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "udp_server", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/examples/udp_server.rs", + "edition": "2021", + "required-features": [ + "os-poll", + "net" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "log" + ], + "log": [ + "dep:log" + ], + "net": [], + "os-ext": [ + "os-poll", + "windows-sys/Win32_System_Pipes", + "windows-sys/Win32_Security" + ], + "os-poll": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ], + "targets": [ + "aarch64-apple-ios", + "aarch64-linux-android", + "wasm32-wasi", + "x86_64-apple-darwin", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-dragonfly", + "x86_64-unknown-freebsd", + "x86_64-unknown-illumos", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-netbsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-hermit" + ] + } + }, + "playground": { + "features": [ + "os-poll", + "os-ext", + "net" + ] + } + }, + "publish": null, + "authors": [ + "Carl Lerche ", + "Thomas de Zeeuw ", + "Tokio Contributors " + ], + "categories": [ + "asynchronous" + ], + "keywords": [ + "io", + "async", + "non-blocking" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/mio", + "homepage": "https://github.com/tokio-rs/mio", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "natord", + "version": "1.0.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", + "license": "MIT", + "license_file": null, + "description": "Natural ordering for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "natord", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/natord-1.0.9/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/natord-1.0.9/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kang Seonghoon " + ], + "categories": [], + "keywords": [ + "sort", + "order", + "natural" + ], + "readme": "README.md", + "repository": "https://github.com/lifthrasiir/rust-natord", + "homepage": "https://github.com/lifthrasiir/rust-natord", + "documentation": "https://lifthrasiir.github.io/rust-natord/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "newtype-uuid", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Newtype wrapper around UUIDs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "uuid1" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "newtype_uuid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/newtype-uuid-1.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "uuid/default", + "std" + ], + "schemars08": [ + "dep:schemars", + "std" + ], + "serde": [ + "dep:serde", + "uuid/serde" + ], + "std": [ + "uuid/std", + "alloc" + ], + "v4": [ + "uuid/v4" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/newtype-uuid-1.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=doc_cfg" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "uuid" + ], + "keywords": [ + "uuid", + "unique", + "guid", + "newtype" + ], + "readme": "README.md", + "repository": "https://github.com/oxidecomputer/newtype-uuid", + "homepage": null, + "documentation": "https://docs.rs/newtype-uuid", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "nix", + "version": "0.28.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", + "license": "MIT", + "license_file": null, + "description": "Rust friendly bindings to *nix APIs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.153", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra_traits" + ], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.7.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg_aliases", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "caps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "sysctl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"freebsd\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nix", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-aio-drop", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/sys/test_aio_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-clearenv", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/test_clearenv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-prctl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/sys/test_prctl.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "acct": [], + "aio": [ + "pin-utils" + ], + "default": [], + "dir": [ + "fs" + ], + "env": [], + "event": [], + "fanotify": [], + "feature": [], + "fs": [], + "hostname": [], + "inotify": [], + "ioctl": [], + "kmod": [], + "memoffset": [ + "dep:memoffset" + ], + "mman": [], + "mount": [ + "uio" + ], + "mqueue": [ + "fs" + ], + "net": [ + "socket" + ], + "personality": [], + "pin-utils": [ + "dep:pin-utils" + ], + "poll": [], + "process": [], + "pthread": [], + "ptrace": [ + "process" + ], + "quota": [], + "reboot": [], + "resource": [], + "sched": [ + "process" + ], + "signal": [ + "process" + ], + "socket": [ + "memoffset" + ], + "term": [], + "time": [], + "ucontext": [ + "signal" + ], + "uio": [], + "user": [ + "feature" + ], + "zerocopy": [ + "fs", + "uio" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "aarch64-linux-android", + "x86_64-apple-darwin", + "aarch64-apple-ios", + "x86_64-unknown-freebsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-netbsd", + "x86_64-unknown-dragonfly", + "x86_64-fuchsia", + "x86_64-unknown-redox", + "x86_64-unknown-illumos" + ] + } + } + }, + "publish": null, + "authors": [ + "The nix-rust Project Developers" + ], + "categories": [ + "os::unix-apis" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/nix-rust/nix", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.69" + }, + { + "name": "nix", + "version": "0.29.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", + "license": "MIT", + "license_file": null, + "description": "Rust friendly bindings to *nix APIs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.155", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra_traits" + ], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.7.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg_aliases", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "caps", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "sysctl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"freebsd\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nix", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-aio-drop", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/sys/test_aio_drop.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-clearenv", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/test_clearenv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test-prctl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/sys/test_prctl.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "acct": [], + "aio": [ + "pin-utils" + ], + "default": [], + "dir": [ + "fs" + ], + "env": [], + "event": [], + "fanotify": [], + "feature": [], + "fs": [], + "hostname": [], + "inotify": [], + "ioctl": [], + "kmod": [], + "memoffset": [ + "dep:memoffset" + ], + "mman": [], + "mount": [ + "uio" + ], + "mqueue": [ + "fs" + ], + "net": [ + "socket" + ], + "personality": [], + "pin-utils": [ + "dep:pin-utils" + ], + "poll": [], + "process": [], + "pthread": [], + "ptrace": [ + "process" + ], + "quota": [], + "reboot": [], + "resource": [], + "sched": [ + "process" + ], + "signal": [ + "process" + ], + "socket": [ + "memoffset" + ], + "term": [], + "time": [], + "ucontext": [ + "signal" + ], + "uio": [], + "user": [ + "feature" + ], + "zerocopy": [ + "fs", + "uio" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "x86_64-unknown-linux-gnu", + "aarch64-linux-android", + "x86_64-apple-darwin", + "aarch64-apple-ios", + "x86_64-unknown-freebsd", + "x86_64-unknown-openbsd", + "x86_64-unknown-netbsd", + "x86_64-unknown-dragonfly", + "x86_64-fuchsia", + "x86_64-unknown-redox", + "x86_64-unknown-illumos" + ] + } + } + }, + "publish": null, + "authors": [ + "The nix-rust Project Developers" + ], + "categories": [ + "os::unix-apis" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/nix-rust/nix", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.69" + }, + { + "name": "nom", + "version": "7.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "minimal-lexical", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/custom_error.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/json.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/json_iterator.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/iterator.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/s_expression.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/string.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/arithmetic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic_ast", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/arithmetic_ast.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/css.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_errors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/custom_errors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "escaped", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/escaped.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "float", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/float.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fnmut", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/fnmut.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/ini.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ini_str", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/ini_str.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issues", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/issues.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/json.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mp4", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/mp4.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiline", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/multiline.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "overflow", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/overflow.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reborrow_fold", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/reborrow_fold.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "docsrs": [], + "std": [ + "alloc", + "memchr/std", + "minimal-lexical/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "features": [ + "alloc", + "std", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "contact@geoffroycouprie.com" + ], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/Geal/nom", + "homepage": null, + "documentation": "https://docs.rs/nom", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48" + }, + { + "name": "notify", + "version": "7.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", + "license": "CC0-1.0", + "license_file": null, + "description": "Cross-platform filesystem notification library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "notify-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.34.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.27.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.10.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "kqueue", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "mio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "os-ext" + ], + "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))", + "registry": null + }, + { + "name": "inotify", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))", + "registry": null + }, + { + "name": "mio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "os-ext" + ], + "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))", + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "fsevent-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "kqueue", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "mio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "os-ext" + ], + "target": "cfg(target_os = \"macos\")", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_System_Threading", + "Win32_Foundation", + "Win32_Storage_FileSystem", + "Win32_Security", + "Win32_System_WindowsProgramming", + "Win32_System_IO" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "notify", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-7.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "crossbeam-channel": [ + "dep:crossbeam-channel" + ], + "default": [ + "macos_fsevent" + ], + "fsevent-sys": [ + "dep:fsevent-sys" + ], + "kqueue": [ + "dep:kqueue" + ], + "macos_fsevent": [ + "fsevent-sys" + ], + "macos_kqueue": [ + "kqueue", + "mio" + ], + "mio": [ + "dep:mio" + ], + "serde": [ + "notify-types/serde" + ], + "serialization-compat-6": [ + "notify-types/serialization-compat-6" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-7.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Félix Saparelli ", + "Daniel Faust ", + "Aron Heinecke " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "events", + "filesystem", + "notify", + "watch" + ], + "readme": "README.md", + "repository": "https://github.com/notify-rs/notify.git", + "homepage": "https://github.com/notify-rs/notify", + "documentation": "https://docs.rs/notify", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.72" + }, + { + "name": "notify-types", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Types used by the notify crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "instant", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.89", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.34.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rstest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.21.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "notify_types", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-types-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ], + "serialization-compat-6": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-types-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Daniel Faust " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "events", + "filesystem", + "notify", + "watch" + ], + "readme": "README.md", + "repository": "https://github.com/notify-rs/notify.git", + "homepage": "https://github.com/notify-rs/notify", + "documentation": "https://docs.rs/notify-types", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.72" + }, + { + "name": "nu-ansi-term", + "version": "0.46.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", + "license": "MIT", + "license_file": null, + "description": "Library for ANSI terminal colors and styles (bold, underline)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "overload", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.90", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "consoleapi", + "errhandlingapi", + "fileapi", + "handleapi", + "processenv" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nu_ansi_term", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "256_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/256_colors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/basic_colors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gradient_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/gradient_colors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "rgb_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/rgb_colors.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "derive_serde_style": [ + "serde" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "ogham@bsago.me", + "Ryan Scheel (Havvy) ", + "Josh Triplett ", + "The Nushell Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/nushell/nu-ansi-term", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "nu-ansi-term", + "version": "0.50.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", + "license": "MIT", + "license_file": null, + "description": "Library for ANSI terminal colors and styles (bold, underline)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.94", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": "windows", + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console", + "Win32_Storage_FileSystem", + "Win32_Security" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "nu_ansi_term", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "256_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/256_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/basic_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "gradient_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/gradient_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hyperlink", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/hyperlink.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "rgb_colors", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/rgb_colors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "title", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/title.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "style", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/tests/style.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "derive_serde_style": [ + "serde" + ], + "gnu_legacy": [], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "ogham@bsago.me", + "Ryan Scheel (Havvy) ", + "Josh Triplett ", + "The Nushell Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/nushell/nu-ansi-term", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.62.1" + }, + { + "name": "num-traits", + "version": "0.2.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Numeric traits for generic mathematics", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "autocfg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "num_traits", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cast", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/tests/cast.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "i128": [], + "libm": [ + "dep:libm" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "science", + "no-std" + ], + "keywords": [ + "mathematics", + "numerics" + ], + "readme": "README.md", + "repository": "https://github.com/rust-num/num-traits", + "homepage": "https://github.com/rust-num/num-traits", + "documentation": "https://docs.rs/num-traits", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "number_prefix", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", + "license": "MIT", + "license_file": null, + "description": "Library for numeric prefixes (kilo, giga, kibi).", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "number_prefix", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/number_prefix-0.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "conversions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/number_prefix-0.4.0/examples/conversions.rs", + "edition": "2015", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/number_prefix-0.4.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "std" + ] + } + } + }, + "publish": null, + "authors": [ + "Benjamin Sago " + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "mathematics", + "numerics" + ], + "readme": "README.md", + "repository": "https://github.com/ogham/rust-number-prefix", + "homepage": null, + "documentation": "https://docs.rs/number_prefix", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "once_cell", + "version": "1.20.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Single assignment cells and lazy values.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "once_cell", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench_acquire", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/bench_acquire.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lazy_static", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/lazy_static.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "reentrant_init_deadlocks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/reentrant_init_deadlocks.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "regex", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/regex.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test_synchronization", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/test_synchronization.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "it", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/tests/it/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "race" + ], + "atomic-polyfill": [ + "critical-section" + ], + "critical-section": [ + "dep:critical-section", + "portable-atomic" + ], + "default": [ + "std" + ], + "parking_lot": [ + "dep:parking_lot_core" + ], + "portable-atomic": [ + "dep:portable-atomic" + ], + "race": [], + "std": [ + "alloc" + ], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Aleksey Kladov " + ], + "categories": [ + "rust-patterns", + "memory-management" + ], + "keywords": [ + "lazy", + "static" + ], + "readme": "README.md", + "repository": "https://github.com/matklad/once_cell", + "homepage": null, + "documentation": "https://docs.rs/once_cell", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "oorandom", + "version": "11.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", + "license": "MIT", + "license_file": null, + "description": "A tiny, robust PRNG implementation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "random-fast-rng", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "randomize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "oorandom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/oorandom-11.1.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/oorandom-11.1.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Simon Heath " + ], + "categories": [ + "algorithms", + "embedded", + "no-std" + ], + "keywords": [ + "rng", + "prng", + "random", + "pcg" + ], + "readme": "README.md", + "repository": "https://sr.ht/~icefox/oorandom/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "option-ext", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", + "license": "MPL-2.0", + "license_file": null, + "description": "Extends `Option` with additional operations", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "option_ext", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/option-ext-0.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/option-ext-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Simon Ochsenreither " + ], + "categories": [ + "rust-patterns", + "algorithms" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/soc/option-ext.git", + "homepage": "https://github.com/soc/option-ext", + "documentation": "https://docs.rs/option-ext/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ordermap", + "version": "0.5.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A hash table with consistent order and fast iteration.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fxhash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ordermap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "equivalent_trait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/equivalent_trait.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_full_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/macros_full_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quick", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/quick.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "faststring", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/benches/faststring.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary", + "indexmap/arbitrary" + ], + "borsh": [ + "dep:borsh", + "indexmap/borsh" + ], + "default": [ + "std" + ], + "quickcheck": [ + "dep:quickcheck", + "indexmap/quickcheck" + ], + "rayon": [ + "dep:rayon", + "indexmap/rayon" + ], + "serde": [ + "dep:serde", + "indexmap/serde" + ], + "std": [ + "indexmap/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arbitrary", + "quickcheck", + "serde", + "borsh", + "rayon" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "allow-branch": [ + "master" + ], + "sign-tag": true, + "tag-name": "{{version}}" + } + }, + "publish": null, + "authors": [], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "hashmap", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/indexmap-rs/ordermap", + "homepage": null, + "documentation": "https://docs.rs/ordermap/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "os_str_bytes", + "version": "7.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Lossless functionality for platform-native strings\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fastrand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "os_str_bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/os_str_bytes-7.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "checked_conversions": [ + "conversions" + ], + "conversions": [], + "default": [ + "memchr", + "raw_os_str" + ], + "memchr": [ + "dep:memchr" + ], + "raw_os_str": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/os_str_bytes-7.0.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "os_str_bytes_docs_rs" + ], + "rustdoc-args": [ + "--cfg", + "os_str_bytes_docs_rs" + ] + } + } + }, + "publish": null, + "authors": [ + "dylni" + ], + "categories": [ + "command-line-interface", + "development-tools::ffi", + "encoding", + "os", + "rust-patterns" + ], + "keywords": [ + "bytes", + "osstr", + "osstring", + "path", + "windows" + ], + "readme": "README.md", + "repository": "https://github.com/dylni/os_str_bytes", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74.0" + }, + { + "name": "overload", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", + "license": "MIT", + "license_file": null, + "description": "Provides a macro to simplify operator overloading.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "overload", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "assignment", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/tests/assignment.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "binary", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/tests/binary.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unary", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/tests/unary.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Daniel Salvadori " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "operator", + "overloading", + "macro", + "op" + ], + "readme": "README.md", + "repository": "https://github.com/danaugrs/overload", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "parking_lot", + "version": "0.12.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "More compact and efficient implementations of the standard synchronization primitives.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parking_lot", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_392", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/tests/issue_392.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_203", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/tests/issue_203.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "arc_lock": [ + "lock_api/arc_lock" + ], + "deadlock_detection": [ + "parking_lot_core/deadlock_detection" + ], + "default": [], + "hardware-lock-elision": [], + "nightly": [ + "parking_lot_core/nightly", + "lock_api/nightly" + ], + "owning_ref": [ + "lock_api/owning_ref" + ], + "send_guard": [], + "serde": [ + "lock_api/serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "arc_lock", + "serde", + "deadlock_detection" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "arc_lock", + "serde", + "deadlock_detection" + ] + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "mutex", + "condvar", + "rwlock", + "once", + "thread" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "parking_lot_core", + "version": "0.9.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An advanced API for creating custom synchronization primitives.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "backtrace", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.60", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "petgraph", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thread-id", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "redox_syscall", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"redox\")", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + }, + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "parking_lot_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.9/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.9/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "backtrace": [ + "dep:backtrace" + ], + "deadlock_detection": [ + "petgraph", + "thread-id", + "backtrace" + ], + "nightly": [], + "petgraph": [ + "dep:petgraph" + ], + "thread-id": [ + "dep:thread-id" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.9/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "mutex", + "condvar", + "rwlock", + "once", + "thread" + ], + "readme": null, + "repository": "https://github.com/Amanieu/parking_lot", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.49.0" + }, + { + "name": "paste", + "version": "1.0.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macros for all your token pasting needs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "paste-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "paste", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_item.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_attr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_doc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_doc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "macros" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/paste", + "homepage": null, + "documentation": "https://docs.rs/paste", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "path-absolutize", + "version": "3.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "license": "MIT", + "license_file": null, + "description": "A library for extending `Path` and `PathBuf` in order to get an absolute path and remove the containing dots.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "path-dedot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slash-formatter", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "path_absolutize", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-absolutize-3.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-absolutize-3.1.1/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "lazy_static_cache": [ + "path-dedot/lazy_static_cache" + ], + "once_cell_cache": [ + "path-dedot/once_cell_cache" + ], + "unsafe_cache": [ + "path-dedot/unsafe_cache" + ], + "use_unix_paths_on_wasm": [ + "path-dedot/use_unix_paths_on_wasm" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-absolutize-3.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Magic Len " + ], + "categories": [ + "parser-implementations", + "filesystem" + ], + "keywords": [ + "path", + "dot", + "dedot", + "absolute", + "canonical" + ], + "readme": "README.md", + "repository": "https://github.com/magiclen/path-absolutize", + "homepage": "https://magiclen.org/path-absolutize", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "path-dedot", + "version": "3.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1", + "license": "MIT", + "license_file": null, + "description": "A library for extending `Path` and `PathBuf` in order to parse the path which contains dots.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "path_dedot", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-dedot-3.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-dedot-3.1.1/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "lazy_static": [ + "dep:lazy_static" + ], + "lazy_static_cache": [ + "lazy_static" + ], + "once_cell_cache": [], + "unsafe_cache": [], + "use_unix_paths_on_wasm": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-dedot-3.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Magic Len " + ], + "categories": [ + "parser-implementations", + "filesystem" + ], + "keywords": [ + "path", + "dot", + "dedot", + "absolute", + "canonical" + ], + "readme": "README.md", + "repository": "https://github.com/magiclen/path-dedot", + "homepage": "https://magiclen.org/path-dedot", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "path-slash", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "license": "MIT", + "license_file": null, + "description": "Conversion to/from a file path from/to slash path", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "path_slash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/tests/lib.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unix", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/tests/unix.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "windows", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/tests/windows.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/Cargo.toml", + "metadata": { + "release": { + "dev-version": false + } + }, + "publish": null, + "authors": [ + "rhysd " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "path" + ], + "readme": "README.md", + "repository": "https://github.com/rhysd/path-slash", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.38" + }, + { + "name": "pathdiff", + "version": "0.2.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Library for diffing paths to obtain relative paths", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "camino", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pathdiff", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pathdiff-0.2.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "camino": [ + "dep:camino" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pathdiff-0.2.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "path", + "relative" + ], + "readme": null, + "repository": "https://github.com/Manishearth/pathdiff", + "homepage": null, + "documentation": "https://docs.rs/pathdiff/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "peg", + "version": "0.8.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", + "license": "MIT", + "license_file": null, + "description": "A simple Parsing Expression Grammar (PEG) parser generator.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "peg-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "peg-runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version_check", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "peg", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/tests/trybuild.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "expr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/benches/expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/benches/json.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [ + "peg-runtime/std" + ], + "trace": [ + "peg-macros/trace" + ], + "unstable": [ + "peg-runtime/unstable" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kevin Mehall " + ], + "categories": [ + "parsing" + ], + "keywords": [ + "peg", + "parser", + "parsing", + "grammar" + ], + "readme": "README.md", + "repository": "https://github.com/kevinmehall/rust-peg", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.68.0" + }, + { + "name": "peg-macros", + "version": "0.8.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", + "license": "MIT", + "license_file": null, + "description": "Procedural macros for rust-peg. To use rust-peg, see the `peg` crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "peg-runtime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "peg_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-macros-0.8.4/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "rust-peg", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-macros-0.8.4/bin.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "trace": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-macros-0.8.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kevin Mehall " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/kevinmehall/rust-peg", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "peg-runtime", + "version": "0.8.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", + "license": "MIT", + "license_file": null, + "description": "Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "peg_runtime", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-runtime-0.8.3/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "std": [], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-runtime-0.8.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Kevin Mehall " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/kevinmehall/rust-peg", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pep440_rs", + "version": "0.7.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "license": "Apache-2.0 OR BSD-2-Clause", + "license_file": null, + "description": "A library for python version numbers and specifiers, implementing PEP 440", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rkyv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.210", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unscanny", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version-ranges", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "rlib", + "cdylib" + ], + "crate_types": [ + "rlib", + "cdylib" + ], + "name": "pep440_rs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep440_rs-0.7.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "rkyv": [ + "dep:rkyv" + ], + "tracing": [ + "dep:tracing" + ], + "version-ranges": [ + "dep:version-ranges" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep440_rs-0.7.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "Readme.md", + "repository": "https://github.com/konstin/pep440-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "pep508_rs", + "version": "0.9.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", + "license": "Apache-2.0 OR BSD-2-Clause", + "license_file": null, + "description": "A library for python dependency specifiers, better known as PEP 508", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "boxcar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pep440_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "version-ranges" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.198", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rc", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "urlencoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version-ranges", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.41.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "testing_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "cdylib", + "rlib" + ], + "crate_types": [ + "cdylib", + "rlib" + ], + "name": "pep508_rs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep508_rs-0.9.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "non-pep508-extensions": [], + "schemars": [ + "dep:schemars" + ], + "tracing": [ + "dep:tracing", + "pep440_rs/tracing" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep508_rs-0.9.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "Readme.md", + "repository": "https://github.com/konstin/pep508_rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "percent-encoding", + "version": "2.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Percent encoding and decoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "percent_encoding", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "no_std" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/servo/rust-url/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51" + }, + { + "name": "pest", + "version": "2.7.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The Elegant Parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.85", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.37", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-trie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "html_reports" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parens", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/examples/parens.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "calculator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/tests/calculator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/tests/json.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "stack", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/benches/stack.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "const_prec_climber": [], + "default": [ + "std", + "memchr" + ], + "memchr": [ + "dep:memchr" + ], + "pretty-print": [ + "dep:serde", + "dep:serde_json" + ], + "std": [ + "ucd-trie/std", + "dep:thiserror" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dragoș Tiselice " + ], + "categories": [ + "parsing" + ], + "keywords": [ + "pest", + "parser", + "peg", + "grammar" + ], + "readme": "_README.md", + "repository": "https://github.com/pest-parser/pest", + "homepage": "https://pest.rs/", + "documentation": "https://docs.rs/pest", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "pest_derive", + "version": "2.7.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "pest's derive macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "pest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pest_generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "pest_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "calc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/examples/calc.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "help-menu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/examples/help-menu.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "grammar", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/grammar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "grammar_inline", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/grammar_inline.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "implicit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/implicit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lists", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/lists.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "oneormore", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/oneormore.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "opt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/opt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reporting", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/reporting.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "grammar-extras": [ + "pest_generator/grammar-extras" + ], + "not-bootstrap-in-src": [ + "pest_generator/not-bootstrap-in-src" + ], + "std": [ + "pest/std", + "pest_generator/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dragoș Tiselice " + ], + "categories": [ + "parsing" + ], + "keywords": [ + "pest", + "parser", + "peg", + "grammar" + ], + "readme": "_README.md", + "repository": "https://github.com/pest-parser/pest", + "homepage": "https://pest.rs/", + "documentation": "https://docs.rs/pest", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "pest_generator", + "version": "2.7.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "pest code generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "pest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pest_meta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pest_generator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_generator-2.7.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "export-internal": [], + "grammar-extras": [ + "pest_meta/grammar-extras" + ], + "not-bootstrap-in-src": [ + "pest_meta/not-bootstrap-in-src" + ], + "std": [ + "pest/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_generator-2.7.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dragoș Tiselice " + ], + "categories": [ + "parsing" + ], + "keywords": [ + "pest", + "generator" + ], + "readme": "_README.md", + "repository": "https://github.com/pest-parser/pest", + "homepage": "https://pest.rs/", + "documentation": "https://docs.rs/pest", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "pest_meta", + "version": "2.7.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "pest meta language parser and validator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cargo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.72.2", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pest_meta", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_meta-2.7.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "grammar-extras": [], + "not-bootstrap-in-src": [ + "dep:cargo" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_meta-2.7.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Dragoș Tiselice " + ], + "categories": [ + "parsing" + ], + "keywords": [ + "pest", + "parser", + "meta", + "optimizer" + ], + "readme": "_README.md", + "repository": "https://github.com/pest-parser/pest", + "homepage": "https://pest.rs/", + "documentation": "https://docs.rs/pest", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "phf", + "version": "0.11.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "license": "MIT", + "license_file": null, + "description": "Runtime support for perfect hash function data structures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "phf_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "phf_shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "phf", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf-0.11.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "macros": [ + "phf_macros" + ], + "phf_macros": [ + "dep:phf_macros" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "phf_shared/std" + ], + "uncased": [ + "phf_shared/uncased" + ], + "unicase": [ + "phf_macros?/unicase", + "phf_shared/unicase" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf-0.11.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "macros" + ] + } + }, + "playground": { + "all-features": false, + "default-features": true, + "features": [ + "macros" + ] + } + }, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-phf/rust-phf", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "phf_codegen", + "version": "0.11.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", + "license": "MIT", + "license_file": null, + "description": "Codegen library for PHF types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "phf_generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "phf_shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "phf_codegen", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_codegen-0.11.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_codegen-0.11.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "data-structures" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-phf/rust-phf", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "phf_generator", + "version": "0.11.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", + "license": "MIT", + "license_file": null, + "description": "PHF generation logic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "phf_shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "phf_generator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "gen_hash_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/src/bin/gen_hash_test.rs", + "edition": "2021", + "required-features": [ + "criterion" + ], + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/benches/benches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "criterion": [ + "dep:criterion" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "data-structures" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-phf/rust-phf", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "phf_shared", + "version": "0.11.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", + "license": "MIT", + "license_file": null, + "description": "Support code shared by PHF libraries", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "siphasher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uncased", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicase", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "phf_shared", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_shared-0.11.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [], + "uncased": [ + "dep:uncased" + ], + "unicase": [ + "dep:unicase" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_shared-0.11.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Fackler " + ], + "categories": [ + "data-structures" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-phf/rust-phf", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "pin-project-lite", + "version": "0.2.14", + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A lightweight version of pin-project written with declarative macros.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pin_project_lite", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drop_order", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/drop_order.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expandtest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/expandtest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "proper_unpin", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/proper_unpin.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [] + }, + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "no-std", + "no-std::no-alloc", + "rust-patterns" + ], + "keywords": [ + "pin", + "macros" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/pin-project-lite", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.37" + }, + { + "name": "pkg-config", + "version": "0.3.30", + "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pkg_config", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.30/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.30/tests/test.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.30/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [ + "build-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/pkg-config-rs", + "homepage": null, + "documentation": "https://docs.rs/pkg-config", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.30" + }, + { + "name": "portable-atomic", + "version": "1.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "critical-section", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "build-context", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fastrand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sptr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "portable_atomic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.6.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "critical-section": [ + "dep:critical-section" + ], + "default": [ + "fallback" + ], + "disable-fiq": [], + "fallback": [], + "float": [], + "force-amo": [], + "require-cas": [], + "s-mode": [], + "serde": [ + "dep:serde" + ], + "std": [], + "unsafe-assume-single-core": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.6.0/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "serde::*" + ] + }, + "docs": { + "rs": { + "features": [ + "float", + "std", + "serde", + "critical-section" + ], + "rustdoc-args": [ + "--cfg", + "portable_atomic_doc_cfg" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "concurrency", + "embedded", + "hardware-support", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "atomic" + ], + "readme": "README.md", + "repository": "https://github.com/taiki-e/portable-atomic", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.34" + }, + { + "name": "ppv-lite86", + "version": "0.2.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Implementation of the crypto-simd API for x86", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ppv_lite86", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "no_simd": [], + "simd": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The CryptoCorrosion Contributors" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "simd", + "x86" + ], + "readme": null, + "repository": "https://github.com/cryptocorrosion/cryptocorrosion", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "predicates", + "version": "3.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of boolean-valued predicate functions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "difflib", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "float-cmp", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "normalize-line-endings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "predicates-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "predicates-tree", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "predicates", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-3.1.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "case_tree", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-3.1.2/examples/case_tree.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "color": [], + "default": [ + "diff", + "regex", + "float-cmp", + "normalize-line-endings", + "color" + ], + "diff": [ + "dep:difflib" + ], + "float-cmp": [ + "dep:float-cmp" + ], + "normalize-line-endings": [ + "dep:normalize-line-endings" + ], + "regex": [ + "dep:regex" + ], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-3.1.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "pre-release-replacements": [ + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "predicates = \"{{version}}\"", + "search": "predicates = \".*\"" + }, + { + "exactly": 1, + "file": "README.md", + "replace": "predicates = \"{{version}}\"", + "search": "predicates = \".*\"" + }, + { + "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/predicates-rs/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Nick Stevens " + ], + "categories": [ + "data-structures", + "rust-patterns" + ], + "keywords": [ + "predicate", + "boolean", + "combinatorial", + "match", + "logic" + ], + "readme": "README.md", + "repository": "https://github.com/assert-rs/predicates-rs", + "homepage": "https://github.com/assert-rs/predicates-rs", + "documentation": "https://docs.rs/predicates", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "predicates-core", + "version": "1.0.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An API for boolean-valued predicate functions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "predicates_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-core-1.0.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-core-1.0.8/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/assert-rs/predicates-rs/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Nick Stevens " + ], + "categories": [ + "data-structures", + "rust-patterns" + ], + "keywords": [ + "predicate", + "boolean", + "combinatorial", + "match", + "logic" + ], + "readme": "README.md", + "repository": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", + "homepage": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", + "documentation": "https://docs.rs/predicates-core", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "predicates-tree", + "version": "1.0.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Render boolean-valued predicate functions results as a tree.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "predicates-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termtree", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "predicates", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "color" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "predicates_tree", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-tree-1.0.11/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "failures", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-tree-1.0.11/examples/failures.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-tree-1.0.11/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/assert-rs/predicates-rs/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Nick Stevens " + ], + "categories": [ + "data-structures", + "rust-patterns" + ], + "keywords": [ + "predicate", + "boolean", + "combinatorial", + "match", + "logic" + ], + "readme": "README.md", + "repository": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", + "homepage": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", + "documentation": "https://docs.rs/predicates-tree", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.74" + }, + { + "name": "pretty_assertions", + "version": "1.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements, adding colorful diffs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "diff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yansi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pretty_assertions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "pretty_assertion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/examples/pretty_assertion.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "standard_assertion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/examples/standard_assertion.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Colin Kiegel ", + "Florent Fayolle ", + "Tom Milligan " + ], + "categories": [ + "development-tools" + ], + "keywords": [ + "assert", + "diff", + "pretty", + "color" + ], + "readme": "README.md", + "repository": "https://github.com/rust-pretty-assertions/rust-pretty-assertions", + "homepage": null, + "documentation": "https://docs.rs/pretty_assertions", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "proc-macro2", + "version": "1.0.89", + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "proc_macro2", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comments", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "features", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/features.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "marker", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/marker.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_fmt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/test_fmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/test_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "proc-macro" + ], + "nightly": [], + "proc-macro": [], + "span-locations": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustc-args": [ + "--cfg", + "procmacro2_semver_exempt" + ], + "rustdoc-args": [ + "--cfg", + "procmacro2_semver_exempt", + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "span-locations" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay ", + "Alex Crichton " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/proc-macro2", + "homepage": null, + "documentation": "https://docs.rs/proc-macro2", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "pyproject-toml", + "version": "0.13.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", + "license": "MIT", + "license_file": null, + "description": "pyproject.toml parser in Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "pep440_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pep508_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.214", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.65", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parse" + ], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.41.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "pyproject_toml", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyproject-toml-0.13.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "glob": [ + "dep:glob" + ], + "pep639-glob": [ + "glob" + ], + "tracing": [ + "pep440_rs/tracing", + "pep508_rs/tracing" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyproject-toml-0.13.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "pyproject", + "pep517", + "pep518", + "pep621", + "pep639" + ], + "readme": "README.md", + "repository": "https://github.com/PyO3/pyproject-toml-rs.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.64" + }, + { + "name": "quick-junit", + "version": "0.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Data model and serializer for JUnit/XUnit XML", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.38", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "newtype-uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quick-xml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.36.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strip-ansi-escapes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.63", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "goldenfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "owo-colors", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-strategy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quick_junit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-junit-0.5.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fixture_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-junit-0.5.0/tests/fixture_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-junit-0.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "encoding", + "development-tools" + ], + "keywords": [ + "junit", + "xunit", + "xml", + "serializer", + "flaky-tests" + ], + "readme": "README.md", + "repository": "https://github.com/nextest-rs/quick-junit", + "homepage": null, + "documentation": "https://docs.rs/quick-junit", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "quick-xml", + "version": "0.36.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", + "license": "MIT", + "license_file": null, + "description": "High performance xml reader and writer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "document-features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "encoding_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=1.0.139", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "io-util" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde-value", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.21", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros", + "rt" + ], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quick_xml", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "flattened_enum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/examples/flattened_enum.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "read_nodes_serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/examples/read_nodes_serde.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async-tokio", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/async-tokio.rs", + "edition": "2021", + "required-features": [ + "async-tokio" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encodings", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/encodings.rs", + "edition": "2021", + "required-features": [ + "encoding" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde-de", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-de.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde-de-enum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-de-enum.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde-de-seq", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-de-seq.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde-issues", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-issues.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde-migrated", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-migrated.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde-se", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-se.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde_roundtrip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde_roundtrip.rs", + "edition": "2021", + "required-features": [ + "serialize" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "macrobenches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/benches/macrobenches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "microbenches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/benches/microbenches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "async-tokio": [ + "tokio" + ], + "default": [], + "document-features": [ + "dep:document-features" + ], + "encoding": [ + "encoding_rs" + ], + "encoding_rs": [ + "dep:encoding_rs" + ], + "escape-html": [], + "overlapped-lists": [], + "serde": [ + "dep:serde" + ], + "serde-types": [ + "serde/derive" + ], + "serialize": [ + "serde" + ], + "tokio": [ + "dep:tokio" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "asynchronous", + "encoding", + "parsing", + "parser-implementations" + ], + "keywords": [ + "xml", + "serde", + "parser", + "writer", + "html" + ], + "readme": "README.md", + "repository": "https://github.com/tafia/quick-xml", + "homepage": null, + "documentation": "https://docs.rs/quick-xml", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "quote", + "version": "1.0.37", + "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Quasi-quoting macro quote!(...)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.66", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "quote", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "proc-macro" + ], + "proc-macro": [ + "proc-macro2/proc-macro" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/quote", + "homepage": null, + "documentation": "https://docs.rs/quote/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "rand", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Random number generators and other randomness functionality.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "packed_simd_2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": null, + "rename": "packed_simd", + "optional": true, + "uses_default_features": true, + "features": [ + "into_bits" + ], + "target": null, + "registry": null + }, + { + "name": "rand_chacha", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.103", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [ + "rand_core/alloc" + ], + "default": [ + "std", + "std_rng" + ], + "getrandom": [ + "rand_core/getrandom" + ], + "libc": [ + "dep:libc" + ], + "log": [ + "dep:log" + ], + "min_const_gen": [], + "nightly": [], + "packed_simd": [ + "dep:packed_simd" + ], + "rand_chacha": [ + "dep:rand_chacha" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde", + "rand_core/serde1" + ], + "simd_support": [ + "packed_simd" + ], + "small_rng": [], + "std": [ + "rand_core/std", + "rand_chacha/std", + "alloc", + "getrandom", + "libc" + ], + "std_rng": [ + "rand_chacha" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ] + } + }, + "playground": { + "features": [ + "small_rng", + "serde1" + ] + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_chacha", + "version": "0.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "ChaCha random number generator\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ppv-lite86", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "simd" + ], + "target": null, + "registry": null + }, + { + "name": "rand_core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_chacha", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "simd": [], + "std": [ + "ppv-lite86/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers", + "The CryptoCorrosion Contributors" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng", + "chacha" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_chacha", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rand_core", + "version": "0.6.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core random number generator traits and tools for implementation.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rand_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "getrandom": [ + "dep:getrandom" + ], + "serde": [ + "dep:serde" + ], + "serde1": [ + "serde" + ], + "std": [ + "alloc", + "getrandom", + "getrandom/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg" + ] + } + }, + "playground": { + "all-features": true + } + }, + "publish": null, + "authors": [ + "The Rand Project Developers", + "The Rust Project Developers" + ], + "categories": [ + "algorithms", + "no-std" + ], + "keywords": [ + "random", + "rng" + ], + "readme": "README.md", + "repository": "https://github.com/rust-random/rand", + "homepage": "https://rust-random.github.io/book", + "documentation": "https://docs.rs/rand_core", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rayon", + "version": "1.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Simple work-stealing parallelism for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm_sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rayon", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chars", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/chars.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "clones", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/clones.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "collect", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/collect.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cross-pool", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/cross-pool.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "drain_vec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/drain_vec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "intersperse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/intersperse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue671", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/issue671.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue671-unzip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/issue671-unzip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "iter_panic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/iter_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "named-threads", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/named-threads.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "octillion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/octillion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "par_bridge_recursion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/par_bridge_recursion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "producer_split_at", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/producer_split_at.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "sort-panic-safe", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/sort-panic-safe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "str", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/str.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "web_spin_lock": [ + "dep:wasm_sync", + "rayon-core/web_spin_lock" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Niko Matsakis ", + "Josh Stone " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "parallel", + "thread", + "concurrency", + "join", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/rayon-rs/rayon", + "homepage": null, + "documentation": "https://docs.rs/rayon/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rayon-core", + "version": "1.12.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Core APIs for Rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "crossbeam-deque", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm_sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scoped-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(unix)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rayon_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "double_init_fail", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/double_init_fail.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "init_zero_threads", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/init_zero_threads.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scope_join", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/scope_join.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scoped_threadpool", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/scoped_threadpool.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "simple_panic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/simple_panic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stack_overflow_crash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/stack_overflow_crash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "use_current_thread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/use_current_thread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "web_spin_lock": [ + "dep:wasm_sync" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Niko Matsakis ", + "Josh Stone " + ], + "categories": [ + "concurrency" + ], + "keywords": [ + "parallel", + "thread", + "concurrency", + "join", + "performance" + ], + "readme": "README.md", + "repository": "https://github.com/rayon-rs/rayon", + "homepage": null, + "documentation": "https://docs.rs/rayon/", + "edition": "2021", + "links": "rayon-core", + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "red_knot", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clock" + ], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "wrap_help" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "countme", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "enable" + ], + "target": null, + "registry": null + }, + { + "name": "crossbeam", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ctrlc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.4.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "red_knot_server", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_server" + }, + { + "name": "red_knot_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "zstd" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_workspace" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "os", + "cache" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "salsa", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "release_max_level_debug" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-flame", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt", + "env-filter", + "fmt" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-tree", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.23", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "testing" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "red_knot", + "src_path": "/home/micha/astral/ruff/crates/red_knot/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "file_watching", + "src_path": "/home/micha/astral/ruff/crates/red_knot/tests/file_watching.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "red_knot_python_semantic", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "camino", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compact_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "countme", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "raw-entry", + "inline-more" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ordermap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_index", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_index" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_literal", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_literal" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_stdlib", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_stdlib" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dir-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "red_knot_test", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_test" + }, + { + "name": "red_knot_vendored", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_vendored" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "os", + "testing" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "red_knot_python_semantic", + "src_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mdtest", + "src_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/tests/mdtest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "red_knot_server", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jod-thread", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lsp-server", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lsp-types", + "source": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "proposed" + ], + "target": null, + "registry": null + }, + { + "name": "red_knot_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_workspace" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shellexpand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt" + ], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.153", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "red_knot_server", + "src_path": "/home/micha/astral/ruff/crates/red_knot_server/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot_server/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "red_knot_test", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "red_knot_vendored", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_vendored" + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_index", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_index" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "red_knot_test", + "src_path": "/home/micha/astral/ruff/crates/red_knot_test/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot_test/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "red_knot_vendored", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "path-slash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.6", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "zstd", + "deflate" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "red_knot_vendored", + "src_path": "/home/micha/astral/ruff/crates/red_knot_vendored/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/astral/ruff/crates/red_knot_vendored/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "deflate": [ + "zip/deflate" + ], + "zstd": [ + "zip/zstd" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot_vendored/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "red_knot_wasm", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", + "license": "MIT", + "license_file": null, + "description": "WebAssembly bindings for Red Knot", + "source": null, + "dependencies": [ + { + "name": "console_error_panic_hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "console_log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "red_knot_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "deflate" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_workspace" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.92", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "cdylib", + "rlib" + ], + "crate_types": [ + "cdylib", + "rlib" + ], + "name": "red_knot_wasm", + "src_path": "/home/micha/astral/ruff/crates/red_knot_wasm/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "api", + "src_path": "/home/micha/astral/ruff/crates/red_knot_wasm/tests/api.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "console_error_panic_hook": [ + "dep:console_error_panic_hook" + ], + "default": [ + "console_error_panic_hook" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot_wasm/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "red_knot_workspace", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "notify", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pep440_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "red_knot_vendored", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_vendored" + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "os", + "cache", + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "redactions", + "ron" + ], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "testing" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "red_knot_workspace", + "src_path": "/home/micha/astral/ruff/crates/red_knot_workspace/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "check", + "src_path": "/home/micha/astral/ruff/crates/red_knot_workspace/tests/check.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "zstd" + ], + "deflate": [ + "red_knot_vendored/deflate" + ], + "zstd": [ + "red_knot_vendored/zstd" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/red_knot_workspace/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "redox_syscall", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", + "license": "MIT", + "license_file": null, + "description": "A Rust library to access raw Redox system calls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syscall", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "bitflags/rustc-dep-of-std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.4.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jeremy Soller " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://gitlab.redox-os.org/redox-os/syscall", + "homepage": null, + "documentation": "https://docs.rs/redox_syscall", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "redox_syscall", + "version": "0.5.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3", + "license": "MIT", + "license_file": null, + "description": "A Rust library to access raw Redox system calls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syscall", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.5.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "core": [ + "dep:core" + ], + "rustc-dep-of-std": [ + "core", + "bitflags/rustc-dep-of-std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.5.3/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jeremy Soller " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://gitlab.redox-os.org/redox-os/syscall", + "homepage": null, + "documentation": "https://docs.rs/redox_syscall", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "redox_users", + "version": "0.4.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", + "license": "MIT", + "license_file": null, + "description": "A Rust library to access Redox users and groups functionality", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "libredox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "call" + ], + "target": null, + "registry": null + }, + { + "name": "rust-argon2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "zeroize_derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "redox_users", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_users-0.4.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "auth": [ + "rust-argon2", + "zeroize" + ], + "default": [ + "auth" + ], + "rust-argon2": [ + "dep:rust-argon2" + ], + "zeroize": [ + "dep:zeroize" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_users-0.4.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jose Narvaez ", + "Wesley Hershberger " + ], + "categories": [], + "keywords": [ + "redox", + "auth" + ], + "readme": "README.md", + "repository": "https://gitlab.redox-os.org/redox-os/users", + "homepage": null, + "documentation": "https://docs.rs/redox_users", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "regex", + "version": "1.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-automata", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "syntax", + "meta", + "nfa-pikevm" + ], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "atty", + "humantime", + "termcolor" + ], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.11.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.11.1/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std", + "perf", + "unicode", + "regex-syntax/default" + ], + "logging": [ + "aho-corasick?/logging", + "memchr?/logging", + "regex-automata/logging" + ], + "pattern": [], + "perf": [ + "perf-cache", + "perf-dfa", + "perf-onepass", + "perf-backtrack", + "perf-inline", + "perf-literal" + ], + "perf-backtrack": [ + "regex-automata/nfa-backtrack" + ], + "perf-cache": [], + "perf-dfa": [ + "regex-automata/hybrid" + ], + "perf-dfa-full": [ + "regex-automata/dfa-build", + "regex-automata/dfa-search" + ], + "perf-inline": [ + "regex-automata/perf-inline" + ], + "perf-literal": [ + "dep:aho-corasick", + "dep:memchr", + "regex-automata/perf-literal" + ], + "perf-onepass": [ + "regex-automata/dfa-onepass" + ], + "std": [ + "aho-corasick?/std", + "memchr?/std", + "regex-automata/std", + "regex-syntax/std" + ], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "regex-automata/unicode", + "regex-syntax/unicode" + ], + "unicode-age": [ + "regex-automata/unicode-age", + "regex-syntax/unicode-age" + ], + "unicode-bool": [ + "regex-automata/unicode-bool", + "regex-syntax/unicode-bool" + ], + "unicode-case": [ + "regex-automata/unicode-case", + "regex-syntax/unicode-case" + ], + "unicode-gencat": [ + "regex-automata/unicode-gencat", + "regex-syntax/unicode-gencat" + ], + "unicode-perl": [ + "regex-automata/unicode-perl", + "regex-automata/unicode-word-boundary", + "regex-syntax/unicode-perl" + ], + "unicode-script": [ + "regex-automata/unicode-script", + "regex-syntax/unicode-script" + ], + "unicode-segment": [ + "regex-automata/unicode-segment", + "regex-syntax/unicode-segment" + ], + "unstable": [ + "pattern" + ], + "use_std": [ + "std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.11.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex", + "homepage": "https://github.com/rust-lang/regex", + "documentation": "https://docs.rs/regex", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "regex-automata", + "version": "0.1.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10", + "license": "Unlicense/MIT", + "license_file": null, + "description": "Automata construction and matching using regular expressions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "fst", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.82", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.82", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_automata", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10/tests/tests.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "fst": [ + "dep:fst" + ], + "regex-syntax": [ + "dep:regex-syntax" + ], + "std": [ + "regex-syntax" + ], + "transducer": [ + "std", + "fst" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "regex", + "dfa", + "automata", + "automaton", + "nfa" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/regex-automata", + "homepage": "https://github.com/BurntSushi/regex-automata", + "documentation": "https://docs.rs/regex-automata", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "regex-automata", + "version": "0.4.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Automata construction and matching using regular expressions.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-syntax", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "atty", + "humantime", + "termcolor" + ], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_automata", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.8/tests/lib.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std", + "syntax", + "perf", + "unicode", + "meta", + "nfa", + "dfa", + "hybrid" + ], + "dfa": [ + "dfa-build", + "dfa-search", + "dfa-onepass" + ], + "dfa-build": [ + "nfa-thompson", + "dfa-search" + ], + "dfa-onepass": [ + "nfa-thompson" + ], + "dfa-search": [], + "hybrid": [ + "alloc", + "nfa-thompson" + ], + "internal-instrument": [ + "internal-instrument-pikevm" + ], + "internal-instrument-pikevm": [ + "logging", + "std" + ], + "logging": [ + "dep:log", + "aho-corasick?/logging", + "memchr?/logging" + ], + "meta": [ + "syntax", + "nfa-pikevm" + ], + "nfa": [ + "nfa-thompson", + "nfa-pikevm", + "nfa-backtrack" + ], + "nfa-backtrack": [ + "nfa-thompson" + ], + "nfa-pikevm": [ + "nfa-thompson" + ], + "nfa-thompson": [ + "alloc" + ], + "perf": [ + "perf-inline", + "perf-literal" + ], + "perf-inline": [], + "perf-literal": [ + "perf-literal-substring", + "perf-literal-multisubstring" + ], + "perf-literal-multisubstring": [ + "std", + "dep:aho-corasick" + ], + "perf-literal-substring": [ + "aho-corasick?/perf-literal", + "dep:memchr" + ], + "std": [ + "regex-syntax?/std", + "memchr?/std", + "aho-corasick?/std", + "alloc" + ], + "syntax": [ + "dep:regex-syntax", + "alloc" + ], + "unicode": [ + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "unicode-word-boundary", + "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" + ], + "unicode-word-boundary": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "regex", + "dfa", + "automata", + "automaton", + "nfa" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", + "homepage": null, + "documentation": "https://docs.rs/regex-automata", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "regex-syntax", + "version": "0.6.29", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A regular expression parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_syntax", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "unicode" + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex", + "homepage": "https://github.com/rust-lang/regex", + "documentation": "https://docs.rs/regex-syntax", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "regex-syntax", + "version": "0.8.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A regular expression parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "regex_syntax", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The Rust Project Developers", + "Andrew Gallant " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", + "homepage": null, + "documentation": "https://docs.rs/regex-syntax", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "ring", + "version": "0.17.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", + "license": null, + "license_file": "LICENSE", + "description": "Safe, fast, small crypto using Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "untrusted", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.83", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.148", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Threading" + ], + "target": "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.37", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "spin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "once" + ], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"x86_64\"))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.148", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(any(unix, windows, target_os = \"wasi\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ring", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aead_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/aead_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "agreement_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/agreement_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constant_time_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/constant_time_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "digest_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/digest_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ecdsa_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/ecdsa_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ed25519_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/ed25519_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "error_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/error_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hkdf_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/hkdf_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hmac_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/hmac_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "pbkdf2_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/pbkdf2_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quic_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/quic_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rand_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/rand_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rsa_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/rsa_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signature_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/signature_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "alloc", + "dev_urandom_fallback" + ], + "dev_urandom_fallback": [], + "less-safe-getrandom-custom-or-rdrand": [], + "slow_tests": [], + "std": [ + "alloc" + ], + "test_logging": [], + "unstable-testing-arm-no-hw": [], + "unstable-testing-arm-no-neon": [], + "wasm32_unknown_unknown_js": [ + "getrandom/js" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Brian Smith " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "cryptography", + "rand", + "ECC", + "RSA" + ], + "readme": "README.md", + "repository": "https://github.com/briansmith/ring", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": "ring_core_0_17_8", + "default_run": null, + "rust_version": "1.61.0" + }, + { + "name": "ron", + "version": "0.7.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Rusty Object Notation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde-1" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde_derive" + ], + "target": null, + "registry": null + }, + { + "name": "option_set", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ron", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/decode.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode_file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/decode_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "encode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/encode.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "transcode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/transcode.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "117_untagged_tuple_variant", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/117_untagged_tuple_variant.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "123_enum_representation", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/123_enum_representation.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "129_indexmap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/129_indexmap.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "147_empty_sets_serialisation", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/147_empty_sets_serialisation.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "152_bitflags", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/152_bitflags.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "207_adjacently_tagged_enum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/207_adjacently_tagged_enum.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "240_array_pretty", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/240_array_pretty.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "250_variant_newtypes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/250_variant_newtypes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "256_comma_error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/256_comma_error.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "289_enumerate_arrays", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/289_enumerate_arrays.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "301_struct_name_mismatch", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/301_struct_name_mismatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "322_escape_idents", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/322_escape_idents.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "337_value_float_roundtrip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/337_value_float_roundtrip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "359_deserialize_seed", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/359_deserialize_seed.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "367_implicit_some", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/367_implicit_some.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "370_float_parsing", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/370_float_parsing.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "big_struct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/big_struct.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "borrowed_str", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/borrowed_str.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comments", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/comments.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "depth_limit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/depth_limit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "escape", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/escape.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "extensions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/extensions.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "floats", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/floats.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "large_number", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/large_number.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "min_max", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/min_max.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "numbers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/numbers.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "options", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/options.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "preserve_sequence", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/preserve_sequence.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "roundtrip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/roundtrip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_integers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/struct_integers.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "to_string_pretty", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/to_string_pretty.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unicode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/unicode.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "value", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/value.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "indexmap": [ + "dep:indexmap" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Christopher Durham ", + "Dzmitry Malyshau ", + "Thomas Schaller " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "parser", + "serde", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/ron-rs/ron", + "homepage": "https://github.com/ron-rs/ron", + "documentation": "https://docs.rs/ron/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ruff", + "version": "0.7.4", + "id": "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "argfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cachedir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clock" + ], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "derive", + "env", + "wrap_help" + ], + "target": null, + "registry": null + }, + { + "name": "clap_complete_command", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clearscreen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globwalk", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "notify", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "path-absolutize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "once_cell_cache" + ], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "os" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_diagnostics", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" + }, + { + "name": "ruff_graph", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde", + "clap" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_graph" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "clap" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" + }, + { + "name": "ruff_server", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_server" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "ruff_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_workspace" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shellexpand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "strum_macros" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "log" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_fs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "no-color" + ], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "filters", + "json" + ], + "target": null, + "registry": null + }, + { + "name": "insta-cmd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "clap", + "test-rules" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tikv-jemallocator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), not(target_os = \"aix\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))", + "registry": null + }, + { + "name": "mimalloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff", + "src_path": "/home/micha/astral/ruff/crates/ruff/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ruff", + "src_path": "/home/micha/astral/ruff/crates/ruff/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "analyze_graph", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/analyze_graph.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "config", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/config.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "format", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/format.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration_test", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/integration_test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lint", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/lint.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "resolve_files", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/resolve_files.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "show_settings", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/show_settings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "version", + "src_path": "/home/micha/astral/ruff/crates/ruff/tests/version.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/astral/ruff/crates/ruff/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "chrono" + ] + } + }, + "publish": null, + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "../../README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": "ruff", + "rust_version": "1.80" + }, + { + "name": "ruff_benchmark", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", + "license": "MIT", + "license_file": null, + "description": "Ruff Micro-benchmarks", + "source": null, + "dependencies": [ + { + "name": "codspeed-criterion-compat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ureq", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.9.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "red_knot_workspace", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_workspace" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_formatter", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "tikv-jemallocator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))", + "registry": null + }, + { + "name": "mimalloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_benchmark", + "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "formatter", + "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/formatter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "lexer", + "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/lexer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "linter", + "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/linter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "parser", + "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/parser.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "red_knot", + "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/red_knot.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "codspeed": [ + "codspeed-criterion-compat" + ], + "codspeed-criterion-compat": [ + "dep:codspeed-criterion-compat" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_benchmark/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_cache", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "seahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_cache", + "src_path": "/home/micha/astral/ruff/crates/ruff_cache/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cache_key", + "src_path": "/home/micha/astral/ruff/crates/ruff_cache/tests/cache_key.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_cache/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_db", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "camino", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "countme", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dashmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dunce", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "filetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "matchit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "path-slash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-tree", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_db", + "src_path": "/home/micha/astral/ruff/crates/ruff_db/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "cache": [ + "ruff_cache" + ], + "default": [ + "os" + ], + "ignore": [ + "dep:ignore" + ], + "os": [ + "ignore" + ], + "ruff_cache": [ + "dep:ruff_cache" + ], + "serde": [ + "dep:serde", + "camino/serde1" + ], + "testing": [ + "tracing-subscriber", + "tracing-tree" + ], + "tracing-subscriber": [ + "dep:tracing-subscriber" + ], + "tracing-tree": [ + "dep:tracing-tree" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_db/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_dev", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "wrap_help" + ], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "imara-diff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indicatif", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libcst", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff" + }, + { + "name": "ruff_diagnostics", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" + }, + { + "name": "ruff_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_formatter" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "schemars" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_codegen", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" + }, + { + "name": "ruff_python_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "schemars" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_workspace" + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "similar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "inline" + ], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "strum_macros" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "parse" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-indicatif", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt", + "env-filter" + ], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ruff_dev", + "src_path": "/home/micha/astral/ruff/crates/ruff_dev/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "singlethreaded": [] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_dev/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_diagnostics", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_diagnostics", + "src_path": "/home/micha/astral/ruff/crates/ruff_diagnostics/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_diagnostics/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_formatter", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "drop_bomb", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_formatter", + "src_path": "/home/micha/astral/ruff/crates/ruff_formatter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "schemars": [ + "dep:schemars", + "ruff_text_size/schemars" + ], + "serde": [ + "dep:serde", + "ruff_text_size/serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_formatter/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "ruff_cache" + ] + } + }, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_graph", + "version": "0.1.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "red_knot_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_db", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "os", + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_db" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "salsa", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "zip", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_graph", + "src_path": "/home/micha/astral/ruff/crates/ruff_graph/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "clap": [ + "dep:clap" + ], + "schemars": [ + "dep:schemars" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_graph/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "ruff_cache" + ] + } + }, + "publish": null, + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_index", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_index", + "src_path": "/home/micha/astral/ruff/crates/ruff_index/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_index/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_linter", + "version": "0.7.4", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "color", + "color" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clock" + ], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive", + "derive", + "string" + ], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fern", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "imperative", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-wsl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libcst", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "natord", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "path-absolutize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "once_cell_cache", + "use_unix_paths_on_wasm" + ], + "target": null, + "registry": null + }, + { + "name": "pathdiff", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pep440_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pyproject-toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quick-junit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_diagnostics", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde", + "cache" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_codegen", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" + }, + { + "name": "ruff_python_index", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_index" + }, + { + "name": "ruff_python_literal", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_literal" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_semantic" + }, + { + "name": "ruff_python_stdlib", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_stdlib" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "similar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "inline" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "strum_macros" + ], + "target": null, + "registry": null + }, + { + "name": "strum_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "typed-arena", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-normalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode_names2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "no-color" + ], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "filters", + "json", + "redactions" + ], + "target": null, + "registry": null + }, + { + "name": "test-case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_linter", + "src_path": "/home/micha/astral/ruff/crates/ruff_linter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "clap": [ + "dep:clap" + ], + "default": [], + "schemars": [ + "dep:schemars", + "ruff_python_ast/schemars" + ], + "test-rules": [] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_linter/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_macros", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.55", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive", + "parsing", + "extra-traits", + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "ruff_macros", + "src_path": "/home/micha/astral/ruff/crates/ruff_macros/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_macros/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_notebook", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_diagnostics", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_with", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "macros", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "v4", + "fast-rng", + "macro-diagnostics", + "js" + ], + "target": null, + "registry": null + }, + { + "name": "test-case", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_notebook", + "src_path": "/home/micha/astral/ruff/crates/ruff_notebook/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_notebook/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_ast", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "aho-corasick", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compact_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_ast", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "cache": [ + "dep:ruff_cache", + "dep:ruff_macros" + ], + "schemars": [ + "dep:schemars" + ], + "serde": [ + "dep:serde", + "ruff_text_size/serde", + "dep:ruff_cache", + "compact_str/serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_ast/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "ruff_cache" + ] + } + }, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_ast_integration_tests", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_ast_integration_tests", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "comparable", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/comparable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "identifier", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/identifier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "match_pattern", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/match_pattern.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parenthesize", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/parenthesize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "source_order", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/source_order.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stmt_if", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/stmt_if.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "visitor", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/visitor.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_codegen", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_literal", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_literal" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_codegen", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_codegen/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_codegen/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_formatter", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.5.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "countme", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_formatter" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "glob" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_formatter", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_formatter" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "similar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "inline" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_formatter", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "bin" + ], + "crate_types": [ + "bin" + ], + "name": "ruff_python_formatter", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/src/main.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "normalizer", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/tests/normalizer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ruff_python_formatter_fixtures", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/tests/fixtures.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "serde" + ], + "schemars": [ + "dep:schemars", + "ruff_formatter/schemars" + ], + "serde": [ + "dep:serde", + "ruff_formatter/serde", + "ruff_source_file/serde", + "ruff_python_ast/serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "ruff_cache" + ] + } + }, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_index", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_index", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_index/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_index/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_literal", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "license": "MIT", + "license_file": null, + "description": "Common literal handling utilities mostly useful for unparse and repr.", + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "unic-ucd-category", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_literal", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_literal/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_literal/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh ", + "RustPython Team" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_parser", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compact_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-normalization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.23", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode_names2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "color" + ], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "glob" + ], + "target": null, + "registry": null + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_parser", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_parser/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fixtures", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_parser/tests/fixtures.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "generate_inline_tests", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_parser/tests/generate_inline_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_parser/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh ", + "RustPython Team" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_resolver", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", + "license": "MIT", + "license_file": null, + "description": "A Python module resolver for Ruff", + "source": null, + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_resolver", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_resolver/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_resolver/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_semantic", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_index", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_index" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_stdlib", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_stdlib" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_semantic", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_semantic/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "schemars": [ + "dep:schemars" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_semantic/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "ruff_cache" + ] + } + }, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_stdlib", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_stdlib", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_stdlib/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_stdlib/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_trivia", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_trivia", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_trivia/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_python_trivia_integration_tests", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_python_trivia_integration_tests", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "block_comments", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/tests/block_comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "simple_tokenizer", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/tests/simple_tokenizer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "whitespace", + "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/tests/whitespace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_server", + "version": "0.2.2", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jod-thread", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lsp-server", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lsp-types", + "source": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "proposed" + ], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_diagnostics", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" + }, + { + "name": "ruff_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_formatter" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_notebook", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_notebook" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_codegen", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" + }, + { + "name": "ruff_python_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" + }, + { + "name": "ruff_python_index", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_index" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "ruff_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_workspace" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.113", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "shellexpand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thiserror", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.40", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.18", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "env-filter", + "fmt" + ], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.35.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.153", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_vendor = \"apple\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_server", + "src_path": "/home/micha/astral/ruff/crates/ruff_server/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "document", + "src_path": "/home/micha/astral/ruff/crates/ruff_server/tests/document.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "notebook", + "src_path": "/home/micha/astral/ruff/crates/ruff_server/tests/notebook.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_server/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_source_file", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_source_file", + "src_path": "/home/micha/astral/ruff/crates/ruff_source_file/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde", + "ruff_text_size/serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_source_file/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_text_size", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "license": null, + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_text_size", + "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "auto_traits", + "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/auto_traits.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "constructors", + "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/constructors.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "indexing", + "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/indexing.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "schemars": [ + "dep:schemars" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_text_size/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [], + "categories": [], + "keywords": [], + "readme": null, + "repository": null, + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67.1" + }, + { + "name": "ruff_wasm", + "version": "0.7.4", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4", + "license": "MIT", + "license_file": null, + "description": "WebAssembly bindings for Ruff", + "source": null, + "dependencies": [ + { + "name": "console_error_panic_hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "console_log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_formatter" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_codegen", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" + }, + { + "name": "ruff_python_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" + }, + { + "name": "ruff_python_index", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_index" + }, + { + "name": "ruff_python_parser", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_parser" + }, + { + "name": "ruff_python_trivia", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "ruff_text_size", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_text_size" + }, + { + "name": "ruff_workspace", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_workspace" + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde-wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.92", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "cdylib", + "rlib" + ], + "crate_types": [ + "cdylib", + "rlib" + ], + "name": "ruff_wasm", + "src_path": "/home/micha/astral/ruff/crates/ruff_wasm/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "api", + "src_path": "/home/micha/astral/ruff/crates/ruff_wasm/tests/api.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "console_error_panic_hook": [ + "dep:console_error_panic_hook" + ], + "default": [ + "console_error_panic_hook" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_wasm/Cargo.toml", + "metadata": null, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "ruff_workspace", + "version": "0.0.0", + "id": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "license": "MIT", + "license_file": null, + "description": null, + "source": null, + "dependencies": [ + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "colored", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "globset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ignore", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "matchit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "path-absolutize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "path-slash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pep440_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_cache", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_cache" + }, + { + "name": "ruff_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_formatter" + }, + { + "name": "ruff_graph", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde", + "schemars" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_graph" + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "ruff_macros", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_macros" + }, + { + "name": "ruff_python_ast", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_ast" + }, + { + "name": "ruff_python_formatter", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" + }, + { + "name": "ruff_python_semantic", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_python_semantic" + }, + { + "name": "ruff_source_file", + "source": null, + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_source_file" + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.197", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "shellexpand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "strum_macros" + ], + "target": null, + "registry": null + }, + { + "name": "toml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ruff_linter", + "source": null, + "req": "*", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "clap", + "test-rules" + ], + "target": null, + "registry": null, + "path": "/home/micha/astral/ruff/crates/ruff_linter" + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "etcetera", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ruff_workspace", + "src_path": "/home/micha/astral/ruff/crates/ruff_workspace/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "schemars": [ + "dep:schemars", + "ruff_formatter/schemars", + "ruff_python_formatter/schemars", + "ruff_python_semantic/schemars" + ] + }, + "manifest_path": "/home/micha/astral/ruff/crates/ruff_workspace/Cargo.toml", + "metadata": { + "cargo-shear": { + "ignored": [ + "colored" + ] + } + }, + "publish": [], + "authors": [ + "Charlie Marsh " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/astral-sh/ruff", + "homepage": "https://docs.astral.sh/ruff", + "documentation": "https://docs.astral.sh/ruff", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.80" + }, + { + "name": "rust-stemmers", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0", + "license": "MIT/BSD-3-Clause", + "license_file": null, + "description": "A rust implementation of some popular snowball stemming algorithms", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rust_stemmers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rust-stemmers-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stem-file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rust-stemmers-1.2.0/examples/stem-file/main.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rust-stemmers-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jakob Demler ", + "CurrySoftware " + ], + "categories": [], + "keywords": [ + "nlp", + "stemming", + "information", + "retrieval", + "language" + ], + "readme": "README.md", + "repository": "https://github.com/CurrySoftware/rust-stemmers", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-hash", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "speed, non-cryptographic hash used in rustc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_hash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-1.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-1.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [ + "hash", + "fxhash", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang-nursery/rustc-hash", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustc-hash", + "version": "2.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "A speedy, non-cryptographic hashing algorithm used by rustc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustc_hash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-2.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "nightly": [], + "rand": [ + "dep:rand", + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-2.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Rust Project Developers" + ], + "categories": [], + "keywords": [ + "hash", + "hasher", + "fxhash", + "rustc" + ], + "readme": "README.md", + "repository": "https://github.com/rust-lang/rustc-hash", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "rustix", + "version": "0.38.40", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bitflags", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.4.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.49", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.161", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": "dev", + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memoffset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serial_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "ioctl", + "no_std" + ], + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.161", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": "libc_errno", + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "linux-raw-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.14", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "general", + "errno", + "ioctl", + "no_std", + "elf" + ], + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", + "registry": null + }, + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.161", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", + "registry": null + }, + { + "name": "errno", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": "libc_errno", + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(windows)", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Networking_WinSock", + "Win32_NetworkManagement_IpHelper", + "Win32_System_Threading" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustix", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/benches/mod.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "all-apis": [ + "event", + "fs", + "io_uring", + "mm", + "mount", + "net", + "param", + "pipe", + "process", + "procfs", + "pty", + "rand", + "runtime", + "shm", + "stdio", + "system", + "termios", + "thread", + "time" + ], + "alloc": [], + "cc": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "std", + "use-libc-auxv" + ], + "event": [], + "fs": [], + "io_uring": [ + "event", + "fs", + "net", + "linux-raw-sys/io_uring" + ], + "itoa": [ + "dep:itoa" + ], + "libc": [ + "dep:libc" + ], + "libc-extra-traits": [ + "libc?/extra_traits" + ], + "libc_errno": [ + "dep:libc_errno" + ], + "linux_4_11": [], + "linux_latest": [ + "linux_4_11" + ], + "mm": [], + "mount": [], + "net": [ + "linux-raw-sys/net", + "linux-raw-sys/netlink", + "linux-raw-sys/if_ether", + "linux-raw-sys/xdp" + ], + "once_cell": [ + "dep:once_cell" + ], + "param": [ + "fs" + ], + "pipe": [], + "process": [ + "linux-raw-sys/prctl" + ], + "procfs": [ + "once_cell", + "itoa", + "fs" + ], + "pty": [ + "itoa", + "fs" + ], + "rand": [], + "runtime": [ + "linux-raw-sys/prctl" + ], + "rustc-dep-of-std": [ + "core", + "rustc-std-workspace-alloc", + "compiler_builtins", + "linux-raw-sys/rustc-dep-of-std", + "bitflags/rustc-dep-of-std", + "compiler_builtins?/rustc-dep-of-std" + ], + "rustc-std-workspace-alloc": [ + "dep:rustc-std-workspace-alloc" + ], + "shm": [ + "fs" + ], + "std": [ + "bitflags/std", + "alloc", + "libc?/std", + "libc_errno?/std", + "libc-extra-traits" + ], + "stdio": [], + "system": [ + "linux-raw-sys/system" + ], + "termios": [], + "thread": [ + "linux-raw-sys/prctl" + ], + "time": [], + "try_close": [], + "use-explicitly-provided-auxv": [], + "use-libc": [ + "libc_errno", + "libc", + "libc-extra-traits" + ], + "use-libc-auxv": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "all-apis" + ], + "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-wasip1" + ] + } + } + }, + "publish": null, + "authors": [ + "Dan Gohman ", + "Jakub Konka " + ], + "categories": [ + "os::unix-apis", + "date-and-time", + "filesystem", + "network-programming" + ], + "keywords": [ + "api", + "file", + "network", + "safe", + "syscall" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/rustix", + "homepage": null, + "documentation": "https://docs.rs/rustix", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rustls", + "version": "0.23.10", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": null, + "description": "Rustls is a modern TLS library written in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "aws-lc-sys" + ], + "target": null, + "registry": null + }, + { + "name": "brotli", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "brotli-decompressor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ahash", + "inline-more" + ], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.16", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "race" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "subtle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.102.4", + "kind": null, + "rename": "webpki", + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zeroize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zlib-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num-bigint", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "aws_lc_rs", + "pem" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tikv-jemallocator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_env = \"msvc\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/examples/internal/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "bogo_shim", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/examples/internal/bogo_shim.rs", + "edition": "2021", + "required-features": [ + "tls12" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "test_ca", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/examples/internal/test_ca.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "api", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/api.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "api_ffdhe", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/api_ffdhe.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bogo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/bogo.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_cert_verifier", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/client_cert_verifier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ech", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/ech.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "key_log_file_env", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/key_log_file_env.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/macros.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "process_provider", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/process_provider.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "server_cert_verifier", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/server_cert_verifier.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unbuffered", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/unbuffered.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/benches/benchmarks.rs", + "edition": "2021", + "required-features": [ + "ring" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aws-lc-rs": [ + "aws_lc_rs" + ], + "aws_lc_rs": [ + "dep:aws-lc-rs", + "webpki/aws_lc_rs" + ], + "brotli": [ + "dep:brotli", + "dep:brotli-decompressor", + "std" + ], + "default": [ + "aws_lc_rs", + "logging", + "std", + "tls12" + ], + "fips": [ + "aws_lc_rs", + "aws-lc-rs?/fips" + ], + "hashbrown": [ + "dep:hashbrown" + ], + "log": [ + "dep:log" + ], + "logging": [ + "log" + ], + "read_buf": [ + "rustversion", + "std" + ], + "ring": [ + "dep:ring", + "webpki/ring" + ], + "rustversion": [ + "dep:rustversion" + ], + "std": [ + "webpki/std", + "pki-types/std", + "once_cell/std" + ], + "tls12": [], + "zlib": [ + "dep:zlib-rs" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "rustls_pki_types", + "rustls_pki_types::*" + ] + }, + "docs": { + "rs": { + "features": [ + "read_buf", + "ring" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/rustls", + "homepage": "https://github.com/rustls/rustls", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rustls-pki-types", + "version": "1.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared types for the rustls PKI ecosystem", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "web-time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "rustls_pki_types", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "server_name", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/tests/server_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dns_name", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/tests/dns_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "key_type", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/tests/key_type.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "std": [ + "alloc" + ], + "web": [ + "web-time" + ], + "web-time": [ + "dep:web-time" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "network-programming", + "data-structures", + "cryptography" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/pki-types", + "homepage": "https://github.com/rustls/pki-types", + "documentation": "https://docs.rs/rustls-pki-types", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "rustls-webpki", + "version": "0.102.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", + "license": "ISC", + "license_file": null, + "description": "Web PKI X.509 Certificate Verification.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aws-lc-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "aws-lc-sys" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "untrusted", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bzip2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.17.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "aws_lc_rs" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "webpki", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "better_tls", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/better_tls.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cert_v1_unsupported", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/cert_v1_unsupported.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cert_without_extensions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/cert_without_extensions.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_auth", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/client_auth.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "client_auth_revocation", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/client_auth_revocation.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crl_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/crl_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "custom_ekus", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/custom_ekus.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "integration", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/integration.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "signatures", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/signatures.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tls_server_certs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/tls_server_certs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "ring?/alloc", + "pki-types/alloc" + ], + "aws_lc_rs": [ + "dep:aws-lc-rs" + ], + "default": [ + "std", + "ring" + ], + "ring": [ + "dep:ring" + ], + "std": [ + "alloc", + "pki-types/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/Cargo.toml", + "metadata": { + "cargo_check_external_types": { + "allowed_external_types": [ + "rustls_pki_types::*", + "rustls_pki_types" + ] + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/webpki", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "rustversion", + "version": "1.0.15", + "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Conditional compilation according to rustc compiler version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.49", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "rustversion", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/compiletest.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_const", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/test_const.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_eval", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/test_eval.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/test_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/build/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::build-utils", + "no-std", + "no-std::no-alloc" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/dtolnay/rustversion", + "homepage": null, + "documentation": "https://docs.rs/rustversion", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "ryu", + "version": "1.0.17", + "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", + "license": "Apache-2.0 OR BSL-1.0", + "license_file": null, + "description": "Fast floating point to string conversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "no-panic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "num_cpus", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ryu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "upstream_benchmark", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/examples/upstream_benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "common_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/common_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_intrinsics_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/d2s_intrinsics_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_table_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/d2s_table_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "d2s_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/d2s_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "exhaustive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/exhaustive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "f2s_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/f2s_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "s2d_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/s2d_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "s2f_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/s2f_test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "no-panic": [ + "dep:no-panic" + ], + "small": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "value-formatting", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "float" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/ryu", + "homepage": null, + "documentation": "https://docs.rs/ryu", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "salsa", + "version": "0.18.0", + "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A generic framework for on-demand, incrementalized computation (experimental)", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", + "dependencies": [ + { + "name": "append-only-vec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arc-swap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dashmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "raw-api" + ], + "target": null, + "registry": null + }, + { + "name": "hashlink", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa-macro-rules", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "salsa-macros", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", + "req": "*", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "codspeed-criterion-compat", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "derive-new", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "expect-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "eyre", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "notify-debouncer-mini", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ordered-float", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "trace" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "salsa", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "calc", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/examples/calc/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "lazy-input", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/examples/lazy-input/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-chain", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-chain.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-custom-clone", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-custom-clone.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-custom-debug", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-custom-debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-dag", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-dag.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-execution-order", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-execution-order.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-from-tracked-fn", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-from-tracked-fn.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-no-duplicates", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-no-duplicates.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-reuse", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-reuse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "accumulate-reuse-workaround", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-reuse-workaround.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compile_fail", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/compile_fail.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cycles", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/cycles.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deletion", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/deletion.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deletion-cascade", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/deletion-cascade.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deletion-drops", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/deletion-drops.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "elided-lifetime-in-tracked-fn", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/elided-lifetime-in-tracked-fn.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expect_reuse_field_x_of_a_tracked_struct_changes_but_fn_depends_on_field_y", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/expect_reuse_field_x_of_a_tracked_struct_changes_but_fn_depends_on_field_y.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "expect_reuse_field_x_of_an_input_changes_but_fn_depends_on_field_y", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/expect_reuse_field_x_of_an_input_changes_but_fn_depends_on_field_y.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hash_collision", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/hash_collision.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hello_world", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/hello_world.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "input_default", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/input_default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "input_field_durability", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/input_field_durability.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "input_setter_preserves_durability", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/input_setter_preserves_durability.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "interned-structs", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/interned-structs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "is_send_sync", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/is_send_sync.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lru", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/lru.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mutate_in_place", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/mutate_in_place.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "override_new_get_set", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/override_new_get_set.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "panic-when-creating-tracked-struct-outside-of-tracked-fn", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/panic-when-creating-tracked-struct-outside-of-tracked-fn.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parallel", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/parallel/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "preverify-struct-with-leaked-data", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/preverify-struct-with-leaked-data.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "preverify-struct-with-leaked-data-2", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/preverify-struct-with-leaked-data-2.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "singleton", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/singleton.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "specify-only-works-if-the-key-is-created-in-the-current-query", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/specify-only-works-if-the-key-is-created-in-the-current-query.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "synthetic_write", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/synthetic_write.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked-struct-id-field-bad-eq", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-id-field-bad-eq.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked-struct-id-field-bad-hash", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-id-field-bad-hash.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked-struct-unchanged-in-new-rev", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-unchanged-in-new-rev.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked-struct-value-field-bad-eq", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-value-field-bad-eq.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked-struct-value-field-not-eq", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-value-field-not-eq.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_constant", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_constant.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_high_durability_dependency", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_high_durability_dependency.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_no_eq", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_no_eq.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_on_input", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_input.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_on_input_with_high_durability", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_input_with_high_durability.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_on_interned", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_interned.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_on_tracked", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_tracked.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_on_tracked_specify", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_tracked_specify.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_read_own_entity", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_read_own_entity.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_read_own_specify", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_read_own_specify.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_fn_return_ref", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_return_ref.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_method", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_method_inherent_return_ref", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_inherent_return_ref.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_method_on_tracked_struct", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_on_tracked_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_method_trait_return_ref", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_trait_return_ref.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_method_with_self_ty", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_with_self_ty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_struct_db1_lt", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_struct_db1_lt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_struct_durability", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_struct_durability.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_struct_recreate_new_revision", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_struct_recreate_new_revision.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_with_intern", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_with_intern.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tracked_with_struct_db", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_with_struct_db.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "warnings", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/warnings/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "compare", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/benches/compare.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "incremental", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/benches/incremental.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Salsa developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/salsa-rs/salsa", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "salsa-macro-rules", + "version": "0.1.0", + "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Declarative macros for the salsa crate", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "salsa_macro_rules", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macro-rules/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macro-rules/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Salsa developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/salsa-rs/salsa", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "salsa-macros", + "version": "0.18.0", + "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Procedural macros for the salsa crate", + "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", + "dependencies": [ + { + "name": "heck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.64", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "visit-mut" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "salsa_macros", + "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macros/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macros/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Salsa developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/salsa-rs/salsa", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "same-file", + "version": "1.0.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "license": "Unlicense/MIT", + "license_file": null, + "description": "A simple crate for determining whether two file paths point to the same file.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "same_file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "is_same_file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/examples/is_same_file.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "is_stderr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/examples/is_stderr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "same", + "file", + "equal", + "inode" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/same-file", + "homepage": "https://github.com/BurntSushi/same-file", + "documentation": "https://docs.rs/same-file", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "schemars", + "version": "0.8.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "license": "MIT", + "license_file": null, + "description": "Generate JSON Schemas from Rust code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": "arrayvec05", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": "arrayvec07", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bigdecimal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": "bigdecimal03", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bigdecimal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": "bigdecimal04", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dyn-clone", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "enumset", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde-1" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": "indexmap2", + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "rust_decimal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.8.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "semver", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smol_str", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": "uuid08", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "uuid1", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "schemars", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_serialization", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/custom_serialization.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_settings", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/custom_settings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "doc_comments", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/doc_comments.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum_repr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/enum_repr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "from_value", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/from_value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "remote_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/remote_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "schemars_attrs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/schemars_attrs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "serde_attrs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/serde_attrs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "validate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/validate.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arrayvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/arrayvec.rs", + "edition": "2021", + "required-features": [ + "arrayvec05", + "arrayvec07" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bound", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/bound.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/bytes.rs", + "edition": "2021", + "required-features": [ + "bytes" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chrono", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/chrono.rs", + "edition": "2021", + "required-features": [ + "chrono" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "crate_alias", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/crate_alias.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decimal", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/decimal.rs", + "edition": "2021", + "required-features": [ + "rust_decimal", + "bigdecimal03", + "bigdecimal04" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/default.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "deprecated", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/deprecated.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dereference", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/dereference.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "docs", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/docs.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "either", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/either.rs", + "edition": "2021", + "required-features": [ + "either" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enum.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_deny_unknown_fields", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enum_deny_unknown_fields.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_repr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enum_repr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enumset", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enumset.rs", + "edition": "2021", + "required-features": [ + "enumset" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "examples", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/examples.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ffi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/ffi.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "flatten", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/flatten.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "from_value", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/from_value.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "indexmap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/indexmap.rs", + "edition": "2021", + "required-features": [ + "indexmap" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "indexmap2", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/indexmap2.rs", + "edition": "2021", + "required-features": [ + "indexmap2" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "inline_subschemas", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/inline_subschemas.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/macro.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "nonzero_ints", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/nonzero_ints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "property_name", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/property_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "range", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/range.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "remote_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/remote_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "remote_derive_generic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/remote_derive_generic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "result", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/result.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "same_name", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/same_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "schema_for_schema", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_for_schema.rs", + "edition": "2021", + "required-features": [ + "impl_json_schema" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "schema_name", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_name.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "schema_settings", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_settings.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "schema_with_enum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_with_enum.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "schema_with_struct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_with_struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "semver", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/semver.rs", + "edition": "2021", + "required-features": [ + "semver" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/skip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smallvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/smallvec.rs", + "edition": "2021", + "required-features": [ + "smallvec" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smol_str", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/smol_str.rs", + "edition": "2021", + "required-features": [ + "smol_str" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/struct.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_additional_properties", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/struct_additional_properties.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/time.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "transparent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/ui.rs", + "edition": "2021", + "required-features": [ + "ui_test" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "url", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/url.rs", + "edition": "2021", + "required-features": [ + "url" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "uuid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/uuid.rs", + "edition": "2021", + "required-features": [ + "uuid08", + "uuid1" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "validate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/validate.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "validate_inner", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/validate_inner.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arrayvec": [ + "arrayvec05" + ], + "arrayvec05": [ + "dep:arrayvec05" + ], + "arrayvec07": [ + "dep:arrayvec07" + ], + "bigdecimal": [ + "bigdecimal03" + ], + "bigdecimal03": [ + "dep:bigdecimal03" + ], + "bigdecimal04": [ + "dep:bigdecimal04" + ], + "bytes": [ + "dep:bytes" + ], + "chrono": [ + "dep:chrono" + ], + "default": [ + "derive" + ], + "derive": [ + "schemars_derive" + ], + "derive_json_schema": [ + "impl_json_schema" + ], + "either": [ + "dep:either" + ], + "enumset": [ + "dep:enumset" + ], + "impl_json_schema": [ + "derive" + ], + "indexmap": [ + "dep:indexmap" + ], + "indexmap1": [ + "indexmap" + ], + "indexmap2": [ + "dep:indexmap2" + ], + "preserve_order": [ + "indexmap" + ], + "raw_value": [ + "serde_json/raw_value" + ], + "rust_decimal": [ + "dep:rust_decimal" + ], + "schemars_derive": [ + "dep:schemars_derive" + ], + "semver": [ + "dep:semver" + ], + "smallvec": [ + "dep:smallvec" + ], + "smol_str": [ + "dep:smol_str" + ], + "ui_test": [], + "url": [ + "dep:url" + ], + "uuid": [ + "uuid08" + ], + "uuid08": [ + "dep:uuid08" + ], + "uuid1": [ + "dep:uuid1" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Graham Esau " + ], + "categories": [ + "encoding" + ], + "keywords": [ + "rust", + "json-schema", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/GREsau/schemars", + "homepage": "https://graham.cool/schemars/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "schemars_derive", + "version": "0.8.21", + "id": "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", + "license": "MIT", + "license_file": null, + "description": "Macros for #[derive(JsonSchema)], for use with schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive_internals", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.29", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "schemars_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars_derive-0.8.21/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars_derive-0.8.21/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Graham Esau " + ], + "categories": [], + "keywords": [ + "rust", + "json-schema", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/GREsau/schemars", + "homepage": "https://graham.cool/schemars/", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "scoped-tls", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Library implementation of the standard library's old `scoped_thread_local!`\nmacro for providing scoped access to thread local storage (TLS) so any type can\nbe stored into TLS.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scoped_tls", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/alexcrichton/scoped-tls", + "homepage": "https://github.com/alexcrichton/scoped-tls", + "documentation": "https://docs.rs/scoped-tls", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.59" + }, + { + "name": "scopeguard", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "scopeguard", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "readme", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/examples/readme.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "use_std" + ], + "use_std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/Cargo.toml", + "metadata": { + "release": { + "no-dev-version": true + } + }, + "publish": null, + "authors": [ + "bluss" + ], + "categories": [ + "rust-patterns", + "no-std" + ], + "keywords": [ + "scope-guard", + "defer", + "panic", + "unwind" + ], + "readme": "README.md", + "repository": "https://github.com/bluss/scopeguard", + "homepage": null, + "documentation": "https://docs.rs/scopeguard/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "seahash", + "version": "4.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "license": "MIT", + "license_file": null, + "description": "A blazingly fast, portable hash function with proven statistical guarantees.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "seahash", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chunking", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/tests/chunking.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "quickchecks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/tests/quickchecks.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/benches/bench.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "use_std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "ticki ", + "Tom Almeida " + ], + "categories": [], + "keywords": [ + "hash", + "hashing", + "checksum", + "checksumming", + "portable" + ], + "readme": "README.md", + "repository": "https://gitlab.redox-os.org/redox-os/seahash", + "homepage": null, + "documentation": "https://docs.rs/seahash", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde", + "version": "1.0.215", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A generic serialization/deserialization framework", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.215", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.215/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.215/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "derive": [ + "serde_derive" + ], + "rc": [], + "serde_derive": [ + "dep:serde_derive" + ], + "std": [], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.215/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "derive", + "rc", + "unstable" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "derive", + "rc" + ] + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std" + ], + "readme": "crates-io.md", + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://docs.rs/serde", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "serde-wasm-bindgen", + "version": "0.6.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "license": "MIT", + "license_file": null, + "description": "Native Serde adapter for wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.193", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.83", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "maplit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.39", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_wasm_bindgen", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "browser", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/tests/browser.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "node", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/tests/node.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "wasm32-unknown-unknown" + ] + } + } + }, + "publish": null, + "authors": [ + "Ingvar Stepanyan " + ], + "categories": [ + "development-tools::ffi", + "wasm", + "encoding" + ], + "keywords": [ + "serde", + "serialization", + "javascript", + "wasm", + "webassembly" + ], + "readme": "README.md", + "repository": "https://github.com/RReverser/serde-wasm-bindgen", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "serde_derive", + "version": "1.0.215", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.81", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "parsing", + "printing", + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive-1.0.215/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "deserialize_in_place": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive-1.0.215/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "no_std", + "derive" + ], + "readme": "crates-io.md", + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://serde.rs/derive.html", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "serde_derive_internals", + "version": "0.29.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "AST representation used by Serde derive macros. Unstable.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "clone-impls", + "derive", + "parsing", + "printing" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_derive_internals", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive_internals-0.29.0/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive_internals-0.29.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [], + "keywords": [ + "serde", + "serialization" + ], + "readme": null, + "repository": "https://github.com/serde-rs/serde", + "homepage": "https://serde.rs", + "documentation": "https://docs.rs/serde_derive_internals", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_json", + "version": "1.0.133", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A JSON serialization file format", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ryu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.194", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_stacker", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/debug.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lexical", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/lexical.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "map", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/map.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/regression.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [ + "serde/alloc" + ], + "arbitrary_precision": [], + "default": [ + "std" + ], + "float_roundtrip": [], + "indexmap": [ + "dep:indexmap" + ], + "preserve_order": [ + "indexmap", + "std" + ], + "raw_value": [], + "std": [ + "memchr/std", + "serde/std" + ], + "unbounded_depth": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "preserve_order", + "raw_value", + "unbounded_depth" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "raw_value" + ] + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "encoding", + "parser-implementations", + "no-std" + ], + "keywords": [ + "json", + "serde", + "serialization" + ], + "readme": "README.md", + "repository": "https://github.com/serde-rs/json", + "homepage": null, + "documentation": "https://docs.rs/serde_json", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_repr", + "version": "0.1.19", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.166", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.100", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_repr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/tests/test.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "serialization", + "integer" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/serde-repr", + "homepage": null, + "documentation": "https://docs.rs/serde_repr", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_spanned", + "version": "0.6.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Serde-compatible spanned Value", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde-untagged", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_spanned", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_spanned-0.6.7/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_spanned-0.6.7/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": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "serde", + "span" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "serde_test", + "version": "1.0.177", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Token De/Serializer for testing De/Serialize implementations", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rc" + ], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_test-1.0.177/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_test-1.0.177/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Erick Tryzelaar ", + "David Tolnay " + ], + "categories": [ + "development-tools::testing" + ], + "keywords": [ + "serde", + "serialization", + "testing", + "dev-dependencies" + ], + "readme": "README.md", + "repository": "https://github.com/serde-rs/test", + "homepage": null, + "documentation": "https://docs.rs/serde_test", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "serde_with", + "version": "3.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Custom de/serialization functions for Rust's serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.20", + "kind": null, + "rename": "chrono_0_4", + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "document-features", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.14.0", + "kind": null, + "rename": "hashbrown_0_14", + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "hashbrown", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": null, + "rename": "hashbrown_0_15", + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.8", + "kind": null, + "rename": "indexmap_1", + "optional": true, + "uses_default_features": false, + "features": [ + "serde-1" + ], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": "indexmap_2", + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": null, + "rename": "schemars_0_8", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_with_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=3.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "~0.3.36", + "kind": null, + "rename": "time_0_3", + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "expect-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "jsonschema", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.18.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "resolve-file" + ], + "target": null, + "registry": null + }, + { + "name": "mime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "rmp-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "schemars", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.16", + "kind": "dev", + "rename": "schemars_0_8", + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde-xml-rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.124", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_yaml", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version-sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "serde_with", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "base64", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/base64.rs", + "edition": "2021", + "required-features": [ + "base64", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "chrono_0_4", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/chrono_0_4.rs", + "edition": "2021", + "required-features": [ + "chrono_0_4", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "derives", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/derives/lib.rs", + "edition": "2021", + "required-features": [ + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hashbrown_0_14", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/hashbrown_0_14.rs", + "edition": "2021", + "required-features": [ + "hashbrown_0_14", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hashbrown_0_15", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/hashbrown_0_15.rs", + "edition": "2021", + "required-features": [ + "hashbrown_0_15", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hex", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/hex.rs", + "edition": "2021", + "required-features": [ + "hex", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "indexmap_1", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/indexmap_1.rs", + "edition": "2021", + "required-features": [ + "indexmap_1", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "indexmap_2", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/indexmap_2.rs", + "edition": "2021", + "required-features": [ + "indexmap_2", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/json.rs", + "edition": "2021", + "required-features": [ + "json", + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/rust.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "schemars_0_8", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/schemars_0_8.rs", + "edition": "2021", + "required-features": [ + "schemars_0_8" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde_as", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/serde_as/lib.rs", + "edition": "2021", + "required-features": [ + "macros" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "time_0_3", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/time_0_3.rs", + "edition": "2021", + "required-features": [ + "macros", + "time_0_3" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/utils.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "version_numbers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/version_numbers.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "with_prefix", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/with_prefix.rs", + "edition": "2021", + "required-features": [ + "macros" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "serde/alloc", + "base64?/alloc", + "chrono_0_4?/alloc", + "hex?/alloc", + "serde_json?/alloc", + "time_0_3?/alloc" + ], + "base64": [ + "dep:base64", + "alloc" + ], + "chrono": [ + "chrono_0_4" + ], + "chrono_0_4": [ + "dep:chrono_0_4" + ], + "default": [ + "std", + "macros" + ], + "guide": [ + "dep:doc-comment", + "dep:document-features", + "macros", + "std" + ], + "hashbrown_0_14": [ + "dep:hashbrown_0_14", + "alloc" + ], + "hashbrown_0_15": [ + "dep:hashbrown_0_15", + "alloc" + ], + "hex": [ + "dep:hex", + "alloc" + ], + "indexmap": [ + "indexmap_1" + ], + "indexmap_1": [ + "dep:indexmap_1", + "alloc" + ], + "indexmap_2": [ + "dep:indexmap_2", + "alloc" + ], + "json": [ + "dep:serde_json", + "alloc" + ], + "macros": [ + "dep:serde_with_macros" + ], + "schemars_0_8": [ + "dep:schemars_0_8", + "std", + "serde_with_macros?/schemars_0_8" + ], + "std": [ + "alloc", + "serde/std", + "chrono_0_4?/clock", + "chrono_0_4?/std", + "indexmap_1?/std", + "indexmap_2?/std", + "time_0_3?/serde-well-known", + "time_0_3?/std" + ], + "time_0_3": [ + "dep:time_0_3" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=docsrs", + "-Zunstable-options", + "--generate-link-to-definition" + ] + } + }, + "release": { + "tag": true, + "tag-message": "{{crate_name}} v{{version}}", + "tag-name": "v{{version}}", + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "[Unreleased]\n\n## [{{version}}] - {{date}}", + "search": "\\[Unreleased\\]" + }, + { + "file": "src/lib.rs", + "replace": "https://docs.rs/serde_with/{{version}}/", + "search": "https://docs\\.rs/serde_with/[\\d.]+/" + }, + { + "file": "README.md", + "replace": "https://docs.rs/serde_with/{{version}}/", + "search": "https://docs\\.rs/serde_with/[\\d.]+/" + } + ] + } + }, + "publish": null, + "authors": [ + "Jonas Bushart", + "Marcin Kaźmierczak" + ], + "categories": [ + "encoding", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "serde", + "utilities", + "serialization", + "deserialization" + ], + "readme": "README.md", + "repository": "https://github.com/jonasbb/serde_with/", + "homepage": null, + "documentation": "https://docs.rs/serde_with/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "serde_with_macros", + "version": "3.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "proc-macro library for serde_with", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "darling", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.20.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra-traits", + "full", + "parsing" + ], + "target": null, + "registry": null + }, + { + "name": "expect-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pretty_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.25", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.80", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "version-sync", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "serde_with_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "apply", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/apply.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiler-messages", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/compiler-messages.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde_as_issue_267", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/serde_as_issue_267.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde_as_issue_538", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/serde_as_issue_538.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "skip_serializing_null", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/skip_serializing_null.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "version_numbers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/version_numbers.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "schemars_0_8": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + }, + "release": { + "tag": false, + "pre-release-replacements": [ + { + "file": "CHANGELOG.md", + "replace": "[Unreleased]\n\n## [{{version}}] - {{date}}", + "search": "\\[Unreleased\\]" + }, + { + "file": "src/lib.rs", + "replace": "https://docs.rs/serde_with/{{version}}/", + "search": "https://docs\\.rs/serde_with/[\\d.]+/" + }, + { + "file": "src/lib.rs", + "replace": "https://docs.rs/serde_with_macros/{{version}}/", + "search": "https://docs\\.rs/serde_with_macros/[\\d.]+/" + } + ] + } + }, + "publish": null, + "authors": [ + "Jonas Bushart" + ], + "categories": [ + "encoding" + ], + "keywords": [ + "serde", + "utilities", + "serialization", + "deserialization" + ], + "readme": "README.md", + "repository": "https://github.com/jonasbb/serde_with/", + "homepage": null, + "documentation": "https://docs.rs/serde_with_macros/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "sha2", + "version": "0.10.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "digest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "dev" + ], + "target": null, + "registry": null + }, + { + "name": "hex-literal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cpufeatures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + }, + { + "name": "sha2-asm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sha2", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/benches/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "asm": [ + "sha2-asm" + ], + "asm-aarch64": [ + "asm" + ], + "compress": [], + "default": [ + "std" + ], + "force-soft": [], + "loongarch64_asm": [], + "oid": [ + "digest/oid" + ], + "sha2-asm": [ + "dep:sha2-asm" + ], + "std": [ + "digest/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "RustCrypto Developers" + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "crypto", + "sha2", + "hash", + "digest" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/hashes", + "homepage": null, + "documentation": "https://docs.rs/sha2", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "sharded-slab", + "version": "0.1.7", + "id": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", + "license": "MIT", + "license_file": null, + "description": "A lock-free concurrent slab.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memory-stats", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "checkpoint" + ], + "target": "cfg(loom)", + "registry": null + }, + { + "name": "loom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "checkpoint" + ], + "target": "cfg(loom)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "sharded_slab", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reserved_bits_leak", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/tests/reserved_bits_leak.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "loom": [ + "dep:loom" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Eliza Weisman " + ], + "categories": [ + "memory-management", + "data-structures", + "concurrency" + ], + "keywords": [ + "slab", + "allocator", + "lock-free", + "atomic" + ], + "readme": "README.md", + "repository": "https://github.com/hawkw/sharded-slab", + "homepage": "https://github.com/hawkw/sharded-slab", + "documentation": "https://docs.rs/sharded-slab/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.42.0" + }, + { + "name": "shellexpand", + "version": "3.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Shell-like expansions in strings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0-pre.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dirs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=4, <6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "os_str_bytes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=5, <7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "shellexpand", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shellexpand-3.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "base-0": [], + "bstr": [ + "dep:bstr" + ], + "default": [ + "base-0", + "tilde" + ], + "dirs": [ + "dep:dirs" + ], + "full": [ + "full-msrv-1-51" + ], + "full-msrv-1-31": [ + "base-0", + "tilde" + ], + "full-msrv-1-51": [ + "full-msrv-1-31", + "path" + ], + "os_str_bytes": [ + "dep:os_str_bytes" + ], + "path": [ + "bstr", + "os_str_bytes" + ], + "tilde": [ + "dirs" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shellexpand-3.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Vladimir Matveev ", + "Ian Jackson " + ], + "categories": [], + "keywords": [ + "strings", + "shell", + "variables" + ], + "readme": "README.md", + "repository": "https://gitlab.com/ijackson/rust-shellexpand", + "homepage": null, + "documentation": "http://docs.rs/shellexpand/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "similar", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "license": "Apache-2.0", + "license_file": null, + "description": "A diff library for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bstr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.14", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.130", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "unicode-segmentation", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.7.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.68", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "similar", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "close-matches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/close-matches.rs", + "edition": "2018", + "required-features": [ + "text" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "large", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/large.rs", + "edition": "2018", + "required-features": [ + "text" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "nonstring", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/nonstring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "original-slices", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/original-slices.rs", + "edition": "2018", + "required-features": [ + "text" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "patience", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/patience.rs", + "edition": "2018", + "required-features": [ + "text", + "inline" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/serde.rs", + "edition": "2018", + "required-features": [ + "text", + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "terminal", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/terminal.rs", + "edition": "2018", + "required-features": [ + "text" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "terminal-inline", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/terminal-inline.rs", + "edition": "2018", + "required-features": [ + "text", + "inline", + "bytes" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "udiff", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/udiff.rs", + "edition": "2018", + "required-features": [ + "text", + "bytes" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bstr": [ + "dep:bstr" + ], + "bytes": [ + "bstr", + "text" + ], + "default": [ + "text" + ], + "inline": [ + "text" + ], + "serde": [ + "dep:serde" + ], + "text": [], + "unicode": [ + "text", + "unicode-segmentation", + "bstr?/unicode", + "bstr?/std" + ], + "unicode-segmentation": [ + "dep:unicode-segmentation" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Armin Ronacher ", + "Pierre-Étienne Meunier ", + "Brandon Williams " + ], + "categories": [], + "keywords": [ + "diff", + "difference", + "patience", + "compare", + "changes" + ], + "readme": "README.md", + "repository": "https://github.com/mitsuhiko/similar", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "siphasher", + "version": "0.3.11", + "id": "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "siphasher", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/siphasher-0.3.11/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "serde": [ + "dep:serde" + ], + "serde_json": [ + "dep:serde_json" + ], + "serde_no_std": [ + "serde/alloc" + ], + "serde_std": [ + "std", + "serde/std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/siphasher-0.3.11/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Frank Denis " + ], + "categories": [ + "algorithms", + "cryptography" + ], + "keywords": [ + "crypto", + "hash", + "siphash" + ], + "readme": "README.md", + "repository": "https://github.com/jedisct1/rust-siphash", + "homepage": "https://docs.rs/siphasher", + "documentation": "https://docs.rs/siphasher", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "smallvec", + "version": "1.13.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "'Small vector' optimization: store up to a small number of items on the stack", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "debugger_test_parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "smallvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "debugger_visualizer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/tests/debugger_visualizer.rs", + "edition": "2018", + "required-features": [ + "debugger_visualizer" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/tests/macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "const_generics": [], + "const_new": [ + "const_generics" + ], + "debugger_visualizer": [], + "drain_filter": [], + "drain_keep_rest": [ + "drain_filter" + ], + "may_dangle": [], + "serde": [ + "dep:serde" + ], + "specialization": [], + "union": [], + "write": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ] + } + } + }, + "publish": null, + "authors": [ + "The Servo Project Developers" + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "small", + "vec", + "vector", + "stack", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-smallvec", + "homepage": null, + "documentation": "https://docs.rs/smallvec/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "spin", + "version": "0.9.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", + "license": "MIT", + "license_file": null, + "description": "Spin-based synchronization primitives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lock_api", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": "lock_api_crate", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "portable-atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "spin", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "debug", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/examples/debug.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "mutex", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/benches/mutex.rs", + "edition": "2015", + "required-features": [ + "ticket_mutex" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "barrier": [ + "mutex" + ], + "default": [ + "lock_api", + "mutex", + "spin_mutex", + "rwlock", + "once", + "lazy", + "barrier" + ], + "fair_mutex": [ + "mutex" + ], + "lazy": [ + "once" + ], + "lock_api": [ + "lock_api_crate" + ], + "lock_api_crate": [ + "dep:lock_api_crate" + ], + "mutex": [], + "once": [], + "portable-atomic": [ + "dep:portable-atomic" + ], + "portable_atomic": [ + "portable-atomic" + ], + "rwlock": [], + "spin_mutex": [ + "mutex" + ], + "std": [], + "ticket_mutex": [ + "mutex" + ], + "use_ticket_mutex": [ + "mutex", + "ticket_mutex" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Mathijs van de Nes ", + "John Ericson ", + "Joshua Barretto " + ], + "categories": [], + "keywords": [ + "spinlock", + "mutex", + "rwlock" + ], + "readme": "README.md", + "repository": "https://github.com/mvdnes/spin-rs.git", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.38" + }, + { + "name": "stable_deref_trait", + "version": "1.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "stable_deref_trait", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stable_deref_trait-1.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stable_deref_trait-1.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Robert Grosse " + ], + "categories": [ + "memory-management", + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/storyyeller/stable_deref_trait", + "homepage": null, + "documentation": "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "static_assertions", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Compile-time assertions to ensure that invariants are met.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "static_assertions", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/static_assertions-1.1.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/static_assertions-1.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nikolai Vazquez" + ], + "categories": [ + "no-std", + "rust-patterns", + "development-tools::testing" + ], + "keywords": [ + "assert", + "static", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/nvzqz/static-assertions-rs", + "homepage": "https://github.com/nvzqz/static-assertions-rs", + "documentation": "https://docs.rs/static_assertions/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "strip-ansi-escapes", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", + "license": "Apache-2.0/MIT", + "license_file": null, + "description": "Strip ANSI escape sequences from byte streams.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "vte", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "strip_ansi_escapes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strip-ansi-escapes-0.2.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "strip-escapes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strip-ansi-escapes-0.2.0/examples/strip-escapes.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strip-ansi-escapes-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Ted Mielczarek " + ], + "categories": [], + "keywords": [ + "ansi", + "escape", + "terminal" + ], + "readme": "README.md", + "repository": "https://github.com/luser/strip-ansi-escapes", + "homepage": "https://github.com/luser/strip-ansi-escapes", + "documentation": "https://docs.rs/strip-ansi-escapes", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "strsim", + "version": "0.10.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", + "license": "MIT", + "license_file": null, + "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "strsim", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/tests/lib.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/benches/benches.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Danny Guo " + ], + "categories": [], + "keywords": [ + "string", + "similarity", + "Hamming", + "Levenshtein", + "Jaro" + ], + "readme": "README.md", + "repository": "https://github.com/dguo/strsim-rs", + "homepage": "https://github.com/dguo/strsim-rs", + "documentation": "https://docs.rs/strsim/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "strsim", + "version": "0.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "license": "MIT", + "license_file": null, + "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "strsim", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "lib", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/tests/lib.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/benches/benches.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Danny Guo ", + "maxbachmann " + ], + "categories": [ + "text-processing" + ], + "keywords": [ + "string", + "similarity", + "Hamming", + "Levenshtein", + "Jaro" + ], + "readme": "README.md", + "repository": "https://github.com/rapidfuzz/strsim-rs", + "homepage": "https://github.com/rapidfuzz/strsim-rs", + "documentation": "https://docs.rs/strsim/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "strum", + "version": "0.26.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "license": "MIT", + "license_file": null, + "description": "Helpful macros for working with enums and strings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "phf", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "strum_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "strum_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "strum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum-0.26.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "std" + ], + "derive": [ + "strum_macros" + ], + "phf": [ + "dep:phf" + ], + "std": [], + "strum_macros": [ + "dep:strum_macros" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum-0.26.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "derive" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Peter Glotfelty " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parsing" + ], + "keywords": [ + "enum", + "string", + "macros", + "proc-macros" + ], + "readme": "README.md", + "repository": "https://github.com/Peternator7/strum", + "homepage": "https://github.com/Peternator7/strum", + "documentation": "https://docs.rs/strum", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "strum_macros", + "version": "0.26.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", + "license": "MIT", + "license_file": null, + "description": "Helpful macros for working with enums and strings", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "heck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "parsing", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "strum", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "strum_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum_macros-0.26.4/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum_macros-0.26.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Peter Glotfelty " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parsing" + ], + "keywords": [ + "enum", + "string", + "macros", + "proc-macros" + ], + "readme": "README.md", + "repository": "https://github.com/Peternator7/strum", + "homepage": "https://github.com/Peternator7/strum", + "documentation": "https://docs.rs/strum", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "subtle", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", + "license": "BSD-3-Clause", + "license_file": null, + "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "subtle", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/subtle-2.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "mod", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/subtle-2.5.0/tests/mod.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "const-generics": [], + "core_hint_black_box": [], + "default": [ + "std", + "i128" + ], + "i128": [], + "nightly": [], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/subtle-2.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Isis Lovecruft ", + "Henry de Valence " + ], + "categories": [ + "cryptography", + "no-std" + ], + "keywords": [ + "cryptography", + "crypto", + "constant-time", + "utilities" + ], + "readme": "README.md", + "repository": "https://github.com/dalek-cryptography/subtle", + "homepage": "https://dalek.rs/", + "documentation": "https://docs.rs/subtle", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "syn", + "version": "1.0.109", + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for Rust source code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.46", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking" + ], + "target": null, + "registry": null + }, + { + "name": "syn-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syn", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/regression.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_asyncness", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_asyncness.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attribute", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_attribute.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive_input", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_derive_input.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_expr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_generics.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_grouping", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_grouping.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ident", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_ident.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_item.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iterators", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_iterators.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_lit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_meta", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_meta.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_buffer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_parse_buffer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_parse_stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_pat", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_pat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_path.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_precedence.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_receiver", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_receiver.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_round_trip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_round_trip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_shebang", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_shebang.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_should_parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_should_parse.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_stmt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_stmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_token_trees", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_token_trees.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ty", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_ty.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_visibility", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_visibility.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zzz_stable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/zzz_stable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/benches/file.rs", + "edition": "2018", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/benches/rust.rs", + "edition": "2018", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parser-implementations" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/syn", + "homepage": null, + "documentation": "https://docs.rs/syn", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "syn", + "version": "2.0.87", + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Parser for Rust source code", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.83", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-ident", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn-test-suite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "termcolor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "reqwest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "blocking" + ], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "tar", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.16", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(miri))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "syn", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "regression", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/regression.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_asyncness", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_asyncness.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_attribute", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_attribute.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_derive_input", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_derive_input.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_grouping", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_grouping.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ident", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_ident.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_item", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_item.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_iterators", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_iterators.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_lit.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_meta", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_meta.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_buffer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_parse_buffer.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_quote", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_parse_quote.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_parse_stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_parse_stream.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_pat", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_pat.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_precedence", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_precedence.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_receiver", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_receiver.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_round_trip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_round_trip.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_shebang", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_shebang.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_stmt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_stmt.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_token_trees", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_token_trees.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_ty", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_ty.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_unparenthesize", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_unparenthesize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_visibility", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_visibility.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zzz_stable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/zzz_stable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "file", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/benches/file.rs", + "edition": "2021", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "rust", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/benches/rust.rs", + "edition": "2021", + "required-features": [ + "full", + "parsing" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "clone-impls": [], + "default": [ + "derive", + "parsing", + "printing", + "clone-impls", + "proc-macro" + ], + "derive": [], + "extra-traits": [], + "fold": [], + "full": [], + "parsing": [], + "printing": [ + "dep:quote" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "quote?/proc-macro" + ], + "test": [ + "syn-test-suite/all-features" + ], + "visit": [], + "visit-mut": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--generate-link-to-definition", + "--extend-css=src/gen/token.css" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "full", + "visit", + "visit-mut", + "fold", + "extra-traits" + ] + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "parser-implementations" + ], + "keywords": [ + "macros", + "syn" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/syn", + "homepage": null, + "documentation": "https://docs.rs/syn", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "synstructure", + "version": "0.13.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "license": "MIT", + "license_file": null, + "description": "Helper methods and macros for custom derives", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive", + "parsing", + "printing", + "clone-impls", + "visit", + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure_test_traits", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "synstructure", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/synstructure-0.13.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [ + "proc-macro" + ], + "proc-macro": [ + "proc-macro2/proc-macro", + "syn/proc-macro", + "quote/proc-macro" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/synstructure-0.13.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Nika Layzell " + ], + "categories": [], + "keywords": [ + "syn", + "macros", + "derive", + "expand_substructure", + "enum" + ], + "readme": "README.md", + "repository": "https://github.com/mystor/synstructure", + "homepage": null, + "documentation": "https://docs.rs/synstructure", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tempfile", + "version": "3.14.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A library for managing temporary files and directories.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fastrand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.19.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.38.39", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fs" + ], + "target": "cfg(any(unix, target_os = \"wasi\"))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.52, <=0.59", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Storage_FileSystem", + "Win32_Foundation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tempfile", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "env", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/env.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "namedtempfile", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/namedtempfile.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "spooled", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/spooled.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tempdir", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/tempdir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tempfile", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/tempfile.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Steven Allen ", + "The Rust Project Developers", + "Ashley Mannix ", + "Jason White " + ], + "categories": [], + "keywords": [ + "tempfile", + "tmpfile", + "filesystem" + ], + "readme": "README.md", + "repository": "https://github.com/Stebalien/tempfile", + "homepage": "https://stebalien.com/projects/tempfile-rs/", + "documentation": "https://docs.rs/tempfile", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "terminal_size", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Gets the size of your Linux or Windows terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.38.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "termios" + ], + "target": "cfg(not(windows))", + "registry": null + }, + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.59.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_System_Console" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "terminal_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminal_size-0.4.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "get_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminal_size-0.4.0/examples/get_size.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminal_size-0.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Chin " + ], + "categories": [], + "keywords": [ + "terminal", + "console", + "term", + "size", + "dimensions" + ], + "readme": "README.md", + "repository": "https://github.com/eminence/terminal-size", + "homepage": null, + "documentation": "https://docs.rs/terminal_size", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "terminfo", + "version": "0.8.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", + "license": "WTFPL", + "license_file": null, + "description": "Terminal information.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "dirs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fnv", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "phf", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "phf_codegen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "terminfo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/examples/parse.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "set_attributes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/examples/set_attributes.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "simple", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/examples/simple.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "meh. " + ], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "terminal", + "terminfo", + "termcap", + "term" + ], + "readme": "README.md", + "repository": "https://github.com/meh/rust-terminfo", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "termtree", + "version": "0.4.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1", + "license": "MIT", + "license_file": null, + "description": "Visualize tree-like data on the command-line", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "termtree", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/termtree-0.4.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tree", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/termtree-0.4.1/examples/tree.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/termtree-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/rust-cli/termtree/compare/{{tag_name}}...HEAD", + "search": "" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface", + "visualization" + ], + "keywords": [ + "cli", + "tree", + "dag" + ], + "readme": "README.md", + "repository": "https://github.com/rust-cli/termtree", + "homepage": "https://github.com/rust-cli/termtree", + "documentation": "https://docs.rs/termtree", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "test-case", + "version": "3.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "license": "MIT", + "license_file": null, + "description": "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "test-case-macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "insta", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "test_case", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-3.3.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "acceptance", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-3.3.1/tests/acceptance_tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "regex": [ + "dep:regex" + ], + "with-regex": [ + "regex", + "test-case-macros/with-regex" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-3.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marcin Sas-Szymanski ", + "Wojciech Polak ", + "Łukasz Biel " + ], + "categories": [ + "development-tools", + "development-tools::testing" + ], + "keywords": [ + "test", + "case", + "tests", + "unit", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/frondeus/test-case", + "homepage": null, + "documentation": "https://docs.rs/test-case", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "test-case-core", + "version": "3.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1", + "license": "MIT", + "license_file": null, + "description": "Provides core functionality for parsing #[test_case(...)] procedural macro attribute for generating parametrized test cases easily", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "test_case_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-core-3.3.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "with-regex": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-core-3.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marcin Sas-Szymanski ", + "Wojciech Polak ", + "Łukasz Biel " + ], + "categories": [ + "development-tools", + "development-tools::testing" + ], + "keywords": [ + "test", + "case", + "tests", + "unit", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/frondeus/test-case", + "homepage": null, + "documentation": "https://docs.rs/test-case", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "test-case-macros", + "version": "3.3.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1", + "license": "MIT", + "license_file": null, + "description": "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full", + "extra-traits", + "parsing" + ], + "target": null, + "registry": null + }, + { + "name": "test-case-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "test_case_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-macros-3.3.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": true + } + ], + "features": { + "with-regex": [ + "test-case-core/with-regex" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-macros-3.3.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Marcin Sas-Szymanski ", + "Wojciech Polak ", + "Łukasz Biel " + ], + "categories": [ + "development-tools", + "development-tools::testing" + ], + "keywords": [ + "test", + "case", + "tests", + "unit", + "testing" + ], + "readme": "README.md", + "repository": "https://github.com/frondeus/test-case", + "homepage": null, + "documentation": "https://docs.rs/test-case", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "thiserror", + "version": "1.0.67", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "derive(Error)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.67", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.73", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thiserror", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_deprecated", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_deprecated.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_display", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_display.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_from", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_from.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lints", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_lints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_option", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_option.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_source.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_transparent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "error", + "error-handling", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": "https://docs.rs/thiserror", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror", + "version": "2.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "derive(Error)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "thiserror-impl", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=2.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.73", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ref-cast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.81", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thiserror", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compiletest", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/compiletest.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_backtrace", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_backtrace.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_deprecated", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_deprecated.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_display", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_display.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_error.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_expr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_expr.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_from", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_from.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_generics", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_generics.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_lints", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_lints.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_option", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_option.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_path", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_path.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_source", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_source.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test_transparent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_transparent.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "rust-patterns" + ], + "keywords": [ + "error", + "error-handling", + "derive" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": "https://docs.rs/thiserror", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror-impl", + "version": "1.0.67", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Implementation detail of the `thiserror` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "thiserror_impl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-1.0.67/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-1.0.67/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thiserror-impl", + "version": "2.0.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Implementation detail of the `thiserror` crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.74", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.35", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.87", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "thiserror_impl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-2.0.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-2.0.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/dtolnay/thiserror", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.61" + }, + { + "name": "thread_local", + "version": "1.1.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Per-object thread-local storage", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "thread_local", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thread_local-1.1.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "thread_local", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thread_local-1.1.8/benches/thread_local.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "nightly": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thread_local-1.1.8/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Amanieu d'Antras " + ], + "categories": [], + "keywords": [ + "thread_local", + "concurrent", + "thread" + ], + "readme": "README.md", + "repository": "https://github.com/Amanieu/thread_local-rs", + "homepage": null, + "documentation": "https://docs.rs/thread_local/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.59" + }, + { + "name": "tikv-jemalloc-sys", + "version": "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", + "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Rust FFI bindings to jemalloc\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.13", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tikv_jemalloc_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "malloc_conf_empty", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/tests/malloc_conf_empty.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "malloc_conf_set", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/tests/malloc_conf_set.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unprefixed_malloc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/tests/unprefixed_malloc.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "background_threads": [ + "background_threads_runtime_support" + ], + "background_threads_runtime_support": [], + "debug": [], + "default": [ + "background_threads_runtime_support" + ], + "disable_cache_oblivious": [], + "disable_initial_exec_tls": [], + "profiling": [], + "stats": [], + "unprefixed_malloc_on_supported_platforms": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--cfg", + "jemallocator_docs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Gonzalo Brito Gadeschi ", + "The TiKV Project Developers" + ], + "categories": [], + "keywords": [ + "allocator", + "jemalloc" + ], + "readme": "README.md", + "repository": "https://github.com/tikv/jemallocator", + "homepage": "https://github.com/tikv/jemallocator", + "documentation": "https://docs.rs/tikv-jemallocator-sys", + "edition": "2018", + "links": "jemalloc", + "default_run": null, + "rust_version": "1.71.0" + }, + { + "name": "tikv-jemallocator", + "version": "0.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "A Rust allocator backed by jemalloc\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tikv-jemalloc-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "paste", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tikv_jemallocator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "background_thread_defaults", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/background_thread_defaults.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "background_thread_enabled", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/background_thread_enabled.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ffi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/ffi.rs", + "edition": "2018", + "required-features": [ + "stats" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "grow_in_place", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/grow_in_place.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "malloctl", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/malloctl.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "shrink_in_place", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/shrink_in_place.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/smoke.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "smoke_ffi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/smoke_ffi.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "usable_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/usable_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "roundtrip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/benches/roundtrip.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc_trait": [], + "background_threads": [ + "tikv-jemalloc-sys/background_threads" + ], + "background_threads_runtime_support": [ + "tikv-jemalloc-sys/background_threads_runtime_support" + ], + "debug": [ + "tikv-jemalloc-sys/debug" + ], + "default": [ + "background_threads_runtime_support" + ], + "disable_initial_exec_tls": [ + "tikv-jemalloc-sys/disable_initial_exec_tls" + ], + "profiling": [ + "tikv-jemalloc-sys/profiling" + ], + "stats": [ + "tikv-jemalloc-sys/stats" + ], + "unprefixed_malloc_on_supported_platforms": [ + "tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [], + "rustdoc-args": [ + "--cfg", + "jemallocator_docs" + ] + } + } + }, + "publish": null, + "authors": [ + "Alex Crichton ", + "Gonzalo Brito Gadeschi ", + "Simon Sapin ", + "Steven Fackler ", + "The TiKV Project Developers" + ], + "categories": [ + "memory-management", + "api-bindings" + ], + "keywords": [ + "allocator", + "jemalloc" + ], + "readme": "README.md", + "repository": "https://github.com/tikv/jemallocator", + "homepage": "https://github.com/tikv/jemallocator", + "documentation": "https://docs.rs/jemallocator", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tinystr", + "version": "0.7.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "license": "Unicode-3.0", + "license_file": null, + "description": "A small ASCII-only bounded length string representation.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "displaydoc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "zerovec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinystr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "construct", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/construct.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "overview", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/overview.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/read.rs", + "edition": "2021", + "required-features": [ + "bench" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/serde.rs", + "edition": "2021", + "required-features": [ + "bench", + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "bench": [], + "databake": [ + "dep:databake" + ], + "default": [ + "alloc" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "zerovec": [ + "dep:zerovec" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "data-structures" + ], + "keywords": [ + "string", + "str", + "small", + "tiny", + "no_std" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "tinytemplate", + "version": "1.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Simple, lightweight template engine", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinytemplate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinytemplate-1.2.1/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinytemplate-1.2.1/benches/benchmarks.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinytemplate-1.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brook Heisler " + ], + "categories": [ + "template-engine" + ], + "keywords": [ + "template", + "html" + ], + "readme": "README.md", + "repository": "https://github.com/bheisler/TinyTemplate", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tinyvec", + "version": "1.6.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0", + "license": "Zlib OR Apache-2.0 OR MIT", + "license_file": null, + "description": "`tinyvec` provides 100% safe vec-like data structures.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tinyvec_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinyvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "arrayvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/tests/arrayvec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tinyvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/tests/tinyvec.rs", + "edition": "2018", + "required-features": [ + "alloc", + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/benches/macros.rs", + "edition": "2018", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "smallvec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/benches/smallvec.rs", + "edition": "2018", + "required-features": [ + "alloc", + "real_blackbox" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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" + ] + } + }, + "publish": null, + "authors": [ + "Lokathor " + ], + "categories": [ + "data-structures", + "no-std" + ], + "keywords": [ + "vec", + "no_std", + "no-std" + ], + "readme": "README.md", + "repository": "https://github.com/Lokathor/tinyvec", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tinyvec_macros", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "license": "MIT OR Apache-2.0 OR Zlib", + "license_file": null, + "description": "Some macros for tiny containers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tinyvec_macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec_macros-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec_macros-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Soveu " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/Soveu/tinyvec_macros", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "toml", + "version": "0.8.19", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "license": "MIT OR Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.7", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_edit", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.199", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "decode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/examples/decode.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "enum_external", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/examples/enum_external.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "toml2json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/examples/toml2json.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/decoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/decoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/encoder.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/encoder_compliance.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/testsuite/main.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [ + "dep:toml_edit", + "toml_edit?/display" + ], + "indexmap": [ + "dep:indexmap" + ], + "parse": [ + "dep:toml_edit", + "toml_edit?/parse" + ], + "preserve_order": [ + "indexmap" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/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": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "toml_datetime", + "version": "0.6.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A TOML-compatible datetime type", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_datetime", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_datetime-0.6.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_datetime-0.6.8/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": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Alex Crichton " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": "https://github.com/toml-rs/toml", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "toml_edit", + "version": "0.22.20", + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Yet another format-preserving TOML parser.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indexmap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "kstring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "max_inline" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.145", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_spanned", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "serde" + ], + "target": null, + "registry": null + }, + { + "name": "toml_datetime", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winnow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.18", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "libtest-mimic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.116", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "toml-test-harness", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "toml_edit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "visit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/examples/visit.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "decoder_compliance", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/decoder_compliance.rs", + "edition": "2021", + "required-features": [ + "parse" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "encoder_compliance", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/encoder_compliance.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "invalid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/invalid.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "testsuite", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/testsuite/main.rs", + "edition": "2021", + "required-features": [ + "parse", + "display" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "parse", + "display" + ], + "display": [], + "parse": [ + "dep:winnow" + ], + "perf": [ + "dep:kstring" + ], + "serde": [ + "dep:serde", + "toml_datetime/serde", + "dep:serde_spanned" + ], + "unbounded": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "release": { + "tag-name": "v{{version}}", + "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": "" + } + ] + } + }, + "publish": null, + "authors": [ + "Andronik Ordian ", + "Ed Page " + ], + "categories": [ + "encoding", + "parser-implementations", + "parsing", + "config" + ], + "keywords": [ + "encoding", + "toml" + ], + "readme": "README.md", + "repository": "https://github.com/toml-rs/toml", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65" + }, + { + "name": "tracing", + "version": "0.1.40", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "license": "MIT", + "license_file": null, + "description": "Application-level tracing for Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "pin-project-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-attributes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.27", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.32", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.21", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enabled", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/enabled.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "event", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filter_caching_is_lexically_scoped", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filter_caching_is_lexically_scoped.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_are_not_reevaluated_for_the_same_span", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filters_are_not_reevaluated_for_the_same_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_are_reevaluated_for_different_call_sites", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filters_are_reevaluated_for_different_call_sites.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filters_dont_leak", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filters_dont_leak.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "future_send", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/future_send.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instrument", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/instrument.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macro_imports", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/macro_imports.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros_incompatible_concat", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/macros_incompatible_concat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "max_level_hint", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/max_level_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple_max_level_hints", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/multiple_max_level_hints.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "no_subscriber", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/no_subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "register_callsite_deadlock", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/register_callsite_deadlock.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "scoped_clobbers_default", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/scoped_clobbers_default.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "span", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "subscriber", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "baseline", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/baseline.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch_get_clone", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/dispatch_get_clone.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch_get_ref", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/dispatch_get_ref.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "empty_span", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/empty_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "enter_span", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/enter_span.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "event", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "shared", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/shared.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_fields", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/span_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_no_fields", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/span_no_fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "span_repeated", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/span_repeated.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "async-await": [], + "attributes": [ + "tracing-attributes" + ], + "default": [ + "std", + "attributes" + ], + "log": [ + "dep:log" + ], + "log-always": [ + "log" + ], + "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": [], + "std": [ + "tracing-core/std" + ], + "tracing-attributes": [ + "dep:tracing-attributes" + ], + "valuable": [ + "tracing-core/valuable" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tracing_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tracing_unstable" + ] + } + } + }, + "publish": null, + "authors": [ + "Eliza Weisman ", + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous", + "no-std" + ], + "keywords": [ + "logging", + "tracing", + "metrics", + "async" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "tracing-attributes", + "version": "0.1.27", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", + "license": "MIT", + "license_file": null, + "description": "Procedural macro attributes for automatically instrumenting functions.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.60", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "full", + "parsing", + "printing", + "visit-mut", + "clone-impls", + "extra-traits", + "proc-macro" + ], + "target": null, + "registry": null + }, + { + "name": "async-trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.67", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "env-filter" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.64", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "tracing_attributes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "async_fn", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/async_fn.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "destructuring", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/destructuring.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "err", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/err.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fields", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/fields.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "follows_from", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/follows_from.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "instrument", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/instrument.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "levels", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/levels.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "names", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/names.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "parents", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/parents.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ret", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/ret.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "targets", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/targets.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/ui.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "async-await": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Tokio Contributors ", + "Eliza Weisman ", + "David Barsky " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "macro", + "instrument", + "log" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "tracing-core", + "version": "0.1.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "license": "MIT", + "license_file": null, + "description": "Core primitives for application-level tracing.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "valuable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(tracing_unstable)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "dispatch", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/dispatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "global_dispatch", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/global_dispatch.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "local_dispatch_before_init", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/local_dispatch_before_init.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "macros", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/macros.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "std", + "valuable/std" + ], + "once_cell": [ + "dep:once_cell" + ], + "std": [ + "once_cell" + ], + "valuable": [ + "dep:valuable" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustc-args": [ + "--cfg", + "tracing_unstable" + ], + "rustdoc-args": [ + "--cfg", + "docsrs", + "--cfg", + "tracing_unstable" + ] + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "profiling" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "tracing-flame", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", + "license": "MIT", + "license_file": null, + "description": "Tracing layer for creating flamegraphs from span timings\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "lazy_static", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "registry", + "fmt" + ], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_flame", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "collapsed", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/tests/collapsed.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "concurrent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/tests/concurrent.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "smallvec" + ], + "smallvec": [ + "tracing-subscriber/smallvec" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jane Lusby ", + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "tracing", + "subscriber", + "flamegraph", + "profiling" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.42.0" + }, + { + "name": "tracing-indicatif", + "version": "0.3.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", + "license": "MIT", + "license_file": null, + "description": "Tracing layer that automatically creates and manages progress bars for active spans.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "indicatif", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "in_memory" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.37", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.30", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "console", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "dialoguer", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.26", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "std_rng" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.25.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_indicatif", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "build_console", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/build_console.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "child_spans", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/child_spans.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "dialoguer_suspend", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/dialoguer_suspend.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/filter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "multithread", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/multithread.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "per_span_style", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/per_span_style.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "progress_bar", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/progress_bar.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stdout_stderr_printing", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/stdout_stderr_printing.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "cli", + "progress", + "progressbar", + "progress-bar", + "tracing" + ], + "readme": "README.md", + "repository": "https://github.com/emersonford/tracing-indicatif", + "homepage": null, + "documentation": "https://docs.rs/tracing-indicatif", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "tracing-log", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", + "license": "MIT", + "license_file": null, + "description": "Provides compatibility between `tracing` and the `log` crate.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "ahash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lru", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "log_tracer", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/tests/log_tracer.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reexport_log_crate", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/tests/reexport_log_crate.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "logging", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/benches/logging.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ahash": [ + "dep:ahash" + ], + "default": [ + "log-tracer", + "std" + ], + "interest-cache": [ + "lru", + "ahash" + ], + "log-tracer": [], + "lru": [ + "dep:lru" + ], + "std": [ + "log/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "log" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "tracing-subscriber", + "version": "0.3.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "license": "MIT", + "license_file": null, + "description": "Utilities for implementing and composing `tracing` subscribers.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "chrono", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "clock", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "matchers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nu-ansi-term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.46.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "parking_lot", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.6.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "unicode-case", + "unicode-perl" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.140", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.82", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sharded-slab", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "thread_local", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "formatting" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.30", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "log-tracer", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.6", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "formatting", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "rt", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.35", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std-future", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "valuable-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(tracing_unstable)", + "registry": null + }, + { + "name": "valuable", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": "valuable_crate", + "optional": true, + "uses_default_features": false, + "features": [], + "target": "cfg(tracing_unstable)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_subscriber", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "cached_layer_filters_dont_break_other_layers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/cached_layer_filters_dont_break_other_layers.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "duplicate_spans", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/duplicate_spans.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "env_filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/env_filter/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "event_enabling", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/event_enabling.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "field_filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/field_filter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "filter_log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/filter_log.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "fmt_max_level_hint", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/fmt_max_level_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hinted_layer_filters_dont_break_other_layers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/hinted_layer_filters_dont_break_other_layers.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "layer_filter_interests_are_cached", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/layer_filter_interests_are_cached.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "layer_filters", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/layer_filters/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "multiple_layer_filter_interests_cached", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/multiple_layer_filter_interests_cached.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "option", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/option.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "option_filter_interest_caching", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/option_filter_interest_caching.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "registry_max_level_hint", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/registry_max_level_hint.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "registry_with_subscriber", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/registry_with_subscriber.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "reload", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/reload.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "same_len_filters", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/same_len_filters.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unhinted_layer_filters_dont_break_other_layers", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/unhinted_layer_filters_dont_break_other_layers.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utils", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/utils.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "vec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/vec.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "vec_subscriber_filter_interests_cached", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/vec_subscriber_filter_interests_cached.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "enter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/enter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "filter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/filter.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "filter_log", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/filter_log.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "fmt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/fmt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "ansi": [ + "fmt", + "nu-ansi-term" + ], + "chrono": [ + "dep:chrono" + ], + "default": [ + "smallvec", + "fmt", + "ansi", + "tracing-log", + "std" + ], + "env-filter": [ + "matchers", + "regex", + "once_cell", + "tracing", + "std", + "thread_local" + ], + "fmt": [ + "registry", + "std" + ], + "json": [ + "tracing-serde", + "serde", + "serde_json" + ], + "local-time": [ + "time/local-offset" + ], + "matchers": [ + "dep:matchers" + ], + "nu-ansi-term": [ + "dep:nu-ansi-term" + ], + "once_cell": [ + "dep:once_cell" + ], + "parking_lot": [ + "dep:parking_lot" + ], + "regex": [ + "dep:regex" + ], + "registry": [ + "sharded-slab", + "thread_local", + "std" + ], + "serde": [ + "dep:serde" + ], + "serde_json": [ + "dep:serde_json" + ], + "sharded-slab": [ + "dep:sharded-slab" + ], + "smallvec": [ + "dep:smallvec" + ], + "std": [ + "alloc", + "tracing-core/std" + ], + "thread_local": [ + "dep:thread_local" + ], + "time": [ + "dep:time" + ], + "tracing": [ + "dep:tracing" + ], + "tracing-log": [ + "dep:tracing-log" + ], + "tracing-serde": [ + "dep:tracing-serde" + ], + "valuable": [ + "tracing-core/valuable", + "valuable_crate", + "valuable-serde", + "tracing-serde/valuable" + ], + "valuable-serde": [ + "dep:valuable-serde" + ], + "valuable_crate": [ + "dep:valuable_crate" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Eliza Weisman ", + "David Barsky ", + "Tokio Contributors " + ], + "categories": [ + "development-tools::debugging", + "development-tools::profiling", + "asynchronous" + ], + "keywords": [ + "logging", + "tracing", + "metrics", + "subscriber" + ], + "readme": "README.md", + "repository": "https://github.com/tokio-rs/tracing", + "homepage": "https://tokio.rs", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "tracing-tree", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A Tracing Layer which prints a tree of spans and events.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "nu-ansi-term", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.50.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.20", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "formatting", + "local-offset" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing-log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std", + "log-tracer" + ], + "target": null, + "registry": null + }, + { + "name": "tracing-subscriber", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "registry", + "fmt", + "std" + ], + "target": null, + "registry": null + }, + { + "name": "futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tracing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ui_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "tracing_tree", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic_non_verbose", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic_non_verbose.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic_verbose_entry", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic_verbose_entry.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic_verbose_exit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic_verbose_exit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "concurrent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/concurrent.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "concurrent_eager", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/concurrent_eager.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "concurrent_verbose", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/concurrent_verbose.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "deferred", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/deferred.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "no-indent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/no-indent.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "quiet", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/quiet.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stderr", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/stderr.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "wraparound", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/wraparound.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "format_time", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/tests/format_time.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "recursive_event", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/tests/recursive_event.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "ui", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/tests/ui.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [ + "tracing-log" + ], + "time": [ + "dep:time" + ], + "tracing-log": [ + "dep:tracing-log" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "David Barsky ", + "Nathan Whitaker", + "Oli Scherer " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/davidbarsky/tracing-tree", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "typed-arena", + "version": "2.0.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", + "license": "MIT", + "license_file": null, + "description": "The arena, a fast but limited type of allocator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "typed_arena", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typed-arena-2.0.2/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typed-arena-2.0.2/benches/benches.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typed-arena-2.0.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The typed-arena developers" + ], + "categories": [ + "memory-management", + "no-std" + ], + "keywords": [ + "arena" + ], + "readme": "./README.md", + "repository": "https://github.com/SimonSapin/rust-typed-arena", + "homepage": null, + "documentation": "https://docs.rs/typed-arena", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "typenum", + "version": "1.17.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "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.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "scale-info", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "typenum", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/tests/test.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-main", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/build/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "const-generics": [], + "force_unix_path_separator": [], + "i128": [], + "no_std": [], + "scale-info": [ + "dep:scale-info" + ], + "scale_info": [ + "scale-info/derive" + ], + "strict": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "i128", + "const-generics" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + }, + "playground": { + "features": [ + "i128", + "const-generics" + ] + } + }, + "publish": null, + "authors": [ + "Paho Lurie-Gregg ", + "Andre Bogus " + ], + "categories": [ + "no-std" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/paholg/typenum", + "homepage": null, + "documentation": "https://docs.rs/typenum", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.37.0" + }, + { + "name": "ucd-trie", + "version": "0.1.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A trie for storing Unicode codepoint sets and maps.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ucd_trie", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.6/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [], + "keywords": [ + "unicode", + "database", + "character", + "codepoint", + "trie" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/ucd-generate", + "homepage": "https://github.com/BurntSushi/ucd-generate", + "documentation": "https://docs.rs/ucd-trie", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unic-char-property", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "UNIC — Unicode Character Tools — Character Property taxonomy, contracts and build macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unic-char-range", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unic_char_property", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bool_property_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/tests/bool_property_macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_property_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/tests/enum_property_macro.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tables_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/tests/tables_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The UNIC Project Developers" + ], + "categories": [ + "internationalization", + "text-processing", + "parsing" + ], + "keywords": [ + "text", + "unicode", + "character-property" + ], + "readme": null, + "repository": "https://github.com/open-i18n/rust-unic/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unic-char-range", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "UNIC — Unicode Character Tools — Character Range and Iteration", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rayon", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unic_char_range", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "macro_use_std_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/examples/macro_use_std_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "iter_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/tests/iter_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benchmarks", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/benches/benchmarks.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "exact-size-is-empty": [], + "fused": [], + "rayon": [ + "dep:rayon" + ], + "std": [], + "trusted-len": [], + "unstable": [ + "exact-size-is-empty", + "fused", + "trusted-len" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The UNIC Project Developers" + ], + "categories": [ + "internationalization", + "text-processing" + ], + "keywords": [ + "text", + "unicode", + "utilities", + "iteration" + ], + "readme": null, + "repository": "https://github.com/open-i18n/rust-unic/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unic-common", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "UNIC — Common Utilities", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unic_common", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-common-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-common-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The UNIC Project Developers" + ], + "categories": [ + "internationalization", + "text-processing" + ], + "keywords": [ + "unicode", + "version" + ], + "readme": "README.md", + "repository": "https://github.com/open-i18n/rust-unic/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unic-ucd-category", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "UNIC — Unicode Character Database — General Category", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unic-char-property", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unic-char-range", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unic-ucd-version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unic_ucd_category", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/tests/basic_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "major_category_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/tests/major_category_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unicode_version_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/tests/unicode_version_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The UNIC Project Developers" + ], + "categories": [ + "internationalization", + "text-processing", + "parsing", + "rendering" + ], + "keywords": [ + "text", + "unicode", + "character-property", + "category" + ], + "readme": null, + "repository": "https://github.com/open-i18n/rust-unic/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unic-ucd-version", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "UNIC — Unicode Character Database — Version", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "unic-common", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unic_ucd_version", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic_tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0/tests/basic_tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The UNIC Project Developers" + ], + "categories": [ + "internationalization", + "text-processing", + "parsing", + "rendering" + ], + "keywords": [ + "text", + "unicode", + "version" + ], + "readme": null, + "repository": "https://github.com/open-i18n/rust-unic/", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-ident", + "version": "1.0.13", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": null, + "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "fst", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "roaring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ucd-trie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-xid", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_ident", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "compare", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/tests/compare.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "static_size", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/tests/static_size.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "xid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/benches/xid.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "rustdoc-args": [ + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "David Tolnay " + ], + "categories": [ + "development-tools::procedural-macro-helpers", + "no-std", + "no-std::no-alloc" + ], + "keywords": [ + "unicode", + "xid" + ], + "readme": "README.md", + "repository": "https://github.com/dtolnay/unicode-ident", + "homepage": null, + "documentation": "https://docs.rs/unicode-ident", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.31" + }, + { + "name": "unicode-normalization", + "version": "0.1.24", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", + "license": "MIT/Apache-2.0", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "tinyvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_normalization", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24/benches/bench.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "std" + ], + "std": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [], + "keywords": [ + "text", + "unicode", + "normalization", + "decomposition", + "recomposition" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-normalization", + "homepage": "https://github.com/unicode-rs/unicode-normalization", + "documentation": "https://docs.rs/unicode-normalization/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.36" + }, + { + "name": "unicode-width", + "version": "0.1.13", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "std", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_width", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/benches/benches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [], + "no_std": [], + "rustc-dep-of-std": [ + "std", + "core", + "compiler_builtins" + ], + "std": [ + "dep:std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [ + "command-line-interface", + "internationalization", + "no-std::no-alloc", + "text-processing" + ], + "keywords": [ + "text", + "width", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-width", + "homepage": "https://github.com/unicode-rs/unicode-width", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode-width", + "version": "0.2.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-std", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "std", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_width", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/tests/tests.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "benches", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/benches/benches.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "cjk": [], + "compiler_builtins": [ + "dep:compiler_builtins" + ], + "core": [ + "dep:core" + ], + "default": [ + "cjk" + ], + "no_std": [], + "rustc-dep-of-std": [ + "std", + "core", + "compiler_builtins" + ], + "std": [ + "dep:std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "kwantam ", + "Manish Goregaokar " + ], + "categories": [ + "command-line-interface", + "internationalization", + "no-std::no-alloc", + "text-processing" + ], + "keywords": [ + "text", + "width", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-rs/unicode-width", + "homepage": "https://github.com/unicode-rs/unicode-width", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "unicode_names2", + "version": "1.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", + "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": null, + "description": "Map characters to and from their name given in the Unicode standard.\nThis goes to great lengths to be as efficient as possible in both time\nand space, with the full bidirectional tables weighing barely 500 KB\nbut still offering O(1)* look-up in both directions. (*more precisely,\nO(length of name).)\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "phf", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_xorshift", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode_names2_macros", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.3, <2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode_names2_generator", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.0", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_names2", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "character", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/examples/character.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "count", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/examples/count.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "name", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/examples/name.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [], + "generator-timing": [ + "unicode_names2_generator/timing" + ], + "no_std": [], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Huon Wilson ", + "Kang Seonghoon ", + "Valentin Lorentz ", + "Jeong YunWon " + ], + "categories": [], + "keywords": [ + "text", + "unicode" + ], + "readme": "README.md", + "repository": "https://github.com/progval/unicode_names2", + "homepage": "https://github.com/progval/unicode_names2", + "documentation": "https://docs.rs/unicode_names2/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "unicode_names2_generator", + "version": "1.3.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Generates the perfect-hash function used by `unicode_names2`.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "getopts", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "phf_codegen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unicode_names2_generator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2_generator-1.3.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "time": [ + "dep:time" + ], + "timing": [ + "time" + ], + "unstable": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2_generator-1.3.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Huon Wilson " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/progval/unicode_names2", + "homepage": "https://github.com/progval/unicode_names2", + "documentation": "https://docs.rs/unicode_names2/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63.0" + }, + { + "name": "unscanny", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Painless string scanning.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "unscanny", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unscanny-0.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unscanny-0.1.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Laurenz " + ], + "categories": [ + "parsing", + "text-processing" + ], + "keywords": [ + "scanning", + "tokenizing" + ], + "readme": "README.md", + "repository": "https://github.com/typst/unscanny", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "untrusted", + "version": "0.9.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "license": "ISC", + "license_file": null, + "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "untrusted", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/untrusted-0.9.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "tests", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/untrusted-0.9.0/tests/tests.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/untrusted-0.9.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Brian Smith " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/briansmith/untrusted", + "homepage": null, + "documentation": "https://briansmith.org/rustdoc/untrusted/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "ureq", + "version": "2.10.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Simple, safe HTTP client", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "base64", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "brotli-decompressor", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^4.0.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cookie", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.18", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "cookie_store", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.21", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "preserve_order" + ], + "target": null, + "registry": null + }, + { + "name": "encoding_rs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.22", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hootbin", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "http", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": "http-02", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "native-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "ring", + "logging", + "std", + "tls12" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-native-certs", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=1.0.97", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "socks", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "url", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "webpki-roots", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "env_logger", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "<=0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "humantime" + ], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.23.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std", + "ring" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-pemfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "ureq", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "count-bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/count-bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "cureq", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/cureq/main.rs", + "edition": "2018", + "required-features": [ + "charset", + "cookies", + "socks-proxy", + "native-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom-tls", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/custom-tls.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ipv6", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/ipv6.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "smoke-test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/smoke-test/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "tls_config", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/tls_config.rs", + "edition": "2018", + "required-features": [ + "tls", + "native-tls" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "https-agent", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/tests/https-agent.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "brotli": [ + "dep:brotli-decompressor" + ], + "charset": [ + "dep:encoding_rs" + ], + "cookies": [ + "dep:cookie", + "dep:cookie_store" + ], + "default": [ + "tls", + "gzip" + ], + "gzip": [ + "dep:flate2" + ], + "http-crate": [ + "dep:http" + ], + "http-interop": [ + "dep:http-02" + ], + "json": [ + "dep:serde", + "dep:serde_json" + ], + "native-certs": [ + "dep:rustls-native-certs" + ], + "native-tls": [ + "dep:native-tls" + ], + "proxy-from-env": [], + "socks-proxy": [ + "dep:socks" + ], + "testdeps": [ + "dep:hootbin" + ], + "tls": [ + "dep:webpki-roots", + "dep:rustls", + "dep:rustls-pki-types" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "tls", + "native-tls", + "json", + "charset", + "cookies", + "socks-proxy", + "gzip", + "brotli", + "http-interop", + "http-crate" + ], + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "Martin Algesten ", + "Jacob Hoffman-Andrews " + ], + "categories": [ + "web-programming::http-client" + ], + "keywords": [ + "web", + "request", + "https", + "http", + "client" + ], + "readme": "README.md", + "repository": "https://github.com/algesten/ureq", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "url", + "version": "2.5.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "URL library for Rust, based on the WHATWG URL Standard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "form_urlencoded", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "idna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc", + "compiled_data" + ], + "target": null, + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "url", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "unit", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/tests/unit.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "url_wpt", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/tests/wpt.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "debugger_visualizer": [], + "default": [ + "std" + ], + "expose_internals": [], + "serde": [ + "dep:serde" + ], + "std": [ + "idna/std", + "percent-encoding/std", + "form_urlencoded/std" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde" + ], + "rustdoc-args": [ + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "serde" + ] + } + }, + "publish": null, + "authors": [ + "The rust-url developers" + ], + "categories": [ + "parser-implementations", + "web-programming", + "encoding", + "no-std" + ], + "keywords": [ + "url", + "parser" + ], + "readme": "README.md", + "repository": "https://github.com/servo/rust-url", + "homepage": null, + "documentation": "https://docs.rs/url", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "urlencoding", + "version": "2.1.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", + "license": "MIT", + "license_file": null, + "description": "A Rust library for doing URL percentage encoding.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "urlencoding", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/urlencoding-2.1.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "bench", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/urlencoding-2.1.3/benches/bench.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/urlencoding-2.1.3/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Kornel ", + "Bertram Truong " + ], + "categories": [ + "encoding", + "web-programming" + ], + "keywords": [ + "url", + "percent", + "escape", + "urlencode", + "urldecode" + ], + "readme": "README.md", + "repository": "https://github.com/kornelski/rust_urlencoding", + "homepage": "https://lib.rs/urlencoding", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf16_iter", + "version": "1.0.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Iterator by char over potentially-invalid UTF-16 in &[u16]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf16_iter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf16_iter-1.0.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf16_iter-1.0.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "internationalization" + ], + "keywords": [ + "encoding", + "UTF-16", + "unicode", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/utf16_iter", + "homepage": "https://docs.rs/utf16_iter/", + "documentation": "https://docs.rs/utf16_iter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf8_iter", + "version": "1.0.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf8_iter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8_iter-1.0.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8_iter-1.0.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Henri Sivonen " + ], + "categories": [ + "text-processing", + "encoding", + "internationalization" + ], + "keywords": [ + "encoding", + "UTF-8", + "unicode", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/utf8_iter", + "homepage": "https://docs.rs/utf8_iter/", + "documentation": "https://docs.rs/utf8_iter/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "utf8parse", + "version": "0.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Table-driven UTF-8 parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "utf8parse", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8parse-0.2.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "utf-8-demo", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8parse-0.2.1/tests/utf-8-demo.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "default": [], + "nightly": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8parse-0.2.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joe Wilm ", + "Christian Duerr " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "utf8", + "parse", + "table" + ], + "readme": null, + "repository": "https://github.com/alacritty/vte", + "homepage": null, + "documentation": "https://docs.rs/utf8parse/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "uuid", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A library to generate and parse UUIDs.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arbitrary", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "atomic", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "borsh-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bytemuck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.14.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "md-5", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1_smol", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "slog", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "uuid-macro-internal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.79", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.56", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.52", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target = \"wasm32-unknown-unknown\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "uuid", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-1.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "arbitrary": [ + "dep:arbitrary" + ], + "atomic": [ + "dep:atomic" + ], + "borsh": [ + "dep:borsh", + "dep:borsh-derive" + ], + "bytemuck": [ + "dep:bytemuck" + ], + "default": [ + "std" + ], + "fast-rng": [ + "rng", + "dep:rand" + ], + "js": [ + "dep:wasm-bindgen", + "getrandom?/js" + ], + "macro-diagnostics": [ + "dep:uuid-macro-internal" + ], + "md5": [ + "dep:md-5" + ], + "rng": [ + "dep:getrandom" + ], + "serde": [ + "dep:serde" + ], + "sha1": [ + "dep:sha1_smol" + ], + "slog": [ + "dep:slog" + ], + "std": [], + "v1": [ + "atomic" + ], + "v3": [ + "md5" + ], + "v4": [ + "rng" + ], + "v5": [ + "sha1" + ], + "v6": [ + "atomic" + ], + "v7": [ + "rng" + ], + "v8": [], + "zerocopy": [ + "dep:zerocopy" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-1.11.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde", + "arbitrary", + "slog", + "borsh", + "v1", + "v3", + "v4", + "v5", + "v6", + "v7", + "v8" + ], + "rustc-args": [ + "--cfg", + "uuid_unstable" + ], + "rustdoc-args": [ + "--cfg", + "uuid_unstable" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + }, + "playground": { + "features": [ + "serde", + "v1", + "v3", + "v4", + "v5", + "v6", + "v7", + "v8" + ] + } + }, + "publish": null, + "authors": [ + "Ashley Mannix", + "Dylan DPC", + "Hunar Roop Kahlon" + ], + "categories": [ + "data-structures", + "no-std", + "parser-implementations", + "wasm" + ], + "keywords": [ + "guid", + "unique", + "uuid" + ], + "readme": "README.md", + "repository": "https://github.com/uuid-rs/uuid", + "homepage": "https://github.com/uuid-rs/uuid", + "documentation": "https://docs.rs/uuid", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "uuid-macro-internal", + "version": "1.11.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Private implementation details of the uuid! macro.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.29", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "span-locations" + ], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "uuid_macro_internal", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-macro-internal-1.11.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-macro-internal-1.11.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "QnnOkabayashi" + ], + "categories": [ + "data-structures", + "no-std", + "parser-implementations", + "wasm" + ], + "keywords": [], + "readme": null, + "repository": "https://github.com/uuid-rs/uuid", + "homepage": null, + "documentation": "https://docs.rs/uuid", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "valuable", + "version": "0.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0", + "license": "MIT", + "license_file": null, + "description": "Object-safe value inspection, used to pass un-typed structured data across trait-object boundaries.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "valuable-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "valuable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/examples/derive.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "hello_world", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/examples/hello_world.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "print", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/examples/print.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "structable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/benches/structable.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "default": [ + "std" + ], + "derive": [ + "valuable-derive" + ], + "std": [ + "alloc" + ], + "valuable-derive": [ + "dep:valuable-derive" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "development-tools::debugging", + "encoding" + ], + "keywords": [ + "valuable", + "serialization", + "debugging", + "no_std" + ], + "readme": "../README.md", + "repository": "https://github.com/tokio-rs/valuable", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.51.0" + }, + { + "name": "version-ranges", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", + "license": "MPL-2.0", + "license_file": null, + "description": "Performance-optimized type for generic version ranges and operations on them.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.214", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.13.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "union" + ], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ron", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.9.0-alpha.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "version_ranges", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version-ranges-0.1.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "proptest": [ + "dep:proptest" + ], + "serde": [ + "dep:serde", + "smallvec/serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version-ranges-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [ + "version", + "pubgrub", + "selector", + "ranges" + ], + "readme": "README.md", + "repository": "https://github.com/pubgrub-rs/pubgrub", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "version_check", + "version": "0.9.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Tiny crate to check the version of the installed/running rustc.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "version_check", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version_check-0.9.4/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version_check-0.9.4/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Sergio Benitez " + ], + "categories": [], + "keywords": [ + "version", + "rustc", + "minimum", + "check" + ], + "readme": "README.md", + "repository": "https://github.com/SergioBenitez/version_check", + "homepage": null, + "documentation": "https://docs.rs/version_check/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vt100", + "version": "0.15.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", + "license": "MIT", + "license_file": null, + "description": "Library for parsing terminal data", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "itoa", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "unicode-width", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vte", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "nix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.26.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quickcheck", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.9", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.152", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.92", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vte", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vt100", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vt100-0.15.2/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vt100-0.15.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Jesse Luehrs " + ], + "categories": [ + "command-line-interface", + "encoding" + ], + "keywords": [ + "terminal", + "vt100" + ], + "readme": "README.md", + "repository": "https://github.com/doy/vt100-rust", + "homepage": "https://github.com/doy/vt100-rust", + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "vte", + "version": "0.11.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Parser for implementing terminal emulators", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.17", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.160", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "utf8parse", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "vte_generate_state_changes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "vte", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte-0.11.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "parselog", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte-0.11.1/examples/parselog.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "ansi": [ + "log" + ], + "arrayvec": [ + "dep:arrayvec" + ], + "default": [ + "no_std" + ], + "log": [ + "dep:log" + ], + "nightly": [ + "utf8parse/nightly" + ], + "no_std": [ + "arrayvec" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte-0.11.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joe Wilm ", + "Christian Duerr " + ], + "categories": [ + "parsing", + "no-std" + ], + "keywords": [ + "ansi", + "vte", + "parser", + "terminal" + ], + "readme": "README.md", + "repository": "https://github.com/alacritty/vte", + "homepage": null, + "documentation": "https://docs.rs/vte/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56.0" + }, + { + "name": "vte_generate_state_changes", + "version": "0.1.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#vte_generate_state_changes@0.1.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Proc macro for generating VTE state changes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "vte_generate_state_changes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte_generate_state_changes-0.1.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte_generate_state_changes-0.1.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Christian Duerr " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/jwilm/vte", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "walkdir", + "version": "2.5.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "license": "Unlicense/MIT", + "license_file": null, + "description": "Recursively walk a directory.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "same-file", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "walkdir", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/walkdir-2.5.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/walkdir-2.5.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "filesystem" + ], + "keywords": [ + "directory", + "recursive", + "walk", + "iterator" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/walkdir", + "homepage": "https://github.com/BurntSushi/walkdir", + "documentation": "https://docs.rs/walkdir/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasi", + "version": "0.11.0+wasi-snapshot-preview1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Experimental WASI API bindings for Rust", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "compiler_builtins", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": "core", + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-std-workspace-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The Cranelift Project Developers" + ], + "categories": [ + "no-std", + "wasm" + ], + "keywords": [ + "webassembly", + "wasm" + ], + "readme": "README.md", + "repository": "https://github.com/bytecodealliance/wasi", + "homepage": null, + "documentation": "https://docs.rs/wasi", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "wasm-bindgen", + "version": "0.2.95", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Easy support for interacting between JS and Rust.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.95/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": false + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.95/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "default": [ + "spans", + "std" + ], + "enable-interning": [ + "std" + ], + "gg-alloc": [], + "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" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.95/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "serde-serialize" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [ + "wasm" + ], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen", + "homepage": "https://rustwasm.github.io/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-backend", + "version": "0.2.95", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Backend code generation of the wasm-bindgen tool\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bumpalo", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "log", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "once_cell", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.12", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "full" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_backend", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-backend-0.2.95/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "extra-traits": [ + "syn/extra-traits" + ], + "spans": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-backend-0.2.95/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-backend", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-futures", + "version": "0.4.45", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bridging the gap between Rust Futures and JavaScript Promises", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "cfg-if", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-core", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.72", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel-preview", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0-alpha.18", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "futures-lite", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.11.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.24", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "MessageEvent", + "Worker" + ], + "target": "cfg(target_feature = \"atomics\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_futures", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-futures-0.4.45/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "futures-core": [ + "dep:futures-core" + ], + "futures-core-03-stream": [ + "futures-core" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-futures-0.4.45/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-futures", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-macro", + "version": "0.2.95", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-macro-support", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasm_bindgen_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-0.2.95/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "spans": [ + "wasm-bindgen-macro-support/spans" + ], + "strict-macro": [ + "wasm-bindgen-macro-support/strict-macro" + ], + "xxx_debug_only_print_generated_code": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-0.2.95/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-macro-support", + "version": "0.2.95", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "visit", + "visit-mut", + "full" + ], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-backend", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-shared", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_macro_support", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-support-0.2.95/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "extra-traits": [ + "syn/extra-traits" + ], + "spans": [ + "wasm-bindgen-backend/spans" + ], + "strict-macro": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-support-0.2.95/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-shared", + "version": "0.2.95", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_shared", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.95/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.95/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.95/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", + "homepage": "https://rustwasm.github.io/wasm-bindgen/", + "documentation": "https://docs.rs/wasm-bindgen-shared", + "edition": "2021", + "links": "wasm_bindgen", + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-test", + "version": "0.3.45", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Internal testing crate for wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "console_error_panic_hook", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "gg-alloc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.72", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "scoped-tls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.95", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.45", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-test-macro", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.3.45", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "minicov", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"wasm32\", wasm_bindgen_unstable_test_coverage))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wasm_bindgen_test", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-0.3.45/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": false + } + ], + "features": { + "gg-alloc": [ + "dep:gg-alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-0.3.45/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "wasm-bindgen-test-macro", + "version": "0.3.45", + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Internal testing macro for wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "parsing", + "proc-macro", + "derive", + "printing" + ], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "wasm_bindgen_test_macro", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-macro-0.3.45/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-macro-0.3.45/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "web-sys", + "version": "0.3.69", + "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.69", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.92", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.42", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_arch = \"wasm32\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "web_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-sys-0.3.69/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "wasm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-sys-0.3.69/tests/wasm/main.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "AbortController": [], + "AbortSignal": [ + "EventTarget" + ], + "AddEventListenerOptions": [], + "AesCbcParams": [], + "AesCtrParams": [], + "AesDerivedKeyParams": [], + "AesGcmParams": [], + "AesKeyAlgorithm": [], + "AesKeyGenParams": [], + "Algorithm": [], + "AlignSetting": [], + "AllowedBluetoothDevice": [], + "AllowedUsbDevice": [], + "AlphaOption": [], + "AnalyserNode": [ + "AudioNode", + "EventTarget" + ], + "AnalyserOptions": [], + "AngleInstancedArrays": [], + "Animation": [ + "EventTarget" + ], + "AnimationEffect": [], + "AnimationEvent": [ + "Event" + ], + "AnimationEventInit": [], + "AnimationPlayState": [], + "AnimationPlaybackEvent": [ + "Event" + ], + "AnimationPlaybackEventInit": [], + "AnimationPropertyDetails": [], + "AnimationPropertyValueDetails": [], + "AnimationTimeline": [], + "AssignedNodesOptions": [], + "AttestationConveyancePreference": [], + "Attr": [ + "EventTarget", + "Node" + ], + "AttributeNameValue": [], + "AudioBuffer": [], + "AudioBufferOptions": [], + "AudioBufferSourceNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "AudioBufferSourceOptions": [], + "AudioConfiguration": [], + "AudioContext": [ + "BaseAudioContext", + "EventTarget" + ], + "AudioContextLatencyCategory": [], + "AudioContextOptions": [], + "AudioContextState": [], + "AudioData": [], + "AudioDataCopyToOptions": [], + "AudioDataInit": [], + "AudioDecoder": [], + "AudioDecoderConfig": [], + "AudioDecoderInit": [], + "AudioDecoderSupport": [], + "AudioDestinationNode": [ + "AudioNode", + "EventTarget" + ], + "AudioEncoder": [], + "AudioEncoderConfig": [], + "AudioEncoderInit": [], + "AudioEncoderSupport": [], + "AudioListener": [], + "AudioNode": [ + "EventTarget" + ], + "AudioNodeOptions": [], + "AudioParam": [], + "AudioParamMap": [], + "AudioProcessingEvent": [ + "Event" + ], + "AudioSampleFormat": [], + "AudioScheduledSourceNode": [ + "AudioNode", + "EventTarget" + ], + "AudioSinkInfo": [], + "AudioSinkOptions": [], + "AudioSinkType": [], + "AudioStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "AudioTrack": [], + "AudioTrackList": [ + "EventTarget" + ], + "AudioWorklet": [ + "Worklet" + ], + "AudioWorkletGlobalScope": [ + "WorkletGlobalScope" + ], + "AudioWorkletNode": [ + "AudioNode", + "EventTarget" + ], + "AudioWorkletNodeOptions": [], + "AudioWorkletProcessor": [], + "AuthenticationExtensionsClientInputs": [], + "AuthenticationExtensionsClientOutputs": [], + "AuthenticatorAssertionResponse": [ + "AuthenticatorResponse" + ], + "AuthenticatorAttachment": [], + "AuthenticatorAttestationResponse": [ + "AuthenticatorResponse" + ], + "AuthenticatorResponse": [], + "AuthenticatorSelectionCriteria": [], + "AuthenticatorTransport": [], + "AutoKeyword": [], + "AutocompleteInfo": [], + "BarProp": [], + "BaseAudioContext": [ + "EventTarget" + ], + "BaseComputedKeyframe": [], + "BaseKeyframe": [], + "BasePropertyIndexedKeyframe": [], + "BasicCardRequest": [], + "BasicCardResponse": [], + "BasicCardType": [], + "BatteryManager": [ + "EventTarget" + ], + "BeforeUnloadEvent": [ + "Event" + ], + "BinaryType": [], + "BiquadFilterNode": [ + "AudioNode", + "EventTarget" + ], + "BiquadFilterOptions": [], + "BiquadFilterType": [], + "Blob": [], + "BlobEvent": [ + "Event" + ], + "BlobEventInit": [], + "BlobPropertyBag": [], + "BlockParsingOptions": [], + "Bluetooth": [ + "EventTarget" + ], + "BluetoothAdvertisingEvent": [ + "Event" + ], + "BluetoothAdvertisingEventInit": [], + "BluetoothCharacteristicProperties": [], + "BluetoothDataFilterInit": [], + "BluetoothDevice": [ + "EventTarget" + ], + "BluetoothLeScanFilterInit": [], + "BluetoothManufacturerDataMap": [], + "BluetoothPermissionDescriptor": [], + "BluetoothPermissionResult": [ + "EventTarget", + "PermissionStatus" + ], + "BluetoothPermissionStorage": [], + "BluetoothRemoteGattCharacteristic": [ + "EventTarget" + ], + "BluetoothRemoteGattDescriptor": [], + "BluetoothRemoteGattServer": [], + "BluetoothRemoteGattService": [ + "EventTarget" + ], + "BluetoothServiceDataMap": [], + "BluetoothUuid": [], + "BoxQuadOptions": [], + "BroadcastChannel": [ + "EventTarget" + ], + "BrowserElementDownloadOptions": [], + "BrowserElementExecuteScriptOptions": [], + "BrowserFeedWriter": [], + "BrowserFindCaseSensitivity": [], + "BrowserFindDirection": [], + "ByteLengthQueuingStrategy": [], + "Cache": [], + "CacheBatchOperation": [], + "CacheQueryOptions": [], + "CacheStorage": [], + "CacheStorageNamespace": [], + "CanvasCaptureMediaStream": [ + "EventTarget", + "MediaStream" + ], + "CanvasCaptureMediaStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "CanvasGradient": [], + "CanvasPattern": [], + "CanvasRenderingContext2d": [], + "CanvasWindingRule": [], + "CaretChangedReason": [], + "CaretPosition": [], + "CaretStateChangedEventInit": [], + "CdataSection": [ + "CharacterData", + "EventTarget", + "Node", + "Text" + ], + "ChannelCountMode": [], + "ChannelInterpretation": [], + "ChannelMergerNode": [ + "AudioNode", + "EventTarget" + ], + "ChannelMergerOptions": [], + "ChannelSplitterNode": [ + "AudioNode", + "EventTarget" + ], + "ChannelSplitterOptions": [], + "CharacterData": [ + "EventTarget", + "Node" + ], + "CheckerboardReason": [], + "CheckerboardReport": [], + "CheckerboardReportService": [], + "ChromeFilePropertyBag": [], + "ChromeWorker": [ + "EventTarget", + "Worker" + ], + "Client": [], + "ClientQueryOptions": [], + "ClientRectsAndTexts": [], + "ClientType": [], + "Clients": [], + "Clipboard": [ + "EventTarget" + ], + "ClipboardEvent": [ + "Event" + ], + "ClipboardEventInit": [], + "ClipboardItem": [], + "ClipboardItemOptions": [], + "ClipboardPermissionDescriptor": [], + "CloseEvent": [ + "Event" + ], + "CloseEventInit": [], + "CodecState": [], + "CollectedClientData": [], + "ColorSpaceConversion": [], + "Comment": [ + "CharacterData", + "EventTarget", + "Node" + ], + "CompositeOperation": [], + "CompositionEvent": [ + "Event", + "UiEvent" + ], + "CompositionEventInit": [], + "CompressionFormat": [], + "CompressionStream": [], + "ComputedEffectTiming": [], + "ConnStatusDict": [], + "ConnectionType": [], + "ConsoleCounter": [], + "ConsoleCounterError": [], + "ConsoleEvent": [], + "ConsoleInstance": [], + "ConsoleInstanceOptions": [], + "ConsoleLevel": [], + "ConsoleLogLevel": [], + "ConsoleProfileEvent": [], + "ConsoleStackEntry": [], + "ConsoleTimerError": [], + "ConsoleTimerLogOrEnd": [], + "ConsoleTimerStart": [], + "ConstantSourceNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "ConstantSourceOptions": [], + "ConstrainBooleanParameters": [], + "ConstrainDomStringParameters": [], + "ConstrainDoubleRange": [], + "ConstrainLongRange": [], + "ContextAttributes2d": [], + "ConvertCoordinateOptions": [], + "ConvolverNode": [ + "AudioNode", + "EventTarget" + ], + "ConvolverOptions": [], + "Coordinates": [], + "CountQueuingStrategy": [], + "Credential": [], + "CredentialCreationOptions": [], + "CredentialRequestOptions": [], + "CredentialsContainer": [], + "Crypto": [], + "CryptoKey": [], + "CryptoKeyPair": [], + "CssAnimation": [ + "Animation", + "EventTarget" + ], + "CssBoxType": [], + "CssConditionRule": [ + "CssGroupingRule", + "CssRule" + ], + "CssCounterStyleRule": [ + "CssRule" + ], + "CssFontFaceRule": [ + "CssRule" + ], + "CssFontFeatureValuesRule": [ + "CssRule" + ], + "CssGroupingRule": [ + "CssRule" + ], + "CssImportRule": [ + "CssRule" + ], + "CssKeyframeRule": [ + "CssRule" + ], + "CssKeyframesRule": [ + "CssRule" + ], + "CssMediaRule": [ + "CssConditionRule", + "CssGroupingRule", + "CssRule" + ], + "CssNamespaceRule": [ + "CssRule" + ], + "CssPageRule": [ + "CssRule" + ], + "CssPseudoElement": [], + "CssRule": [], + "CssRuleList": [], + "CssStyleDeclaration": [], + "CssStyleRule": [ + "CssRule" + ], + "CssStyleSheet": [ + "StyleSheet" + ], + "CssStyleSheetParsingMode": [], + "CssSupportsRule": [ + "CssConditionRule", + "CssGroupingRule", + "CssRule" + ], + "CssTransition": [ + "Animation", + "EventTarget" + ], + "CustomElementRegistry": [], + "CustomEvent": [ + "Event" + ], + "CustomEventInit": [], + "DataTransfer": [], + "DataTransferItem": [], + "DataTransferItemList": [], + "DateTimeValue": [], + "DecoderDoctorNotification": [], + "DecoderDoctorNotificationType": [], + "DecompressionStream": [], + "DedicatedWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "DelayNode": [ + "AudioNode", + "EventTarget" + ], + "DelayOptions": [], + "DeviceAcceleration": [], + "DeviceAccelerationInit": [], + "DeviceLightEvent": [ + "Event" + ], + "DeviceLightEventInit": [], + "DeviceMotionEvent": [ + "Event" + ], + "DeviceMotionEventInit": [], + "DeviceOrientationEvent": [ + "Event" + ], + "DeviceOrientationEventInit": [], + "DeviceProximityEvent": [ + "Event" + ], + "DeviceProximityEventInit": [], + "DeviceRotationRate": [], + "DeviceRotationRateInit": [], + "DhKeyDeriveParams": [], + "DirectionSetting": [], + "Directory": [], + "DirectoryPickerOptions": [], + "DisplayMediaStreamConstraints": [], + "DisplayNameOptions": [], + "DisplayNameResult": [], + "DistanceModelType": [], + "DnsCacheDict": [], + "DnsCacheEntry": [], + "DnsLookupDict": [], + "Document": [ + "EventTarget", + "Node" + ], + "DocumentFragment": [ + "EventTarget", + "Node" + ], + "DocumentTimeline": [ + "AnimationTimeline" + ], + "DocumentTimelineOptions": [], + "DocumentType": [ + "EventTarget", + "Node" + ], + "DomError": [], + "DomException": [], + "DomImplementation": [], + "DomMatrix": [ + "DomMatrixReadOnly" + ], + "DomMatrix2dInit": [], + "DomMatrixInit": [], + "DomMatrixReadOnly": [], + "DomParser": [], + "DomPoint": [ + "DomPointReadOnly" + ], + "DomPointInit": [], + "DomPointReadOnly": [], + "DomQuad": [], + "DomQuadInit": [], + "DomQuadJson": [], + "DomRect": [ + "DomRectReadOnly" + ], + "DomRectInit": [], + "DomRectList": [], + "DomRectReadOnly": [], + "DomRequest": [ + "EventTarget" + ], + "DomRequestReadyState": [], + "DomStringList": [], + "DomStringMap": [], + "DomTokenList": [], + "DomWindowResizeEventDetail": [], + "DragEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "DragEventInit": [], + "DynamicsCompressorNode": [ + "AudioNode", + "EventTarget" + ], + "DynamicsCompressorOptions": [], + "EcKeyAlgorithm": [], + "EcKeyGenParams": [], + "EcKeyImportParams": [], + "EcdhKeyDeriveParams": [], + "EcdsaParams": [], + "EffectTiming": [], + "Element": [ + "EventTarget", + "Node" + ], + "ElementCreationOptions": [], + "ElementDefinitionOptions": [], + "EncodedAudioChunk": [], + "EncodedAudioChunkInit": [], + "EncodedAudioChunkMetadata": [], + "EncodedAudioChunkType": [], + "EncodedVideoChunk": [], + "EncodedVideoChunkInit": [], + "EncodedVideoChunkMetadata": [], + "EncodedVideoChunkType": [], + "EndingTypes": [], + "ErrorCallback": [], + "ErrorEvent": [ + "Event" + ], + "ErrorEventInit": [], + "Event": [], + "EventInit": [], + "EventListener": [], + "EventListenerOptions": [], + "EventModifierInit": [], + "EventSource": [ + "EventTarget" + ], + "EventSourceInit": [], + "EventTarget": [], + "Exception": [], + "ExtBlendMinmax": [], + "ExtColorBufferFloat": [], + "ExtColorBufferHalfFloat": [], + "ExtDisjointTimerQuery": [], + "ExtFragDepth": [], + "ExtSRgb": [], + "ExtShaderTextureLod": [], + "ExtTextureFilterAnisotropic": [], + "ExtTextureNorm16": [], + "ExtendableEvent": [ + "Event" + ], + "ExtendableEventInit": [], + "ExtendableMessageEvent": [ + "Event", + "ExtendableEvent" + ], + "ExtendableMessageEventInit": [], + "External": [], + "FakePluginMimeEntry": [], + "FakePluginTagInit": [], + "FetchEvent": [ + "Event", + "ExtendableEvent" + ], + "FetchEventInit": [], + "FetchObserver": [ + "EventTarget" + ], + "FetchReadableStreamReadDataArray": [], + "FetchReadableStreamReadDataDone": [], + "FetchState": [], + "File": [ + "Blob" + ], + "FileCallback": [], + "FileList": [], + "FilePickerAcceptType": [], + "FilePickerOptions": [], + "FilePropertyBag": [], + "FileReader": [ + "EventTarget" + ], + "FileReaderSync": [], + "FileSystem": [], + "FileSystemCreateWritableOptions": [], + "FileSystemDirectoryEntry": [ + "FileSystemEntry" + ], + "FileSystemDirectoryHandle": [ + "FileSystemHandle" + ], + "FileSystemDirectoryReader": [], + "FileSystemEntriesCallback": [], + "FileSystemEntry": [], + "FileSystemEntryCallback": [], + "FileSystemFileEntry": [ + "FileSystemEntry" + ], + "FileSystemFileHandle": [ + "FileSystemHandle" + ], + "FileSystemFlags": [], + "FileSystemGetDirectoryOptions": [], + "FileSystemGetFileOptions": [], + "FileSystemHandle": [], + "FileSystemHandleKind": [], + "FileSystemHandlePermissionDescriptor": [], + "FileSystemPermissionDescriptor": [], + "FileSystemPermissionMode": [], + "FileSystemReadWriteOptions": [], + "FileSystemRemoveOptions": [], + "FileSystemSyncAccessHandle": [], + "FileSystemWritableFileStream": [ + "WritableStream" + ], + "FillMode": [], + "FlashClassification": [], + "FlowControlType": [], + "FocusEvent": [ + "Event", + "UiEvent" + ], + "FocusEventInit": [], + "FontData": [], + "FontFace": [], + "FontFaceDescriptors": [], + "FontFaceLoadStatus": [], + "FontFaceSet": [ + "EventTarget" + ], + "FontFaceSetIterator": [], + "FontFaceSetIteratorResult": [], + "FontFaceSetLoadEvent": [ + "Event" + ], + "FontFaceSetLoadEventInit": [], + "FontFaceSetLoadStatus": [], + "FormData": [], + "FrameType": [], + "FuzzingFunctions": [], + "GainNode": [ + "AudioNode", + "EventTarget" + ], + "GainOptions": [], + "Gamepad": [], + "GamepadAxisMoveEvent": [ + "Event", + "GamepadEvent" + ], + "GamepadAxisMoveEventInit": [], + "GamepadButton": [], + "GamepadButtonEvent": [ + "Event", + "GamepadEvent" + ], + "GamepadButtonEventInit": [], + "GamepadEvent": [ + "Event" + ], + "GamepadEventInit": [], + "GamepadHand": [], + "GamepadHapticActuator": [], + "GamepadHapticActuatorType": [], + "GamepadMappingType": [], + "GamepadPose": [], + "GamepadServiceTest": [], + "Geolocation": [], + "GetAnimationsOptions": [], + "GetRootNodeOptions": [], + "GetUserMediaRequest": [], + "Gpu": [], + "GpuAdapter": [], + "GpuAdapterInfo": [], + "GpuAddressMode": [], + "GpuAutoLayoutMode": [], + "GpuBindGroup": [], + "GpuBindGroupDescriptor": [], + "GpuBindGroupEntry": [], + "GpuBindGroupLayout": [], + "GpuBindGroupLayoutDescriptor": [], + "GpuBindGroupLayoutEntry": [], + "GpuBlendComponent": [], + "GpuBlendFactor": [], + "GpuBlendOperation": [], + "GpuBlendState": [], + "GpuBuffer": [], + "GpuBufferBinding": [], + "GpuBufferBindingLayout": [], + "GpuBufferBindingType": [], + "GpuBufferDescriptor": [], + "GpuBufferMapState": [], + "GpuCanvasAlphaMode": [], + "GpuCanvasConfiguration": [], + "GpuCanvasContext": [], + "GpuColorDict": [], + "GpuColorTargetState": [], + "GpuCommandBuffer": [], + "GpuCommandBufferDescriptor": [], + "GpuCommandEncoder": [], + "GpuCommandEncoderDescriptor": [], + "GpuCompareFunction": [], + "GpuCompilationInfo": [], + "GpuCompilationMessage": [], + "GpuCompilationMessageType": [], + "GpuComputePassDescriptor": [], + "GpuComputePassEncoder": [], + "GpuComputePassTimestampWrites": [], + "GpuComputePipeline": [], + "GpuComputePipelineDescriptor": [], + "GpuCullMode": [], + "GpuDepthStencilState": [], + "GpuDevice": [ + "EventTarget" + ], + "GpuDeviceDescriptor": [], + "GpuDeviceLostInfo": [], + "GpuDeviceLostReason": [], + "GpuError": [], + "GpuErrorFilter": [], + "GpuExtent3dDict": [], + "GpuExternalTexture": [], + "GpuExternalTextureBindingLayout": [], + "GpuExternalTextureDescriptor": [], + "GpuFeatureName": [], + "GpuFilterMode": [], + "GpuFragmentState": [], + "GpuFrontFace": [], + "GpuImageCopyBuffer": [], + "GpuImageCopyExternalImage": [], + "GpuImageCopyTexture": [], + "GpuImageCopyTextureTagged": [], + "GpuImageDataLayout": [], + "GpuIndexFormat": [], + "GpuInternalError": [ + "GpuError" + ], + "GpuLoadOp": [], + "GpuMipmapFilterMode": [], + "GpuMultisampleState": [], + "GpuObjectDescriptorBase": [], + "GpuOrigin2dDict": [], + "GpuOrigin3dDict": [], + "GpuOutOfMemoryError": [ + "GpuError" + ], + "GpuPipelineDescriptorBase": [], + "GpuPipelineError": [ + "DomException" + ], + "GpuPipelineErrorInit": [], + "GpuPipelineErrorReason": [], + "GpuPipelineLayout": [], + "GpuPipelineLayoutDescriptor": [], + "GpuPowerPreference": [], + "GpuPrimitiveState": [], + "GpuPrimitiveTopology": [], + "GpuProgrammableStage": [], + "GpuQuerySet": [], + "GpuQuerySetDescriptor": [], + "GpuQueryType": [], + "GpuQueue": [], + "GpuQueueDescriptor": [], + "GpuRenderBundle": [], + "GpuRenderBundleDescriptor": [], + "GpuRenderBundleEncoder": [], + "GpuRenderBundleEncoderDescriptor": [], + "GpuRenderPassColorAttachment": [], + "GpuRenderPassDepthStencilAttachment": [], + "GpuRenderPassDescriptor": [], + "GpuRenderPassEncoder": [], + "GpuRenderPassLayout": [], + "GpuRenderPassTimestampWrites": [], + "GpuRenderPipeline": [], + "GpuRenderPipelineDescriptor": [], + "GpuRequestAdapterOptions": [], + "GpuSampler": [], + "GpuSamplerBindingLayout": [], + "GpuSamplerBindingType": [], + "GpuSamplerDescriptor": [], + "GpuShaderModule": [], + "GpuShaderModuleCompilationHint": [], + "GpuShaderModuleDescriptor": [], + "GpuStencilFaceState": [], + "GpuStencilOperation": [], + "GpuStorageTextureAccess": [], + "GpuStorageTextureBindingLayout": [], + "GpuStoreOp": [], + "GpuSupportedFeatures": [], + "GpuSupportedLimits": [], + "GpuTexture": [], + "GpuTextureAspect": [], + "GpuTextureBindingLayout": [], + "GpuTextureDescriptor": [], + "GpuTextureDimension": [], + "GpuTextureFormat": [], + "GpuTextureSampleType": [], + "GpuTextureView": [], + "GpuTextureViewDescriptor": [], + "GpuTextureViewDimension": [], + "GpuUncapturedErrorEvent": [ + "Event" + ], + "GpuUncapturedErrorEventInit": [], + "GpuValidationError": [ + "GpuError" + ], + "GpuVertexAttribute": [], + "GpuVertexBufferLayout": [], + "GpuVertexFormat": [], + "GpuVertexState": [], + "GpuVertexStepMode": [], + "GroupedHistoryEventInit": [], + "HalfOpenInfoDict": [], + "HardwareAcceleration": [], + "HashChangeEvent": [ + "Event" + ], + "HashChangeEventInit": [], + "Headers": [], + "HeadersGuardEnum": [], + "Hid": [ + "EventTarget" + ], + "HidCollectionInfo": [], + "HidConnectionEvent": [ + "Event" + ], + "HidConnectionEventInit": [], + "HidDevice": [ + "EventTarget" + ], + "HidDeviceFilter": [], + "HidDeviceRequestOptions": [], + "HidInputReportEvent": [ + "Event" + ], + "HidInputReportEventInit": [], + "HidReportInfo": [], + "HidReportItem": [], + "HidUnitSystem": [], + "HiddenPluginEventInit": [], + "History": [], + "HitRegionOptions": [], + "HkdfParams": [], + "HmacDerivedKeyParams": [], + "HmacImportParams": [], + "HmacKeyAlgorithm": [], + "HmacKeyGenParams": [], + "HtmlAllCollection": [], + "HtmlAnchorElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlAreaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlAudioElement": [ + "Element", + "EventTarget", + "HtmlElement", + "HtmlMediaElement", + "Node" + ], + "HtmlBaseElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlBodyElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlBrElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlButtonElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlCanvasElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlCollection": [], + "HtmlDListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDataElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDataListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDetailsElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDialogElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDirectoryElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDivElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlDocument": [ + "Document", + "EventTarget", + "Node" + ], + "HtmlElement": [ + "Element", + "EventTarget", + "Node" + ], + "HtmlEmbedElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFieldSetElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFontElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFormControlsCollection": [ + "HtmlCollection" + ], + "HtmlFormElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFrameElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlFrameSetElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHeadElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHeadingElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHrElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlHtmlElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlIFrameElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlImageElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlInputElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLabelElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLegendElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLiElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlLinkElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMapElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMediaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMenuElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMenuItemElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMetaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlMeterElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlModElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlObjectElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptGroupElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlOptionsCollection": [ + "HtmlCollection" + ], + "HtmlOutputElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlParagraphElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlParamElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlPictureElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlPreElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlProgressElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlQuoteElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlScriptElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSelectElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSlotElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSourceElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlSpanElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlStyleElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableCaptionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableCellElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableColElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableRowElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTableSectionElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTemplateElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTextAreaElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTimeElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTitleElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlTrackElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlUListElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlUnknownElement": [ + "Element", + "EventTarget", + "HtmlElement", + "Node" + ], + "HtmlVideoElement": [ + "Element", + "EventTarget", + "HtmlElement", + "HtmlMediaElement", + "Node" + ], + "HttpConnDict": [], + "HttpConnInfo": [], + "HttpConnectionElement": [], + "IdbCursor": [], + "IdbCursorDirection": [], + "IdbCursorWithValue": [ + "IdbCursor" + ], + "IdbDatabase": [ + "EventTarget" + ], + "IdbFactory": [], + "IdbFileHandle": [ + "EventTarget" + ], + "IdbFileMetadataParameters": [], + "IdbFileRequest": [ + "DomRequest", + "EventTarget" + ], + "IdbIndex": [], + "IdbIndexParameters": [], + "IdbKeyRange": [], + "IdbLocaleAwareKeyRange": [ + "IdbKeyRange" + ], + "IdbMutableFile": [ + "EventTarget" + ], + "IdbObjectStore": [], + "IdbObjectStoreParameters": [], + "IdbOpenDbOptions": [], + "IdbOpenDbRequest": [ + "EventTarget", + "IdbRequest" + ], + "IdbRequest": [ + "EventTarget" + ], + "IdbRequestReadyState": [], + "IdbTransaction": [ + "EventTarget" + ], + "IdbTransactionMode": [], + "IdbVersionChangeEvent": [ + "Event" + ], + "IdbVersionChangeEventInit": [], + "IdleDeadline": [], + "IdleRequestOptions": [], + "IirFilterNode": [ + "AudioNode", + "EventTarget" + ], + "IirFilterOptions": [], + "ImageBitmap": [], + "ImageBitmapOptions": [], + "ImageBitmapRenderingContext": [], + "ImageCapture": [], + "ImageCaptureError": [], + "ImageCaptureErrorEvent": [ + "Event" + ], + "ImageCaptureErrorEventInit": [], + "ImageData": [], + "ImageDecodeOptions": [], + "ImageDecodeResult": [], + "ImageDecoder": [], + "ImageDecoderInit": [], + "ImageEncodeOptions": [], + "ImageOrientation": [], + "ImageTrack": [ + "EventTarget" + ], + "ImageTrackList": [], + "InputEvent": [ + "Event", + "UiEvent" + ], + "InputEventInit": [], + "IntersectionObserver": [], + "IntersectionObserverEntry": [], + "IntersectionObserverEntryInit": [], + "IntersectionObserverInit": [], + "IntlUtils": [], + "IsInputPendingOptions": [], + "IterableKeyAndValueResult": [], + "IterableKeyOrValueResult": [], + "IterationCompositeOperation": [], + "JsonWebKey": [], + "KeyAlgorithm": [], + "KeyEvent": [], + "KeyIdsInitData": [], + "KeyboardEvent": [ + "Event", + "UiEvent" + ], + "KeyboardEventInit": [], + "KeyframeAnimationOptions": [], + "KeyframeEffect": [ + "AnimationEffect" + ], + "KeyframeEffectOptions": [], + "L10nElement": [], + "L10nValue": [], + "LatencyMode": [], + "LifecycleCallbacks": [], + "LineAlignSetting": [], + "ListBoxObject": [], + "LocalMediaStream": [ + "EventTarget", + "MediaStream" + ], + "LocaleInfo": [], + "Location": [], + "Lock": [], + "LockInfo": [], + "LockManager": [], + "LockManagerSnapshot": [], + "LockMode": [], + "LockOptions": [], + "MediaCapabilities": [], + "MediaCapabilitiesInfo": [], + "MediaConfiguration": [], + "MediaDecodingConfiguration": [], + "MediaDecodingType": [], + "MediaDeviceInfo": [], + "MediaDeviceKind": [], + "MediaDevices": [ + "EventTarget" + ], + "MediaElementAudioSourceNode": [ + "AudioNode", + "EventTarget" + ], + "MediaElementAudioSourceOptions": [], + "MediaEncodingConfiguration": [], + "MediaEncodingType": [], + "MediaEncryptedEvent": [ + "Event" + ], + "MediaError": [], + "MediaImage": [], + "MediaKeyError": [ + "Event" + ], + "MediaKeyMessageEvent": [ + "Event" + ], + "MediaKeyMessageEventInit": [], + "MediaKeyMessageType": [], + "MediaKeyNeededEventInit": [], + "MediaKeySession": [ + "EventTarget" + ], + "MediaKeySessionType": [], + "MediaKeyStatus": [], + "MediaKeyStatusMap": [], + "MediaKeySystemAccess": [], + "MediaKeySystemConfiguration": [], + "MediaKeySystemMediaCapability": [], + "MediaKeySystemStatus": [], + "MediaKeys": [], + "MediaKeysPolicy": [], + "MediaKeysRequirement": [], + "MediaList": [], + "MediaMetadata": [], + "MediaMetadataInit": [], + "MediaPositionState": [], + "MediaQueryList": [ + "EventTarget" + ], + "MediaQueryListEvent": [ + "Event" + ], + "MediaQueryListEventInit": [], + "MediaRecorder": [ + "EventTarget" + ], + "MediaRecorderErrorEvent": [ + "Event" + ], + "MediaRecorderErrorEventInit": [], + "MediaRecorderOptions": [], + "MediaSession": [], + "MediaSessionAction": [], + "MediaSessionActionDetails": [], + "MediaSessionPlaybackState": [], + "MediaSource": [ + "EventTarget" + ], + "MediaSourceEndOfStreamError": [], + "MediaSourceEnum": [], + "MediaSourceReadyState": [], + "MediaStream": [ + "EventTarget" + ], + "MediaStreamAudioDestinationNode": [ + "AudioNode", + "EventTarget" + ], + "MediaStreamAudioSourceNode": [ + "AudioNode", + "EventTarget" + ], + "MediaStreamAudioSourceOptions": [], + "MediaStreamConstraints": [], + "MediaStreamError": [], + "MediaStreamEvent": [ + "Event" + ], + "MediaStreamEventInit": [], + "MediaStreamTrack": [ + "EventTarget" + ], + "MediaStreamTrackEvent": [ + "Event" + ], + "MediaStreamTrackEventInit": [], + "MediaStreamTrackGenerator": [ + "EventTarget", + "MediaStreamTrack" + ], + "MediaStreamTrackGeneratorInit": [], + "MediaStreamTrackProcessor": [], + "MediaStreamTrackProcessorInit": [], + "MediaStreamTrackState": [], + "MediaTrackConstraintSet": [], + "MediaTrackConstraints": [], + "MediaTrackSettings": [], + "MediaTrackSupportedConstraints": [], + "MemoryAttribution": [], + "MemoryAttributionContainer": [], + "MemoryBreakdownEntry": [], + "MemoryMeasurement": [], + "MessageChannel": [], + "MessageEvent": [ + "Event" + ], + "MessageEventInit": [], + "MessagePort": [ + "EventTarget" + ], + "MidiAccess": [ + "EventTarget" + ], + "MidiConnectionEvent": [ + "Event" + ], + "MidiConnectionEventInit": [], + "MidiInput": [ + "EventTarget", + "MidiPort" + ], + "MidiInputMap": [], + "MidiMessageEvent": [ + "Event" + ], + "MidiMessageEventInit": [], + "MidiOptions": [], + "MidiOutput": [ + "EventTarget", + "MidiPort" + ], + "MidiOutputMap": [], + "MidiPort": [ + "EventTarget" + ], + "MidiPortConnectionState": [], + "MidiPortDeviceState": [], + "MidiPortType": [], + "MimeType": [], + "MimeTypeArray": [], + "MouseEvent": [ + "Event", + "UiEvent" + ], + "MouseEventInit": [], + "MouseScrollEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "MozDebug": [], + "MutationEvent": [ + "Event" + ], + "MutationObserver": [], + "MutationObserverInit": [], + "MutationObservingInfo": [], + "MutationRecord": [], + "NamedNodeMap": [], + "NativeOsFileReadOptions": [], + "NativeOsFileWriteAtomicOptions": [], + "NavigationType": [], + "Navigator": [], + "NavigatorAutomationInformation": [], + "NetworkCommandOptions": [], + "NetworkInformation": [ + "EventTarget" + ], + "NetworkResultOptions": [], + "Node": [ + "EventTarget" + ], + "NodeFilter": [], + "NodeIterator": [], + "NodeList": [], + "Notification": [ + "EventTarget" + ], + "NotificationAction": [], + "NotificationDirection": [], + "NotificationEvent": [ + "Event", + "ExtendableEvent" + ], + "NotificationEventInit": [], + "NotificationOptions": [], + "NotificationPermission": [], + "ObserverCallback": [], + "OesElementIndexUint": [], + "OesStandardDerivatives": [], + "OesTextureFloat": [], + "OesTextureFloatLinear": [], + "OesTextureHalfFloat": [], + "OesTextureHalfFloatLinear": [], + "OesVertexArrayObject": [], + "OfflineAudioCompletionEvent": [ + "Event" + ], + "OfflineAudioCompletionEventInit": [], + "OfflineAudioContext": [ + "BaseAudioContext", + "EventTarget" + ], + "OfflineAudioContextOptions": [], + "OfflineResourceList": [ + "EventTarget" + ], + "OffscreenCanvas": [ + "EventTarget" + ], + "OffscreenCanvasRenderingContext2d": [], + "OpenFilePickerOptions": [], + "OpenWindowEventDetail": [], + "OptionalEffectTiming": [], + "OrientationLockType": [], + "OrientationType": [], + "OscillatorNode": [ + "AudioNode", + "AudioScheduledSourceNode", + "EventTarget" + ], + "OscillatorOptions": [], + "OscillatorType": [], + "OverSampleType": [], + "OvrMultiview2": [], + "PageTransitionEvent": [ + "Event" + ], + "PageTransitionEventInit": [], + "PaintRequest": [], + "PaintRequestList": [], + "PaintWorkletGlobalScope": [ + "WorkletGlobalScope" + ], + "PannerNode": [ + "AudioNode", + "EventTarget" + ], + "PannerOptions": [], + "PanningModelType": [], + "ParityType": [], + "Path2d": [], + "PaymentAddress": [], + "PaymentComplete": [], + "PaymentMethodChangeEvent": [ + "Event", + "PaymentRequestUpdateEvent" + ], + "PaymentMethodChangeEventInit": [], + "PaymentRequestUpdateEvent": [ + "Event" + ], + "PaymentRequestUpdateEventInit": [], + "PaymentResponse": [], + "Pbkdf2Params": [], + "PcImplIceConnectionState": [], + "PcImplIceGatheringState": [], + "PcImplSignalingState": [], + "PcObserverStateType": [], + "Performance": [ + "EventTarget" + ], + "PerformanceEntry": [], + "PerformanceEntryEventInit": [], + "PerformanceEntryFilterOptions": [], + "PerformanceMark": [ + "PerformanceEntry" + ], + "PerformanceMeasure": [ + "PerformanceEntry" + ], + "PerformanceNavigation": [], + "PerformanceNavigationTiming": [ + "PerformanceEntry", + "PerformanceResourceTiming" + ], + "PerformanceObserver": [], + "PerformanceObserverEntryList": [], + "PerformanceObserverInit": [], + "PerformanceResourceTiming": [ + "PerformanceEntry" + ], + "PerformanceServerTiming": [], + "PerformanceTiming": [], + "PeriodicWave": [], + "PeriodicWaveConstraints": [], + "PeriodicWaveOptions": [], + "PermissionDescriptor": [], + "PermissionName": [], + "PermissionState": [], + "PermissionStatus": [ + "EventTarget" + ], + "Permissions": [], + "PlaneLayout": [], + "PlaybackDirection": [], + "Plugin": [], + "PluginArray": [], + "PluginCrashedEventInit": [], + "PointerEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "PointerEventInit": [], + "PopStateEvent": [ + "Event" + ], + "PopStateEventInit": [], + "PopupBlockedEvent": [ + "Event" + ], + "PopupBlockedEventInit": [], + "Position": [], + "PositionAlignSetting": [], + "PositionError": [], + "PositionOptions": [], + "PremultiplyAlpha": [], + "Presentation": [], + "PresentationAvailability": [ + "EventTarget" + ], + "PresentationConnection": [ + "EventTarget" + ], + "PresentationConnectionAvailableEvent": [ + "Event" + ], + "PresentationConnectionAvailableEventInit": [], + "PresentationConnectionBinaryType": [], + "PresentationConnectionCloseEvent": [ + "Event" + ], + "PresentationConnectionCloseEventInit": [], + "PresentationConnectionClosedReason": [], + "PresentationConnectionList": [ + "EventTarget" + ], + "PresentationConnectionState": [], + "PresentationReceiver": [], + "PresentationRequest": [ + "EventTarget" + ], + "PresentationStyle": [], + "ProcessingInstruction": [ + "CharacterData", + "EventTarget", + "Node" + ], + "ProfileTimelineLayerRect": [], + "ProfileTimelineMarker": [], + "ProfileTimelineMessagePortOperationType": [], + "ProfileTimelineStackFrame": [], + "ProfileTimelineWorkerOperationType": [], + "ProgressEvent": [ + "Event" + ], + "ProgressEventInit": [], + "PromiseNativeHandler": [], + "PromiseRejectionEvent": [ + "Event" + ], + "PromiseRejectionEventInit": [], + "PublicKeyCredential": [ + "Credential" + ], + "PublicKeyCredentialCreationOptions": [], + "PublicKeyCredentialDescriptor": [], + "PublicKeyCredentialEntity": [], + "PublicKeyCredentialParameters": [], + "PublicKeyCredentialRequestOptions": [], + "PublicKeyCredentialRpEntity": [], + "PublicKeyCredentialType": [], + "PublicKeyCredentialUserEntity": [], + "PushEncryptionKeyName": [], + "PushEvent": [ + "Event", + "ExtendableEvent" + ], + "PushEventInit": [], + "PushManager": [], + "PushMessageData": [], + "PushPermissionState": [], + "PushSubscription": [], + "PushSubscriptionInit": [], + "PushSubscriptionJson": [], + "PushSubscriptionKeys": [], + "PushSubscriptionOptions": [], + "PushSubscriptionOptionsInit": [], + "QueryOptions": [], + "QueuingStrategy": [], + "QueuingStrategyInit": [], + "RadioNodeList": [ + "NodeList" + ], + "Range": [], + "RcwnPerfStats": [], + "RcwnStatus": [], + "ReadableByteStreamController": [], + "ReadableStream": [], + "ReadableStreamByobReader": [], + "ReadableStreamByobRequest": [], + "ReadableStreamDefaultController": [], + "ReadableStreamDefaultReader": [], + "ReadableStreamGetReaderOptions": [], + "ReadableStreamIteratorOptions": [], + "ReadableStreamReadResult": [], + "ReadableStreamReaderMode": [], + "ReadableStreamType": [], + "ReadableWritablePair": [], + "RecordingState": [], + "ReferrerPolicy": [], + "RegisterRequest": [], + "RegisterResponse": [], + "RegisteredKey": [], + "RegistrationOptions": [], + "Request": [], + "RequestCache": [], + "RequestCredentials": [], + "RequestDestination": [], + "RequestDeviceOptions": [], + "RequestInit": [], + "RequestMediaKeySystemAccessNotification": [], + "RequestMode": [], + "RequestRedirect": [], + "ResizeObserver": [], + "ResizeObserverBoxOptions": [], + "ResizeObserverEntry": [], + "ResizeObserverOptions": [], + "ResizeObserverSize": [], + "ResizeQuality": [], + "Response": [], + "ResponseInit": [], + "ResponseType": [], + "RsaHashedImportParams": [], + "RsaOaepParams": [], + "RsaOtherPrimesInfo": [], + "RsaPssParams": [], + "RtcAnswerOptions": [], + "RtcBundlePolicy": [], + "RtcCertificate": [], + "RtcCertificateExpiration": [], + "RtcCodecStats": [], + "RtcConfiguration": [], + "RtcDataChannel": [ + "EventTarget" + ], + "RtcDataChannelEvent": [ + "Event" + ], + "RtcDataChannelEventInit": [], + "RtcDataChannelInit": [], + "RtcDataChannelState": [], + "RtcDataChannelType": [], + "RtcDegradationPreference": [], + "RtcFecParameters": [], + "RtcIceCandidate": [], + "RtcIceCandidateInit": [], + "RtcIceCandidatePairStats": [], + "RtcIceCandidateStats": [], + "RtcIceComponentStats": [], + "RtcIceConnectionState": [], + "RtcIceCredentialType": [], + "RtcIceGatheringState": [], + "RtcIceServer": [], + "RtcIceTransportPolicy": [], + "RtcIdentityAssertion": [], + "RtcIdentityAssertionResult": [], + "RtcIdentityProvider": [], + "RtcIdentityProviderDetails": [], + "RtcIdentityProviderOptions": [], + "RtcIdentityProviderRegistrar": [], + "RtcIdentityValidationResult": [], + "RtcInboundRtpStreamStats": [], + "RtcMediaStreamStats": [], + "RtcMediaStreamTrackStats": [], + "RtcOfferAnswerOptions": [], + "RtcOfferOptions": [], + "RtcOutboundRtpStreamStats": [], + "RtcPeerConnection": [ + "EventTarget" + ], + "RtcPeerConnectionIceErrorEvent": [ + "Event" + ], + "RtcPeerConnectionIceEvent": [ + "Event" + ], + "RtcPeerConnectionIceEventInit": [], + "RtcPeerConnectionState": [], + "RtcPriorityType": [], + "RtcRtcpParameters": [], + "RtcRtpCapabilities": [], + "RtcRtpCodecCapability": [], + "RtcRtpCodecParameters": [], + "RtcRtpContributingSource": [], + "RtcRtpEncodingParameters": [], + "RtcRtpHeaderExtensionCapability": [], + "RtcRtpHeaderExtensionParameters": [], + "RtcRtpParameters": [], + "RtcRtpReceiver": [], + "RtcRtpSender": [], + "RtcRtpSourceEntry": [], + "RtcRtpSourceEntryType": [], + "RtcRtpSynchronizationSource": [], + "RtcRtpTransceiver": [], + "RtcRtpTransceiverDirection": [], + "RtcRtpTransceiverInit": [], + "RtcRtxParameters": [], + "RtcSdpType": [], + "RtcSessionDescription": [], + "RtcSessionDescriptionInit": [], + "RtcSignalingState": [], + "RtcStats": [], + "RtcStatsIceCandidatePairState": [], + "RtcStatsIceCandidateType": [], + "RtcStatsReport": [], + "RtcStatsReportInternal": [], + "RtcStatsType": [], + "RtcTrackEvent": [ + "Event" + ], + "RtcTrackEventInit": [], + "RtcTransportStats": [], + "RtcdtmfSender": [ + "EventTarget" + ], + "RtcdtmfToneChangeEvent": [ + "Event" + ], + "RtcdtmfToneChangeEventInit": [], + "RtcrtpContributingSourceStats": [], + "RtcrtpStreamStats": [], + "SaveFilePickerOptions": [], + "Scheduler": [], + "SchedulerPostTaskOptions": [], + "Scheduling": [], + "Screen": [ + "EventTarget" + ], + "ScreenColorGamut": [], + "ScreenLuminance": [], + "ScreenOrientation": [ + "EventTarget" + ], + "ScriptProcessorNode": [ + "AudioNode", + "EventTarget" + ], + "ScrollAreaEvent": [ + "Event", + "UiEvent" + ], + "ScrollBehavior": [], + "ScrollBoxObject": [], + "ScrollIntoViewOptions": [], + "ScrollLogicalPosition": [], + "ScrollOptions": [], + "ScrollRestoration": [], + "ScrollSetting": [], + "ScrollState": [], + "ScrollToOptions": [], + "ScrollViewChangeEventInit": [], + "SecurityPolicyViolationEvent": [ + "Event" + ], + "SecurityPolicyViolationEventDisposition": [], + "SecurityPolicyViolationEventInit": [], + "Selection": [], + "SelectionMode": [], + "Serial": [ + "EventTarget" + ], + "SerialInputSignals": [], + "SerialOptions": [], + "SerialOutputSignals": [], + "SerialPort": [ + "EventTarget" + ], + "SerialPortFilter": [], + "SerialPortInfo": [], + "SerialPortRequestOptions": [], + "ServerSocketOptions": [], + "ServiceWorker": [ + "EventTarget" + ], + "ServiceWorkerContainer": [ + "EventTarget" + ], + "ServiceWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "ServiceWorkerRegistration": [ + "EventTarget" + ], + "ServiceWorkerState": [], + "ServiceWorkerUpdateViaCache": [], + "ShadowRoot": [ + "DocumentFragment", + "EventTarget", + "Node" + ], + "ShadowRootInit": [], + "ShadowRootMode": [], + "ShareData": [], + "SharedWorker": [ + "EventTarget" + ], + "SharedWorkerGlobalScope": [ + "EventTarget", + "WorkerGlobalScope" + ], + "SignResponse": [], + "SocketElement": [], + "SocketOptions": [], + "SocketReadyState": [], + "SocketsDict": [], + "SourceBuffer": [ + "EventTarget" + ], + "SourceBufferAppendMode": [], + "SourceBufferList": [ + "EventTarget" + ], + "SpeechGrammar": [], + "SpeechGrammarList": [], + "SpeechRecognition": [ + "EventTarget" + ], + "SpeechRecognitionAlternative": [], + "SpeechRecognitionError": [ + "Event" + ], + "SpeechRecognitionErrorCode": [], + "SpeechRecognitionErrorInit": [], + "SpeechRecognitionEvent": [ + "Event" + ], + "SpeechRecognitionEventInit": [], + "SpeechRecognitionResult": [], + "SpeechRecognitionResultList": [], + "SpeechSynthesis": [ + "EventTarget" + ], + "SpeechSynthesisErrorCode": [], + "SpeechSynthesisErrorEvent": [ + "Event", + "SpeechSynthesisEvent" + ], + "SpeechSynthesisErrorEventInit": [], + "SpeechSynthesisEvent": [ + "Event" + ], + "SpeechSynthesisEventInit": [], + "SpeechSynthesisUtterance": [ + "EventTarget" + ], + "SpeechSynthesisVoice": [], + "StereoPannerNode": [ + "AudioNode", + "EventTarget" + ], + "StereoPannerOptions": [], + "Storage": [], + "StorageEstimate": [], + "StorageEvent": [ + "Event" + ], + "StorageEventInit": [], + "StorageManager": [], + "StorageType": [], + "StreamPipeOptions": [], + "StyleRuleChangeEventInit": [], + "StyleSheet": [], + "StyleSheetApplicableStateChangeEventInit": [], + "StyleSheetChangeEventInit": [], + "StyleSheetList": [], + "SubmitEvent": [ + "Event" + ], + "SubmitEventInit": [], + "SubtleCrypto": [], + "SupportedType": [], + "SvcOutputMetadata": [], + "SvgAngle": [], + "SvgAnimateElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimateMotionElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimateTransformElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgAnimatedAngle": [], + "SvgAnimatedBoolean": [], + "SvgAnimatedEnumeration": [], + "SvgAnimatedInteger": [], + "SvgAnimatedLength": [], + "SvgAnimatedLengthList": [], + "SvgAnimatedNumber": [], + "SvgAnimatedNumberList": [], + "SvgAnimatedPreserveAspectRatio": [], + "SvgAnimatedRect": [], + "SvgAnimatedString": [], + "SvgAnimatedTransformList": [], + "SvgAnimationElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgBoundingBoxOptions": [], + "SvgCircleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgClipPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgComponentTransferFunctionElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgDefsElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgDescElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgElement": [ + "Element", + "EventTarget", + "Node" + ], + "SvgEllipseElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgFilterElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgForeignObjectElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgGeometryElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgGraphicsElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgImageElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgLength": [], + "SvgLengthList": [], + "SvgLineElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgLinearGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGradientElement" + ], + "SvgMarkerElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgMaskElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgMatrix": [], + "SvgMetadataElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgNumber": [], + "SvgNumberList": [], + "SvgPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPathSeg": [], + "SvgPathSegArcAbs": [ + "SvgPathSeg" + ], + "SvgPathSegArcRel": [ + "SvgPathSeg" + ], + "SvgPathSegClosePath": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicSmoothAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoCubicSmoothRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticRel": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticSmoothAbs": [ + "SvgPathSeg" + ], + "SvgPathSegCurvetoQuadraticSmoothRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoHorizontalAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoHorizontalRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoRel": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoVerticalAbs": [ + "SvgPathSeg" + ], + "SvgPathSegLinetoVerticalRel": [ + "SvgPathSeg" + ], + "SvgPathSegList": [], + "SvgPathSegMovetoAbs": [ + "SvgPathSeg" + ], + "SvgPathSegMovetoRel": [ + "SvgPathSeg" + ], + "SvgPatternElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgPoint": [], + "SvgPointList": [], + "SvgPolygonElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPolylineElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgPreserveAspectRatio": [], + "SvgRadialGradientElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGradientElement" + ], + "SvgRect": [], + "SvgRectElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGeometryElement", + "SvgGraphicsElement" + ], + "SvgScriptElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgSetElement": [ + "Element", + "EventTarget", + "Node", + "SvgAnimationElement", + "SvgElement" + ], + "SvgStopElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgStringList": [], + "SvgStyleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgSwitchElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgSymbolElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgTextContentElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgTextElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement", + "SvgTextPositioningElement" + ], + "SvgTextPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement" + ], + "SvgTextPositioningElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement" + ], + "SvgTitleElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgTransform": [], + "SvgTransformList": [], + "SvgUnitTypes": [], + "SvgUseElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgViewElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgZoomAndPan": [], + "SvgaElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgfeBlendElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeColorMatrixElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeComponentTransferElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeCompositeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeConvolveMatrixElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDiffuseLightingElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDisplacementMapElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDistantLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeDropShadowElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeFloodElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeFuncAElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncBElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncGElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeFuncRElement": [ + "Element", + "EventTarget", + "Node", + "SvgComponentTransferFunctionElement", + "SvgElement" + ], + "SvgfeGaussianBlurElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeImageElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMergeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMergeNodeElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeMorphologyElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeOffsetElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfePointLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeSpecularLightingElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeSpotLightElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeTileElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgfeTurbulenceElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvggElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgmPathElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement" + ], + "SvgsvgElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement" + ], + "SvgtSpanElement": [ + "Element", + "EventTarget", + "Node", + "SvgElement", + "SvgGraphicsElement", + "SvgTextContentElement", + "SvgTextPositioningElement" + ], + "TaskController": [ + "AbortController" + ], + "TaskControllerInit": [], + "TaskPriority": [], + "TaskPriorityChangeEvent": [ + "Event" + ], + "TaskPriorityChangeEventInit": [], + "TaskSignal": [ + "AbortSignal", + "EventTarget" + ], + "TaskSignalAnyInit": [], + "TcpReadyState": [], + "TcpServerSocket": [ + "EventTarget" + ], + "TcpServerSocketEvent": [ + "Event" + ], + "TcpServerSocketEventInit": [], + "TcpSocket": [ + "EventTarget" + ], + "TcpSocketBinaryType": [], + "TcpSocketErrorEvent": [ + "Event" + ], + "TcpSocketErrorEventInit": [], + "TcpSocketEvent": [ + "Event" + ], + "TcpSocketEventInit": [], + "Text": [ + "CharacterData", + "EventTarget", + "Node" + ], + "TextDecodeOptions": [], + "TextDecoder": [], + "TextDecoderOptions": [], + "TextEncoder": [], + "TextMetrics": [], + "TextTrack": [ + "EventTarget" + ], + "TextTrackCue": [ + "EventTarget" + ], + "TextTrackCueList": [], + "TextTrackKind": [], + "TextTrackList": [ + "EventTarget" + ], + "TextTrackMode": [], + "TimeEvent": [ + "Event" + ], + "TimeRanges": [], + "Touch": [], + "TouchEvent": [ + "Event", + "UiEvent" + ], + "TouchEventInit": [], + "TouchInit": [], + "TouchList": [], + "TrackEvent": [ + "Event" + ], + "TrackEventInit": [], + "TransformStream": [], + "TransformStreamDefaultController": [], + "Transformer": [], + "TransitionEvent": [ + "Event" + ], + "TransitionEventInit": [], + "Transport": [], + "TreeBoxObject": [], + "TreeCellInfo": [], + "TreeView": [], + "TreeWalker": [], + "U2f": [], + "U2fClientData": [], + "UdpMessageEventInit": [], + "UdpOptions": [], + "UiEvent": [ + "Event" + ], + "UiEventInit": [], + "UnderlyingSink": [], + "UnderlyingSource": [], + "Url": [], + "UrlSearchParams": [], + "Usb": [ + "EventTarget" + ], + "UsbAlternateInterface": [], + "UsbConfiguration": [], + "UsbConnectionEvent": [ + "Event" + ], + "UsbConnectionEventInit": [], + "UsbControlTransferParameters": [], + "UsbDevice": [], + "UsbDeviceFilter": [], + "UsbDeviceRequestOptions": [], + "UsbDirection": [], + "UsbEndpoint": [], + "UsbEndpointType": [], + "UsbInTransferResult": [], + "UsbInterface": [], + "UsbIsochronousInTransferPacket": [], + "UsbIsochronousInTransferResult": [], + "UsbIsochronousOutTransferPacket": [], + "UsbIsochronousOutTransferResult": [], + "UsbOutTransferResult": [], + "UsbPermissionDescriptor": [], + "UsbPermissionResult": [ + "EventTarget", + "PermissionStatus" + ], + "UsbPermissionStorage": [], + "UsbRecipient": [], + "UsbRequestType": [], + "UsbTransferStatus": [], + "UserActivation": [], + "UserProximityEvent": [ + "Event" + ], + "UserProximityEventInit": [], + "UserVerificationRequirement": [], + "ValidityState": [], + "ValueEvent": [ + "Event" + ], + "ValueEventInit": [], + "VideoColorPrimaries": [], + "VideoColorSpace": [], + "VideoColorSpaceInit": [], + "VideoConfiguration": [], + "VideoDecoder": [], + "VideoDecoderConfig": [], + "VideoDecoderInit": [], + "VideoDecoderSupport": [], + "VideoEncoder": [], + "VideoEncoderConfig": [], + "VideoEncoderEncodeOptions": [], + "VideoEncoderInit": [], + "VideoEncoderSupport": [], + "VideoFacingModeEnum": [], + "VideoFrame": [], + "VideoFrameBufferInit": [], + "VideoFrameCopyToOptions": [], + "VideoFrameInit": [], + "VideoMatrixCoefficients": [], + "VideoPixelFormat": [], + "VideoPlaybackQuality": [], + "VideoStreamTrack": [ + "EventTarget", + "MediaStreamTrack" + ], + "VideoTrack": [], + "VideoTrackList": [ + "EventTarget" + ], + "VideoTransferCharacteristics": [], + "ViewTransition": [], + "VisibilityState": [], + "VoidCallback": [], + "VrDisplay": [ + "EventTarget" + ], + "VrDisplayCapabilities": [], + "VrEye": [], + "VrEyeParameters": [], + "VrFieldOfView": [], + "VrFrameData": [], + "VrLayer": [], + "VrMockController": [], + "VrMockDisplay": [], + "VrPose": [], + "VrServiceTest": [], + "VrStageParameters": [], + "VrSubmitFrameResult": [], + "VttCue": [ + "EventTarget", + "TextTrackCue" + ], + "VttRegion": [], + "WakeLock": [], + "WakeLockSentinel": [ + "EventTarget" + ], + "WakeLockType": [], + "WatchAdvertisementsOptions": [], + "WaveShaperNode": [ + "AudioNode", + "EventTarget" + ], + "WaveShaperOptions": [], + "WebGl2RenderingContext": [], + "WebGlActiveInfo": [], + "WebGlBuffer": [], + "WebGlContextAttributes": [], + "WebGlContextEvent": [ + "Event" + ], + "WebGlContextEventInit": [], + "WebGlFramebuffer": [], + "WebGlPowerPreference": [], + "WebGlProgram": [], + "WebGlQuery": [], + "WebGlRenderbuffer": [], + "WebGlRenderingContext": [], + "WebGlSampler": [], + "WebGlShader": [], + "WebGlShaderPrecisionFormat": [], + "WebGlSync": [], + "WebGlTexture": [], + "WebGlTransformFeedback": [], + "WebGlUniformLocation": [], + "WebGlVertexArrayObject": [], + "WebKitCssMatrix": [ + "DomMatrix", + "DomMatrixReadOnly" + ], + "WebSocket": [ + "EventTarget" + ], + "WebSocketDict": [], + "WebSocketElement": [], + "WebTransport": [], + "WebTransportBidirectionalStream": [], + "WebTransportCloseInfo": [], + "WebTransportCongestionControl": [], + "WebTransportDatagramDuplexStream": [], + "WebTransportDatagramStats": [], + "WebTransportError": [ + "DomException" + ], + "WebTransportErrorOptions": [], + "WebTransportErrorSource": [], + "WebTransportHash": [], + "WebTransportOptions": [], + "WebTransportReceiveStream": [ + "ReadableStream" + ], + "WebTransportReceiveStreamStats": [], + "WebTransportReliabilityMode": [], + "WebTransportSendStream": [ + "WritableStream" + ], + "WebTransportSendStreamOptions": [], + "WebTransportSendStreamStats": [], + "WebTransportStats": [], + "WebglColorBufferFloat": [], + "WebglCompressedTextureAstc": [], + "WebglCompressedTextureAtc": [], + "WebglCompressedTextureEtc": [], + "WebglCompressedTextureEtc1": [], + "WebglCompressedTexturePvrtc": [], + "WebglCompressedTextureS3tc": [], + "WebglCompressedTextureS3tcSrgb": [], + "WebglDebugRendererInfo": [], + "WebglDebugShaders": [], + "WebglDepthTexture": [], + "WebglDrawBuffers": [], + "WebglLoseContext": [], + "WebglMultiDraw": [], + "WellKnownDirectory": [], + "WgslLanguageFeatures": [], + "WheelEvent": [ + "Event", + "MouseEvent", + "UiEvent" + ], + "WheelEventInit": [], + "WidevineCdmManifest": [], + "Window": [ + "EventTarget" + ], + "WindowClient": [ + "Client" + ], + "Worker": [ + "EventTarget" + ], + "WorkerDebuggerGlobalScope": [ + "EventTarget" + ], + "WorkerGlobalScope": [ + "EventTarget" + ], + "WorkerLocation": [], + "WorkerNavigator": [], + "WorkerOptions": [], + "WorkerType": [], + "Worklet": [], + "WorkletGlobalScope": [], + "WorkletOptions": [], + "WritableStream": [], + "WritableStreamDefaultController": [], + "WritableStreamDefaultWriter": [], + "WriteCommandType": [], + "WriteParams": [], + "XPathExpression": [], + "XPathNsResolver": [], + "XPathResult": [], + "XmlDocument": [ + "Document", + "EventTarget", + "Node" + ], + "XmlHttpRequest": [ + "EventTarget", + "XmlHttpRequestEventTarget" + ], + "XmlHttpRequestEventTarget": [ + "EventTarget" + ], + "XmlHttpRequestResponseType": [], + "XmlHttpRequestUpload": [ + "EventTarget", + "XmlHttpRequestEventTarget" + ], + "XmlSerializer": [], + "XrBoundedReferenceSpace": [ + "EventTarget", + "XrReferenceSpace", + "XrSpace" + ], + "XrEye": [], + "XrFrame": [], + "XrHand": [], + "XrHandJoint": [], + "XrHandedness": [], + "XrInputSource": [], + "XrInputSourceArray": [], + "XrInputSourceEvent": [ + "Event" + ], + "XrInputSourceEventInit": [], + "XrInputSourcesChangeEvent": [ + "Event" + ], + "XrInputSourcesChangeEventInit": [], + "XrJointPose": [ + "XrPose" + ], + "XrJointSpace": [ + "EventTarget", + "XrSpace" + ], + "XrLayer": [ + "EventTarget" + ], + "XrPermissionDescriptor": [], + "XrPermissionStatus": [ + "EventTarget", + "PermissionStatus" + ], + "XrPose": [], + "XrReferenceSpace": [ + "EventTarget", + "XrSpace" + ], + "XrReferenceSpaceEvent": [ + "Event" + ], + "XrReferenceSpaceEventInit": [], + "XrReferenceSpaceType": [], + "XrRenderState": [], + "XrRenderStateInit": [], + "XrRigidTransform": [], + "XrSession": [ + "EventTarget" + ], + "XrSessionEvent": [ + "Event" + ], + "XrSessionEventInit": [], + "XrSessionInit": [], + "XrSessionMode": [], + "XrSessionSupportedPermissionDescriptor": [], + "XrSpace": [ + "EventTarget" + ], + "XrSystem": [ + "EventTarget" + ], + "XrTargetRayMode": [], + "XrView": [], + "XrViewerPose": [ + "XrPose" + ], + "XrViewport": [], + "XrVisibilityState": [], + "XrWebGlLayer": [ + "EventTarget", + "XrLayer" + ], + "XrWebGlLayerInit": [], + "XsltProcessor": [], + "console": [], + "css": [], + "gpu_buffer_usage": [], + "gpu_color_write": [], + "gpu_map_mode": [], + "gpu_shader_stage": [], + "gpu_texture_usage": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-sys-0.3.69/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=web_sys_unstable_apis" + ] + } + } + }, + "publish": null, + "authors": [ + "The wasm-bindgen Developers" + ], + "categories": [], + "keywords": [], + "readme": "./README.md", + "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", + "homepage": "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html", + "documentation": "https://rustwasm.github.io/wasm-bindgen/api/web_sys/", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.57" + }, + { + "name": "web-time", + "version": "1.1.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Drop-in replacement for std::time for Wasm in browsers", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "futures-channel", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": "cfg(all(target_family = \"wasm\", target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "futures-util", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "WorkerGlobalScope" + ], + "target": "cfg(all(target_family = \"wasm\", target_feature = \"atomics\"))", + "registry": null + }, + { + "name": "js-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.20", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "wasm-bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.70", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", + "registry": null + }, + { + "name": "pollster", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macro" + ], + "target": "cfg(not(target_family = \"wasm\"))", + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": "cfg(target_family = \"wasm\")", + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_family = \"wasm\")", + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_family = \"wasm\")", + "registry": null + }, + { + "name": "wasm-bindgen-futures", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_family = \"wasm\")", + "registry": null + }, + { + "name": "wasm-bindgen-test", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(target_family = \"wasm\")", + "registry": null + }, + { + "name": "web-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "CssStyleDeclaration", + "Document", + "Element", + "HtmlTableElement", + "HtmlTableRowElement", + "Performance", + "Window" + ], + "target": "cfg(target_family = \"wasm\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "web_time", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/benches/benchmark.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/tests/serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg=docsrs" + ], + "targets": [ + "wasm32-unknown-unknown" + ] + } + } + }, + "publish": null, + "authors": [], + "categories": [ + "api-bindings", + "date-and-time", + "wasm" + ], + "keywords": [ + "instant", + "wasm", + "web", + "systemtime", + "time" + ], + "readme": "README.md", + "repository": "https://github.com/daxpedda/web-time", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "webpki-roots", + "version": "0.26.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1", + "license": "MPL-2.0", + "license_file": null, + "description": "Mozilla's CA root certificates for use with webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "rustls-pki-types", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": null, + "rename": "pki-types", + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "percent-encoding", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rcgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "ring", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.17.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustls", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.22", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tokio", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "macros", + "rt-multi-thread" + ], + "target": null, + "registry": null + }, + { + "name": "rustls-webpki", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.102", + "kind": "dev", + "rename": "webpki", + "optional": false, + "uses_default_features": true, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "x509-parser", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.15.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yasna", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "webpki_roots", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "codegen", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/tests/codegen.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "verify", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/tests/verify.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/rustls/webpki-roots", + "homepage": "https://github.com/rustls/webpki-roots", + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "which", + "version": "6.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", + "license": "MIT", + "license_file": null, + "description": "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "tempfile", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.9.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustix", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.38.30", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "fs", + "std" + ], + "target": "cfg(any(unix, target_os = \"wasi\", target_os = \"redox\"))", + "registry": null + }, + { + "name": "home", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.9", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(windows, unix, target_os = \"redox\"))", + "registry": null + }, + { + "name": "winsafe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.0.19", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "kernel" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "which", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/which-6.0.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/which-6.0.1/tests/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "regex": [ + "dep:regex" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/which-6.0.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Harry Fei " + ], + "categories": [ + "os", + "filesystem" + ], + "keywords": [ + "which", + "which-rs", + "unix", + "command" + ], + "readme": "README.md", + "repository": "https://github.com/harryfei/which-rs.git", + "homepage": null, + "documentation": "https://docs.rs/which/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.70" + }, + { + "name": "wild", + "version": "2.2.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "Glob (wildcard) expanded command-line arguments on Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "glob", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "wild", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wild-2.2.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "glob-quoted-on-windows": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wild-2.2.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs", + "--generate-link-to-definition" + ], + "targets": [ + "x86_64-unknown-linux-gnu" + ] + } + } + }, + "publish": null, + "authors": [ + "Kornel " + ], + "categories": [ + "command-line-interface", + "os::windows-apis" + ], + "keywords": [ + "wildcards", + "glob", + "windows", + "shell", + "CommandLineToArgvW" + ], + "readme": "README.md", + "repository": "https://gitlab.com/kornelski/wild", + "homepage": "https://lib.rs/crates/wild", + "documentation": "https://docs.rs/wild", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "winapi", + "version": "0.3.9", + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Raw FFI bindings for all of Windows API.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "winapi-i686-pc-windows-gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "i686-pc-windows-gnu", + "registry": null + }, + { + "name": "winapi-x86_64-pc-windows-gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "x86_64-pc-windows-gnu", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winapi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-0.3.9/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-0.3.9/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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" + ] + } + } + }, + "publish": null, + "authors": [ + "Peter Atashian " + ], + "categories": [ + "external-ffi-bindings", + "no-std", + "os::windows-apis" + ], + "keywords": [ + "windows", + "ffi", + "win32", + "com", + "directx" + ], + "readme": "README.md", + "repository": "https://github.com/retep998/winapi-rs", + "homepage": null, + "documentation": "https://docs.rs/winapi/", + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "winapi-i686-pc-windows-gnu", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-i686-pc-windows-gnu@0.4.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winapi_i686_pc_windows_gnu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Peter Atashian " + ], + "categories": [], + "keywords": [ + "windows" + ], + "readme": null, + "repository": "https://github.com/retep998/winapi-rs", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "winapi-util", + "version": "0.1.8", + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", + "license": "Unlicense OR MIT", + "license_file": null, + "description": "A dumping ground for high level safe wrappers over windows-sys.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "Win32_Foundation", + "Win32_Storage_FileSystem", + "Win32_System_Console", + "Win32_System_SystemInformation" + ], + "target": "cfg(windows)", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winapi_util", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-util-0.1.8/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-util-0.1.8/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "targets": [ + "x86_64-pc-windows-msvc" + ] + } + } + }, + "publish": null, + "authors": [ + "Andrew Gallant " + ], + "categories": [ + "os::windows-apis", + "external-ffi-bindings" + ], + "keywords": [ + "windows", + "windows-sys", + "util", + "win" + ], + "readme": "README.md", + "repository": "https://github.com/BurntSushi/winapi-util", + "homepage": "https://github.com/BurntSushi/winapi-util", + "documentation": "https://docs.rs/winapi-util", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "winapi-x86_64-pc-windows-gnu", + "version": "0.4.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-x86_64-pc-windows-gnu@0.4.0", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winapi_x86_64_pc_windows_gnu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", + "edition": "2015", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", + "edition": "2015", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Peter Atashian " + ], + "categories": [], + "keywords": [ + "windows" + ], + "readme": null, + "repository": "https://github.com/retep998/winapi-rs", + "homepage": null, + "documentation": null, + "edition": "2015", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows-core", + "version": "0.52.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Rust for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_core", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-core-0.52.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "default": [], + "implement": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-core-0.52.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows-sys", + "version": "0.48.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Rust for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.48.0/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "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": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.48.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.48" + }, + { + "name": "windows-sys", + "version": "0.52.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Rust for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.52.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "Wdk": [], + "Wdk_Foundation": [ + "Wdk" + ], + "Wdk_Graphics": [ + "Wdk" + ], + "Wdk_Graphics_Direct3D": [ + "Wdk_Graphics" + ], + "Wdk_Storage": [ + "Wdk" + ], + "Wdk_Storage_FileSystem": [ + "Wdk_Storage" + ], + "Wdk_Storage_FileSystem_Minifilters": [ + "Wdk_Storage_FileSystem" + ], + "Wdk_System": [ + "Wdk" + ], + "Wdk_System_IO": [ + "Wdk_System" + ], + "Wdk_System_OfflineRegistry": [ + "Wdk_System" + ], + "Wdk_System_Registry": [ + "Wdk_System" + ], + "Wdk_System_SystemInformation": [ + "Wdk_System" + ], + "Wdk_System_SystemServices": [ + "Wdk_System" + ], + "Wdk_System_Threading": [ + "Wdk_System" + ], + "Win32": [], + "Win32_Data": [ + "Win32" + ], + "Win32_Data_HtmlHelp": [ + "Win32_Data" + ], + "Win32_Data_RightsManagement": [ + "Win32_Data" + ], + "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_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_HumanInterfaceDevice": [ + "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_GdiPlus": [ + "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_DxMediaObjects": [ + "Win32_Media" + ], + "Win32_Media_KernelStreaming": [ + "Win32_Media" + ], + "Win32_Media_Multimedia": [ + "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_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_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_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_Clustering": [ + "Win32_Networking" + ], + "Win32_Networking_HttpServer": [ + "Win32_Networking" + ], + "Win32_Networking_Ldap": [ + "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_Authorization": [ + "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_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_DistributedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_FileHistory": [ + "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_Nvme": [ + "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_ProjectedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_StructuredStorage": [ + "Win32_Storage" + ], + "Win32_Storage_Vhd": [ + "Win32_Storage" + ], + "Win32_Storage_Xps": [ + "Win32_Storage" + ], + "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_ClrHosting": [ + "Win32_System" + ], + "Win32_System_Com": [ + "Win32_System" + ], + "Win32_System_Com_Marshal": [ + "Win32_System_Com" + ], + "Win32_System_Com_StructuredStorage": [ + "Win32_System_Com" + ], + "Win32_System_Com_Urlmon": [ + "Win32_System_Com" + ], + "Win32_System_ComponentServices": [ + "Win32_System" + ], + "Win32_System_Console": [ + "Win32_System" + ], + "Win32_System_CorrelationVector": [ + "Win32_System" + ], + "Win32_System_DataExchange": [ + "Win32_System" + ], + "Win32_System_DeploymentServices": [ + "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_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_Ole": [ + "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_Recovery": [ + "Win32_System" + ], + "Win32_System_Registry": [ + "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_Services": [ + "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_Threading": [ + "Win32_System" + ], + "Win32_System_Time": [ + "Win32_System" + ], + "Win32_System_TpmBaseServices": [ + "Win32_System" + ], + "Win32_System_UserAccessLogging": [ + "Win32_System" + ], + "Win32_System_Variant": [ + "Win32_System" + ], + "Win32_System_VirtualDosMachines": [ + "Win32_System" + ], + "Win32_System_WindowsProgramming": [ + "Win32_System" + ], + "Win32_System_Wmi": [ + "Win32_System" + ], + "Win32_UI": [ + "Win32" + ], + "Win32_UI_Accessibility": [ + "Win32_UI" + ], + "Win32_UI_ColorSystem": [ + "Win32_UI" + ], + "Win32_UI_Controls": [ + "Win32_UI" + ], + "Win32_UI_Controls_Dialogs": [ + "Win32_UI_Controls" + ], + "Win32_UI_HiDpi": [ + "Win32_UI" + ], + "Win32_UI_Input": [ + "Win32_UI" + ], + "Win32_UI_Input_Ime": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_KeyboardAndMouse": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Pointer": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Touch": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_XboxController": [ + "Win32_UI_Input" + ], + "Win32_UI_InteractionContext": [ + "Win32_UI" + ], + "Win32_UI_Magnification": [ + "Win32_UI" + ], + "Win32_UI_Shell": [ + "Win32_UI" + ], + "Win32_UI_Shell_PropertiesSystem": [ + "Win32_UI_Shell" + ], + "Win32_UI_TabletPC": [ + "Win32_UI" + ], + "Win32_UI_TextServices": [ + "Win32_UI" + ], + "Win32_UI_WindowsAndMessaging": [ + "Win32_UI" + ], + "Win32_Web": [ + "Win32" + ], + "Win32_Web_InternetExplorer": [ + "Win32_Web" + ], + "default": [], + "docs": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.52.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows-sys", + "version": "0.59.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Rust for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows-targets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.59.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": false, + "test": false + } + ], + "features": { + "Wdk": [ + "Win32_Foundation" + ], + "Wdk_Devices": [ + "Wdk" + ], + "Wdk_Devices_Bluetooth": [ + "Wdk_Devices" + ], + "Wdk_Devices_HumanInterfaceDevice": [ + "Wdk_Devices" + ], + "Wdk_Foundation": [ + "Wdk" + ], + "Wdk_Graphics": [ + "Wdk" + ], + "Wdk_Graphics_Direct3D": [ + "Wdk_Graphics" + ], + "Wdk_NetworkManagement": [ + "Wdk" + ], + "Wdk_NetworkManagement_Ndis": [ + "Wdk_NetworkManagement" + ], + "Wdk_NetworkManagement_WindowsFilteringPlatform": [ + "Wdk_NetworkManagement" + ], + "Wdk_Storage": [ + "Wdk" + ], + "Wdk_Storage_FileSystem": [ + "Wdk_Storage" + ], + "Wdk_Storage_FileSystem_Minifilters": [ + "Wdk_Storage_FileSystem" + ], + "Wdk_System": [ + "Wdk" + ], + "Wdk_System_IO": [ + "Wdk_System" + ], + "Wdk_System_Memory": [ + "Wdk_System" + ], + "Wdk_System_OfflineRegistry": [ + "Wdk_System" + ], + "Wdk_System_Registry": [ + "Wdk_System" + ], + "Wdk_System_SystemInformation": [ + "Wdk_System" + ], + "Wdk_System_SystemServices": [ + "Wdk_System" + ], + "Wdk_System_Threading": [ + "Wdk_System" + ], + "Win32": [ + "Win32_Foundation" + ], + "Win32_Data": [ + "Win32" + ], + "Win32_Data_HtmlHelp": [ + "Win32_Data" + ], + "Win32_Data_RightsManagement": [ + "Win32_Data" + ], + "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_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_HumanInterfaceDevice": [ + "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_GdiPlus": [ + "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_DxMediaObjects": [ + "Win32_Media" + ], + "Win32_Media_KernelStreaming": [ + "Win32_Media" + ], + "Win32_Media_Multimedia": [ + "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_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_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_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_Clustering": [ + "Win32_Networking" + ], + "Win32_Networking_HttpServer": [ + "Win32_Networking" + ], + "Win32_Networking_Ldap": [ + "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_Authorization": [ + "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_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_DistributedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_FileHistory": [ + "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_Nvme": [ + "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_ProjectedFileSystem": [ + "Win32_Storage" + ], + "Win32_Storage_StructuredStorage": [ + "Win32_Storage" + ], + "Win32_Storage_Vhd": [ + "Win32_Storage" + ], + "Win32_Storage_Xps": [ + "Win32_Storage" + ], + "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_ClrHosting": [ + "Win32_System" + ], + "Win32_System_Com": [ + "Win32_System" + ], + "Win32_System_Com_Marshal": [ + "Win32_System_Com" + ], + "Win32_System_Com_StructuredStorage": [ + "Win32_System_Com" + ], + "Win32_System_Com_Urlmon": [ + "Win32_System_Com" + ], + "Win32_System_ComponentServices": [ + "Win32_System" + ], + "Win32_System_Console": [ + "Win32_System" + ], + "Win32_System_CorrelationVector": [ + "Win32_System" + ], + "Win32_System_DataExchange": [ + "Win32_System" + ], + "Win32_System_DeploymentServices": [ + "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_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_Diagnostics_TraceLogging": [ + "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_Ole": [ + "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_Recovery": [ + "Win32_System" + ], + "Win32_System_Registry": [ + "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_Services": [ + "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_Threading": [ + "Win32_System" + ], + "Win32_System_Time": [ + "Win32_System" + ], + "Win32_System_TpmBaseServices": [ + "Win32_System" + ], + "Win32_System_UserAccessLogging": [ + "Win32_System" + ], + "Win32_System_Variant": [ + "Win32_System" + ], + "Win32_System_VirtualDosMachines": [ + "Win32_System" + ], + "Win32_System_WindowsProgramming": [ + "Win32_System" + ], + "Win32_System_Wmi": [ + "Win32_System" + ], + "Win32_UI": [ + "Win32" + ], + "Win32_UI_Accessibility": [ + "Win32_UI" + ], + "Win32_UI_ColorSystem": [ + "Win32_UI" + ], + "Win32_UI_Controls": [ + "Win32_UI" + ], + "Win32_UI_Controls_Dialogs": [ + "Win32_UI_Controls" + ], + "Win32_UI_HiDpi": [ + "Win32_UI" + ], + "Win32_UI_Input": [ + "Win32_UI" + ], + "Win32_UI_Input_Ime": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_KeyboardAndMouse": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Pointer": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_Touch": [ + "Win32_UI_Input" + ], + "Win32_UI_Input_XboxController": [ + "Win32_UI_Input" + ], + "Win32_UI_InteractionContext": [ + "Win32_UI" + ], + "Win32_UI_Magnification": [ + "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_Web": [ + "Win32" + ], + "Win32_Web_InternetExplorer": [ + "Win32_Web" + ], + "default": [], + "docs": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.59.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [ + "os::windows-apis" + ], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "windows-targets", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import libs for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows_aarch64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "aarch64-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_aarch64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_x86_64_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_x86_64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_x86_64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.48.5", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "x86_64-pc-windows-gnullvm", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_targets", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.48.5/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows-targets", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import libs for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "windows_aarch64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "aarch64-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_x86_64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_aarch64_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_msvc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_x86_64_gnu", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", + "registry": null + }, + { + "name": "windows_i686_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "i686-pc-windows-gnullvm", + "registry": null + }, + { + "name": "windows_x86_64_gnullvm", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.52.6", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "x86_64-pc-windows-gnullvm", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_targets", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.52.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": "readme.md", + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_aarch64_gnullvm", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_gnullvm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_aarch64_gnullvm", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_gnullvm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_aarch64_msvc", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_msvc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_aarch64_msvc", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_aarch64_msvc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_i686_gnu", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_i686_gnu", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_i686_gnullvm", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_gnullvm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_i686_msvc", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_msvc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_i686_msvc", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_i686_msvc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_x86_64_gnu", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_x86_64_gnu", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnu", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_x86_64_gnullvm", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnullvm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_x86_64_gnullvm", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_gnullvm", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "windows_x86_64_msvc", + "version": "0.48.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_msvc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "windows_x86_64_msvc", + "version": "0.52.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "Import lib for Windows", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "windows_x86_64_msvc", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6/build.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "default-target": "x86_64-pc-windows-msvc", + "targets": [] + } + } + }, + "publish": null, + "authors": [ + "Microsoft" + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/microsoft/windows-rs", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.56" + }, + { + "name": "winnow", + "version": "0.6.18", + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18", + "license": "MIT", + "license_file": null, + "description": "A byte-oriented, zero-copy, parser combinators library", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "anstream", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anstyle", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.9", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "memchr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "terminal_size", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.6", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "annotate-snippets", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "anyhow", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.86", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "automod", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.14", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "circular", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "lexopt", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "proptest", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rustc-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "snapbox", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.6.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "examples" + ], + "target": null, + "registry": null + }, + { + "name": "term-transcript", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winnow", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/arithmetic/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "css", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/css/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "custom_error", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/custom_error.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/http/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/ini/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "iterator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/iterator.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/json/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "json_iterator", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/json_iterator.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "ndjson", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/ndjson/main.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "s_expression", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/s_expression/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "string", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/string/main.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "arithmetic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/arithmetic/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "contains_token", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/contains_token.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "find_slice", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/find_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "http", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/http/bench.rs", + "edition": "2021", + "required-features": [ + "alloc" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "ini", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/ini/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "iter", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/iter.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "json", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/json/bench.rs", + "edition": "2021", + "required-features": [ + "std" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "next_slice", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/next_slice.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "number", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/number.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "alloc": [], + "debug": [ + "std", + "dep:anstream", + "dep:anstyle", + "dep:is-terminal", + "dep:terminal_size" + ], + "default": [ + "std" + ], + "simd": [ + "dep:memchr" + ], + "std": [ + "alloc", + "memchr?/std" + ], + "unstable-doc": [ + "alloc", + "std", + "simd", + "unstable-recover" + ], + "unstable-recover": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/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": "" + }, + { + "exactly": 1, + "file": "src/lib.rs", + "replace": "blob/v{{version}}/CHANGELOG.md", + "search": "blob/v.+\\..+\\..+/CHANGELOG.md" + } + ] + } + }, + "publish": null, + "authors": [], + "categories": [ + "parsing" + ], + "keywords": [ + "parser", + "parser-combinators", + "parsing", + "streaming", + "bit" + ], + "readme": "README.md", + "repository": "https://github.com/winnow-rs/winnow", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.65.0" + }, + { + "name": "winsafe", + "version": "0.0.19", + "id": "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19", + "license": "MIT", + "license_file": null, + "description": "Windows API and GUI in safe, idiomatic Rust.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "winsafe", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winsafe-0.0.19/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "comctl": [ + "ole" + ], + "dshow": [ + "oleaut" + ], + "dwm": [ + "uxtheme" + ], + "dxgi": [ + "ole" + ], + "gdi": [ + "user" + ], + "gui": [ + "comctl", + "shell", + "uxtheme" + ], + "kernel": [], + "mf": [ + "oleaut" + ], + "ole": [ + "user" + ], + "oleaut": [ + "ole" + ], + "shell": [ + "oleaut" + ], + "taskschd": [ + "oleaut" + ], + "user": [ + "kernel" + ], + "uxtheme": [ + "gdi", + "ole" + ], + "version": [ + "kernel" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winsafe-0.0.19/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "default-target": "x86_64-pc-windows-msvc", + "rustdoc-args": [ + "--cfg", + "docsrs" + ], + "targets": [ + "aarch64-pc-windows-msvc", + "i686-pc-windows-msvc", + "x86_64-pc-windows-msvc" + ] + } + } + }, + "publish": null, + "authors": [ + "Rodrigo Cesar de Freitas Dias " + ], + "categories": [ + "api-bindings", + "gui", + "os::windows-apis" + ], + "keywords": [ + "com", + "ffi", + "gui", + "win32", + "windows" + ], + "readme": "README.md", + "repository": "https://github.com/rodrigocfd/winsafe", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "write16", + "version": "1.0.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "description": "A UTF-16 analog of the Write trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "arrayvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "smallvec", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "write16", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/write16-1.0.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "arrayvec": [ + "dep:arrayvec" + ], + "smallvec": [ + "dep:smallvec" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/write16-1.0.0/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [], + "categories": [ + "text-processing", + "internationalization" + ], + "keywords": [ + "unicode", + "utf-16" + ], + "readme": "README.md", + "repository": "https://github.com/hsivonen/write16", + "homepage": "https://docs.rs/write16/", + "documentation": "https://docs.rs/write16/", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "writeable", + "version": "0.5.5", + "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "license": "Unicode-3.0", + "license_file": null, + "description": "A more efficient alternative to fmt::Display", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "either", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.9.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "writeable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "writeable_message", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/examples/writeable_message.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "writeable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/tests/writeable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "writeable", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/benches/writeable.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [], + "either": [ + "dep:either" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ] + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "yansi", + "version": "1.0.1", + "id": "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1", + "license": "MIT OR Apache-2.0", + "license_file": null, + "description": "A dead simple ANSI terminal color painting library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "is-terminal", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.11", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yansi", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-1.0.1/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "basic", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-1.0.1/tests/basic.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "_nightly": [], + "alloc": [], + "default": [ + "std" + ], + "detect-env": [ + "std" + ], + "detect-tty": [ + "is-terminal", + "std" + ], + "hyperlink": [ + "std" + ], + "is-terminal": [ + "dep:is-terminal" + ], + "std": [ + "alloc" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-1.0.1/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + } + }, + "publish": null, + "authors": [ + "Sergio Benitez " + ], + "categories": [ + "command-line-interface" + ], + "keywords": [ + "ansi", + "terminal", + "color", + "format", + "paint" + ], + "readme": "README.md", + "repository": "https://github.com/SergioBenitez/yansi", + "homepage": null, + "documentation": "https://docs.rs/yansi", + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.63" + }, + { + "name": "yansi-term", + "version": "0.1.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2", + "license": "MIT", + "license_file": null, + "description": "Library for ANSI terminal colours and styles (bold, underline)", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "doc-comment", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "regex", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "winapi", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.4", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "consoleapi", + "errhandlingapi", + "fileapi", + "handleapi", + "processenv" + ], + "target": "cfg(target_os = \"windows\")", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yansi_term", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "256_colours", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/256_colours.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "basic_colours", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/basic_colours.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "overwrite", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/overwrite.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "rgb_colours", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/rgb_colours.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "derive_serde_style": [ + "serde" + ], + "serde": [ + "dep:serde" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "ogham@bsago.me", + "Ryan Scheel (Havvy) ", + "Josh Triplett ", + "Juan Aguilar Santillana " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/botika/yansi-term", + "homepage": "https://github.com/botika/yansi-term", + "documentation": "https://docs.rs/yansi-term", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "yoke", + "version": "0.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "stable_deref_trait", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.7.4", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "yoke", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "bincode", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/tests/bincode.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "miri", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/tests/miri.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "alloc": [ + "stable_deref_trait/alloc", + "serde?/alloc", + "zerofrom/alloc" + ], + "default": [ + "alloc", + "zerofrom" + ], + "derive": [ + "dep:yoke-derive", + "zerofrom/derive" + ], + "serde": [ + "dep:serde" + ], + "zerofrom": [ + "dep:zerofrom" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/Cargo.toml", + "metadata": { + "cargo-all-features": { + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow", + "self-referential" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "yoke-derive", + "version": "0.7.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the yoke crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "yoke_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "yoke_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.4/examples/yoke_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.4/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow", + "self-referential" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zerocopy", + "version": "0.7.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Utilities for zero-copy parsing and serialization", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.32", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "assert_matches", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "elain", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "itertools", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "small_rng" + ], + "target": null, + "registry": null + }, + { + "name": "rustversion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.85", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.32", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerocopy-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=0.7.32", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any())", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerocopy", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.7.32/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.7.32/tests/trybuild.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "__internal_use_only_features_that_work_on_stable": [ + "alloc", + "derive", + "simd" + ], + "alloc": [], + "byteorder": [ + "dep:byteorder" + ], + "default": [ + "byteorder" + ], + "derive": [ + "zerocopy-derive" + ], + "simd": [], + "simd-nightly": [ + "simd" + ], + "zerocopy-derive": [ + "dep:zerocopy-derive" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.7.32/Cargo.toml", + "metadata": { + "ci": { + "pinned-nightly": "nightly-2023-12-05", + "pinned-stable": "1.74.0" + }, + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "doc_cfg", + "--generate-link-to-definition" + ] + } + }, + "playground": { + "features": [ + "__internal_use_only_features_that_work_on_stable" + ] + } + }, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser " + ], + "categories": [], + "keywords": [], + "readme": "README.md", + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "zerocopy-derive", + "version": "0.7.32", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32", + "license": "BSD-2-Clause OR Apache-2.0 OR MIT", + "license_file": null, + "description": "Custom derive for traits from the zerocopy crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.10", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.31", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "static_assertions", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "trybuild", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "=1.0.85", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "diff" + ], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerocopy_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_as_bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_as_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_from_zeroes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_from_zeroes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_known_layout", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_known_layout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "enum_unaligned", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_unaligned.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "hygiene", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/hygiene.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "paths_and_modules", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/paths_and_modules.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "priv_in_pub", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/priv_in_pub.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_as_bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_as_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_from_bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_from_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_from_zeroes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_from_zeroes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_known_layout", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_known_layout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "struct_unaligned", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_unaligned.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "trybuild", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/trybuild.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_as_bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_as_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_from_bytes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_from_bytes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_from_zeroes", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_from_zeroes.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_known_layout", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_known_layout.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "union_unaligned", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_unaligned.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "util", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/util.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Joshua Liebow-Feeser " + ], + "categories": [], + "keywords": [], + "readme": null, + "repository": "https://github.com/google/zerocopy", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": "1.60.0" + }, + { + "name": "zerofrom", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "ZeroFrom trait for constructing", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zerofrom-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerofrom", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-0.1.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + } + ], + "features": { + "alloc": [], + "default": [ + "alloc" + ], + "derive": [ + "dep:zerofrom-derive" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-0.1.4/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "zerofrom-derive", + "version": "0.1.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the zerofrom crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "fold" + ], + "target": null, + "registry": null + }, + { + "name": "synstructure", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.13.0", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerofrom_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zf_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.4/examples/zf_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.4/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "data-structures", + "memory-management", + "caching", + "no-std" + ], + "keywords": [ + "zerocopy", + "serialization", + "lifetime", + "borrow" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zeroize", + "version": "1.7.0", + "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0", + "license": "Apache-2.0 OR MIT", + "license_file": null, + "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", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zeroize_derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zeroize", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zeroize", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/tests/zeroize.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zeroize_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/tests/zeroize_derive.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + } + ], + "features": { + "aarch64": [], + "alloc": [], + "default": [ + "alloc" + ], + "derive": [ + "zeroize_derive" + ], + "serde": [ + "dep:serde" + ], + "std": [ + "alloc" + ], + "zeroize_derive": [ + "dep:zeroize_derive" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "all-features": true, + "rustdoc-args": [ + "--cfg", + "docsrs" + ] + } + } + }, + "publish": null, + "authors": [ + "The RustCrypto Project Developers" + ], + "categories": [ + "cryptography", + "memory-management", + "no-std", + "os" + ], + "keywords": [ + "memory", + "memset", + "secure", + "volatile", + "zero" + ], + "readme": "README.md", + "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.60" + }, + { + "name": "zerovec", + "version": "0.10.4", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "license": "Unicode-3.0", + "license_file": null, + "description": "Zero-copy vector backed by a byte array", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "databake", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.8", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "alloc" + ], + "target": null, + "registry": null + }, + { + "name": "twox-hash", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "yoke", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": ">=0.6.0, <0.8.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerofrom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zerovec-derive", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "js" + ], + "target": null, + "registry": null + }, + { + "name": "iai", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "postcard", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "use-std" + ], + "target": null, + "registry": null + }, + { + "name": "rand", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_distr", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rand_pcg", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "rmp-serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.2.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "criterion", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(not(target_arch = \"wasm32\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zerovec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zv_serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/examples/zv_serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "vzv", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/vzv.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zeromap", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zeromap.rs", + "edition": "2021", + "required-features": [ + "serde", + "hashmap", + "derive" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zerovec.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec_iai", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zerovec_iai.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "zerovec_serde", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zerovec_serde.rs", + "edition": "2021", + "required-features": [ + "serde" + ], + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bench": [ + "serde", + "databake" + ], + "databake": [ + "dep:databake" + ], + "derive": [ + "dep:zerovec-derive" + ], + "hashmap": [ + "dep:twox-hash" + ], + "serde": [ + "dep:serde" + ], + "std": [], + "yoke": [ + "dep:yoke" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/Cargo.toml", + "metadata": { + "cargo-all-features": { + "denylist": [ + "bench" + ], + "max_combination_size": 3 + }, + "docs": { + "rs": { + "all-features": true + } + }, + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "The ICU4X Project Developers" + ], + "categories": [ + "rust-patterns", + "memory-management", + "caching", + "no-std", + "data-structures" + ], + "keywords": [ + "zerocopy", + "serialization", + "zero-copy", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.67" + }, + { + "name": "zerovec-derive", + "version": "0.10.3", + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "license": "Unicode-3.0", + "license_file": null, + "description": "Custom derive for the zerovec crate", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "proc-macro2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.61", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "quote", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.28", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "syn", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "extra-traits" + ], + "target": null, + "registry": null + }, + { + "name": "bincode", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.1", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "serde", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.110", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "derive" + ], + "target": null, + "registry": null + }, + { + "name": "serde_json", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "proc-macro" + ], + "crate_types": [ + "proc-macro" + ], + "name": "zerovec_derive", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "derives", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/examples/derives.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/examples/make.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "make_var", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/examples/make_var.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": {}, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/Cargo.toml", + "metadata": { + "workspaces": { + "independent": true + } + }, + "publish": null, + "authors": [ + "Manish Goregaokar " + ], + "categories": [ + "rust-patterns", + "memory-management", + "caching", + "no-std", + "data-structures" + ], + "keywords": [ + "zerocopy", + "serialization", + "zero-copy", + "serde" + ], + "readme": "README.md", + "repository": "https://github.com/unicode-org/icu4x", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zip", + "version": "0.6.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", + "license": "MIT", + "license_file": null, + "description": "Library to support the reading and writing of zip files.\n", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "aes", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "byteorder", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.4.3", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bzip2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.4.3", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "constant_time_eq", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crc32fast", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.3.2", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "flate2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.23", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + }, + { + "name": "hmac", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.12.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [ + "reset" + ], + "target": null, + "registry": null + }, + { + "name": "pbkdf2", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.0", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "sha1", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.10.1", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "zstd", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.11.2", + "kind": null, + "rename": null, + "optional": true, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "bencher", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.1.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "getrandom", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "time", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3.7", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "formatting", + "macros" + ], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.3.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "crossbeam-utils", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.8.8", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))", + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zip", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/src/lib.rs", + "edition": "2021", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "extract", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/extract.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "extract_lorem", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/extract_lorem.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "file_info", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/file_info.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stdin_info", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/stdin_info.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "write_dir", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/write_dir.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "write_sample", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/write_sample.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "aes_encryption", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/aes_encryption.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "end_to_end", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/end_to_end.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "invalid_date", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/invalid_date.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "issue_234", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/issue_234.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip64_large", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/zip64_large.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip_comment_garbage", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/zip_comment_garbage.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "test" + ], + "crate_types": [ + "bin" + ], + "name": "zip_crypto", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/zip_crypto.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": true + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read_entry", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/benches/read_entry.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "bench" + ], + "crate_types": [ + "bin" + ], + "name": "read_metadata", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/benches/read_metadata.rs", + "edition": "2021", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "aes": [ + "dep:aes" + ], + "aes-crypto": [ + "aes", + "constant_time_eq", + "hmac", + "pbkdf2", + "sha1" + ], + "bzip2": [ + "dep:bzip2" + ], + "constant_time_eq": [ + "dep:constant_time_eq" + ], + "default": [ + "aes-crypto", + "bzip2", + "deflate", + "time", + "zstd" + ], + "deflate": [ + "flate2/rust_backend" + ], + "deflate-miniz": [ + "flate2/default" + ], + "deflate-zlib": [ + "flate2/zlib" + ], + "flate2": [ + "dep:flate2" + ], + "hmac": [ + "dep:hmac" + ], + "pbkdf2": [ + "dep:pbkdf2" + ], + "sha1": [ + "dep:sha1" + ], + "time": [ + "dep:time" + ], + "unreserved": [], + "zstd": [ + "dep:zstd" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/Cargo.toml", + "metadata": null, + "publish": null, + "authors": [ + "Mathijs van de Nes ", + "Marli Frost ", + "Ryan Levick " + ], + "categories": [], + "keywords": [ + "zip", + "archive" + ], + "readme": "README.md", + "repository": "https://github.com/zip-rs/zip.git", + "homepage": null, + "documentation": null, + "edition": "2021", + "links": null, + "default_run": null, + "rust_version": "1.59.0" + }, + { + "name": "zstd", + "version": "0.11.2+zstd.1.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2", + "license": "MIT", + "license_file": null, + "description": "Binding for the zstd compression library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "zstd-safe", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^5.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [ + "std" + ], + "target": null, + "registry": null + }, + { + "name": "clap", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^3.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "humansize", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "partial-io", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.5", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "walkdir", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.2", + "kind": "dev", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zstd", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "benchmark", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/benchmark.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "stream", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/stream.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "train", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/train.rs", + "edition": "2018", + "required-features": [ + "zdict_builder" + ], + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zstd", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/zstd.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + }, + { + "kind": [ + "example" + ], + "crate_types": [ + "bin" + ], + "name": "zstdcat", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/zstdcat.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arrays": [ + "zstd-safe/arrays" + ], + "bindgen": [ + "zstd-safe/bindgen" + ], + "debug": [ + "zstd-safe/debug" + ], + "default": [ + "legacy", + "arrays", + "zdict_builder" + ], + "doc-cfg": [], + "experimental": [ + "zstd-safe/experimental" + ], + "legacy": [ + "zstd-safe/legacy" + ], + "no_asm": [ + "zstd-safe/no_asm" + ], + "pkg-config": [ + "zstd-safe/pkg-config" + ], + "thin": [ + "zstd-safe/thin" + ], + "wasm": [], + "zdict_builder": [ + "zstd-safe/zdict_builder" + ], + "zstdmt": [ + "zstd-safe/zstdmt" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "experimental", + "zstdmt", + "zdict_builder", + "doc-cfg" + ] + } + } + }, + "publish": null, + "authors": [ + "Alexandre Bury " + ], + "categories": [ + "compression", + "api-bindings" + ], + "keywords": [ + "zstd", + "zstandard", + "compression" + ], + "readme": "Readme.md", + "repository": "https://github.com/gyscos/zstd-rs", + "homepage": null, + "documentation": "https://docs.rs/zstd", + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zstd-safe", + "version": "5.0.2+zstd.1.5.2", + "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Safe low-level bindings for the zstd compression library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "libc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.2.21", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + }, + { + "name": "zstd-sys", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^2.0.1", + "kind": null, + "rename": null, + "optional": false, + "uses_default_features": false, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zstd_safe", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-5.0.2+zstd.1.5.2/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": true, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-5.0.2+zstd.1.5.2/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "arrays": [], + "bindgen": [ + "zstd-sys/bindgen" + ], + "debug": [ + "zstd-sys/debug" + ], + "default": [ + "legacy", + "arrays", + "zdict_builder" + ], + "doc-cfg": [], + "experimental": [ + "zstd-sys/experimental" + ], + "legacy": [ + "zstd-sys/legacy" + ], + "no_asm": [ + "zstd-sys/no_asm" + ], + "pkg-config": [ + "zstd-sys/pkg-config" + ], + "std": [ + "zstd-sys/std" + ], + "thin": [ + "zstd-sys/thin" + ], + "zdict_builder": [ + "zstd-sys/zdict_builder" + ], + "zstdmt": [ + "zstd-sys/zstdmt" + ] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-5.0.2+zstd.1.5.2/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "experimental", + "arrays", + "std", + "zdict_builder", + "doc-cfg" + ] + } + } + }, + "publish": null, + "authors": [ + "Alexandre Bury " + ], + "categories": [ + "api-bindings", + "compression" + ], + "keywords": [ + "zstd", + "zstandard", + "compression" + ], + "readme": "Readme.md", + "repository": "https://github.com/gyscos/zstd-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": null, + "default_run": null, + "rust_version": null + }, + { + "name": "zstd-sys", + "version": "2.0.11+zstd.1.5.6", + "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6", + "license": "MIT/Apache-2.0", + "license_file": null, + "description": "Low-level bindings for the zstd compression library.", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "dependencies": [ + { + "name": "bindgen", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.69", + "kind": "build", + "rename": null, + "optional": true, + "uses_default_features": false, + "features": [ + "runtime", + "which-rustfmt" + ], + "target": null, + "registry": null + }, + { + "name": "cc", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^1.0.45", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [ + "parallel" + ], + "target": null, + "registry": null + }, + { + "name": "pkg-config", + "source": "registry+https://github.com/rust-lang/crates.io-index", + "req": "^0.3", + "kind": "build", + "rename": null, + "optional": false, + "uses_default_features": true, + "features": [], + "target": null, + "registry": null + } + ], + "targets": [ + { + "kind": [ + "lib" + ], + "crate_types": [ + "lib" + ], + "name": "zstd_sys", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-sys-2.0.11+zstd.1.5.6/src/lib.rs", + "edition": "2018", + "doc": true, + "doctest": false, + "test": true + }, + { + "kind": [ + "custom-build" + ], + "crate_types": [ + "bin" + ], + "name": "build-script-build", + "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-sys-2.0.11+zstd.1.5.6/build.rs", + "edition": "2018", + "doc": false, + "doctest": false, + "test": false + } + ], + "features": { + "bindgen": [ + "dep:bindgen" + ], + "debug": [], + "default": [ + "legacy", + "zdict_builder" + ], + "experimental": [], + "fat-lto": [], + "legacy": [], + "no_asm": [], + "no_wasm_shim": [], + "non-cargo": [], + "pkg-config": [], + "std": [], + "thin": [], + "thin-lto": [], + "zdict_builder": [], + "zstdmt": [] + }, + "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-sys-2.0.11+zstd.1.5.6/Cargo.toml", + "metadata": { + "docs": { + "rs": { + "features": [ + "experimental" + ] + } + } + }, + "publish": null, + "authors": [ + "Alexandre Bury " + ], + "categories": [ + "api-bindings", + "compression" + ], + "keywords": [ + "zstd", + "zstandard", + "compression" + ], + "readme": "Readme.md", + "repository": "https://github.com/gyscos/zstd-rs", + "homepage": null, + "documentation": null, + "edition": "2018", + "links": "zstd", + "default_run": null, + "rust_version": "1.64" + } + ], + "workspace_members": [ + "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", + "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4" + ], + "workspace_default_members": [ + "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", + "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4" + ], + "resolve": { + "nodes": [ + { + "id": "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", + "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "zerocopy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "getrandom", + "runtime-rng", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "perf-literal", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2" + ], + "deps": [ + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yansi_term", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "default", + "yansi-term" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", + "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_query", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle_wincon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "colorchoice", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "auto", + "default", + "wincon" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1" + ], + "deps": [ + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "utf8" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", + "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0" + ], + "deps": [ + { + "name": "fs_err", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "os_str_bytes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", + "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", + "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "doc_comment", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globwalk", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "predicates", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "predicates_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "predicates_tree", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std", + "unicode" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0" + ], + "deps": [ + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde", + "serde1" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15" + ], + "deps": [ + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" + ], + "deps": [ + { + "name": "jobserver", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "jobserver", + "libc", + "once_cell", + "parallel" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1" + ], + "deps": [ + { + "name": "annotate_snippets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "android_tzdata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"android\")" + } + ] + }, + { + "name": "iana_time_zone", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "alloc", + "android-tzdata", + "clock", + "iana-time-zone", + "now", + "std", + "winapi", + "windows-targets" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "ciborium_io", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ciborium_ll", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1" + ], + "deps": [ + { + "name": "ciborium_io", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "half", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18" + ], + "deps": [ + { + "name": "clap_builder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "default", + "derive", + "env", + "error-context", + "help", + "std", + "string", + "suggestions", + "usage", + "wrap_help" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0" + ], + "deps": [ + { + "name": "anstream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_lex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strsim", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "terminal_size", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "color", + "env", + "error-context", + "help", + "std", + "string", + "suggestions", + "usage", + "wrap_help" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", + "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_complete", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_complete_nushell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "nushell" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2" + ], + "deps": [ + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_complete", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "heck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", + "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", + "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" + ], + "deps": [ + { + "name": "nix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "terminfo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "which", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winapi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "no-color" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" + ], + "deps": [ + { + "name": "castaway", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ryu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "encode_unicode", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "ansi-parsing", + "unicode-width" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", + "dependencies": [], + "deps": [], + "features": [ + "default", + "link" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0" + ], + "deps": [ + { + "name": "dashmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "dashmap", + "enable", + "once_cell", + "rustc-hash" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "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\"))" + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", + "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", + "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "anes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ciborium", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "criterion_plot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_terminal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "num_traits", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "oorandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinytemplate", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5" + ], + "deps": [ + { + "name": "cast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" + ], + "deps": [ + { + "name": "crossbeam_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_epoch", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_queue", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" + ], + "deps": [ + { + "name": "crossbeam_epoch", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" + ], + "deps": [ + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2", + "dependencies": [], + "deps": [], + "features": [ + "default", + "limit_128" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0" + ], + "deps": [ + { + "name": "generic_array", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "nix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", + "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8" + ], + "deps": [ + { + "name": "darling_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "darling_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "suggestions" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ident_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strsim", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "strsim", + "suggestions" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "darling_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dependencies": [ + "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.19", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "raw-api" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6" + ], + "deps": [ + { + "name": "block_buffer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crypto_common", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "block-buffer", + "core-api", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0" + ], + "deps": [ + { + "name": "dir_test_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" + ], + "deps": [ + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7" + ], + "deps": [ + { + "name": "dirs_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1" + ], + "deps": [ + { + "name": "dirs_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", + "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "redox_users", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"redox\")" + } + ] + }, + { + "name": "winapi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "option_ext", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "redox_users", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"redox\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "regex" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22" + ], + "deps": [ + { + "name": "anstream", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "env_filter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "humantime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "auto-color", + "color", + "default", + "humantime", + "regex" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + }, + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + }, + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "home", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "libredox", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"redox\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2" + ], + "deps": [ + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "miniz_oxide", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" + } + ] + } + ], + "features": [ + "any_impl", + "default", + "miniz_oxide", + "rust_backend" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" + ], + "deps": [ + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", + "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4" + ], + "deps": [ + { + "name": "typenum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_check", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "more_lengths" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13" + ], + "deps": [ + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "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.95" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "wasi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" + } + ] + } + ], + "features": [ + "js", + "js-sys", + "std", + "wasm-bindgen" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bstr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "log" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crunchy", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"spirv\")" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11" + ], + "deps": [ + { + "name": "ahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "ahash", + "inline-more", + "raw" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", + "dependencies": [], + "deps": [], + "features": [ + "inline-more", + "raw-entry" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5" + ], + "deps": [ + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", + "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0" + ], + "deps": [ + { + "name": "android_system_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"android\")" + } + ] + }, + { + "name": "core_foundation_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" + } + ] + }, + { + "name": "iana_time_zone_haiku", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"haiku\")" + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "windows_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + } + ], + "features": [ + "fallback" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "litemap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "writeable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "zerovec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid_transform_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_collections", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_normalizer_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf16_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "write16", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_collections", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid_transform", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties_data", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_locid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_provider_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tinystr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "writeable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" + ], + "deps": [ + { + "name": "idna_adapter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8_iter", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "compiled_data", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1" + ], + "deps": [ + { + "name": "icu_normalizer", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "icu_properties", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "compiled_data" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8" + ], + "deps": [ + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "same_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5" + ], + "deps": [ + { + "name": "ahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "unified_diff" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0" + ], + "deps": [ + { + "name": "phf", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rust_stemmers", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "equivalent", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", + "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", + "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", + "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0" + ], + "deps": [ + { + "name": "console", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "number_prefix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "portable_atomic", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vt100", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_time", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + } + ], + "features": [ + "default", + "in_memory", + "unicode-width", + "vt100" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "inotify_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", + "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "console", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "linked_hash_map", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pest_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ron", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "similar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "colors", + "console", + "default", + "filters", + "glob", + "globset", + "json", + "pest", + "pest_derive", + "redactions", + "regex", + "ron", + "serde", + "walkdir" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" + ], + "deps": [ + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "heck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "hermit_abi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, target_os = \"wasi\"))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" + ], + "deps": [ + { + "name": "is_docker", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "use_alloc", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "use_alloc", + "use_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" + ], + "deps": [ + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "kqueue_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dependencies": [], + "deps": [], + "features": [ + "default", + "extra_traits", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", + "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67" + ], + "deps": [ + { + "name": "chic", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libcst_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "paste", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "peg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syscall", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "call", + "default", + "redox_syscall", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", + "dependencies": [], + "deps": [], + "features": [ + "elf", + "errno", + "general", + "ioctl", + "no_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "scopeguard", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "atomic_usize", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" + ], + "deps": [ + { + "name": "crossbeam_channel", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_repr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proposed" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10" + ], + "deps": [ + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39" + ], + "deps": [ + { + "name": "libmimalloc_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2" + ], + "deps": [ + { + "name": "adler", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "with-alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "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#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"hermit\")" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + }, + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"wasi\")" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "default", + "log", + "os-ext", + "os-poll" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0" + ], + "deps": [ + { + "name": "uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_aliases", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "fs", + "term" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cfg_aliases", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "fs", + "process", + "signal" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "minimal_lexical", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", + "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", + "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", + "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"macos\")" + } + ] + }, + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fsevent_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"macos\")" + } + ] + }, + { + "name": "inotify", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))" + } + ] + }, + { + "name": "kqueue", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "mio", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))" + }, + { + "kind": null, + "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))" + } + ] + }, + { + "name": "notify_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "default", + "fsevent-sys", + "macos_fsevent" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12" + ], + "deps": [ + { + "name": "instant", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", + "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" + ], + "deps": [ + { + "name": "overload", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winapi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "windows", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0" + ], + "deps": [ + { + "name": "autocfg", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "race", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "memchr", + "raw_os_str" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9" + ], + "deps": [ + { + "name": "lock_api", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "syscall", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"redox\")" + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1" + ], + "deps": [ + { + "name": "path_dedot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "once_cell_cache", + "use_unix_paths_on_wasm" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "once_cell_cache", + "use_unix_paths_on_wasm" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3" + ], + "deps": [ + { + "name": "peg_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "peg_runtime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37" + ], + "deps": [ + { + "name": "peg_runtime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unscanny", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_ranges", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "version-ranges" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", + "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1" + ], + "deps": [ + { + "name": "boxcar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pep440_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "urlencoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "version_ranges", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ucd_trie", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "memchr", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11" + ], + "deps": [ + { + "name": "pest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pest_generator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "pest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pest_meta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sha2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2" + ], + "deps": [ + { + "name": "phf_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2" + ], + "deps": [ + { + "name": "phf_generator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "phf_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" + ], + "deps": [ + { + "name": "phf_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11" + ], + "deps": [ + { + "name": "siphasher", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "fallback" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", + "dependencies": [], + "deps": [], + "features": [ + "simd", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", + "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8" + ], + "deps": [ + { + "name": "anstyle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "difflib", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "predicates_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "diff" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1" + ], + "deps": [ + { + "name": "predicates_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "termtree", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", + "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1" + ], + "deps": [ + { + "name": "diff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yansi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" + ], + "deps": [ + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro", + "span-locations" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pep440_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pep508_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", + "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0" + ], + "deps": [ + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "newtype_uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quick_xml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strip_ansi_escapes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(unix)" + } + ] + }, + { + "name": "rand_chacha", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "getrandom", + "libc", + "rand_chacha", + "small_rng", + "std", + "std_rng" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", + "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" + ], + "deps": [ + { + "name": "ppv_lite86", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "getrandom", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" + ], + "deps": [ + { + "name": "crossbeam_deque", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "countme", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ctrlc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_server", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "salsa", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_flame", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_tree", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", + "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", + "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", + "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "camino", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "compact_str", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "countme", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dir_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "hashbrown", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ordermap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_test", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "red_knot_vendored", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_index", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_literal", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_stdlib", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "test_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", + "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", + "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "jod_thread", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "lsp_server", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lsp_types", + "pkg": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shellexpand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_vendored", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_index", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6" + ], + "deps": [ + { + "name": "path_slash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + }, + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "zip", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "deflate", + "zstd" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45" + ], + "deps": [ + { + "name": "console_error_panic_hook", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "console_log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "console_error_panic_hook", + "default" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", + "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "notify", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pep440_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "red_knot_vendored", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "deflate", + "zstd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libredox", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_automata", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "perf", + "perf-backtrack", + "perf-cache", + "perf-dfa", + "perf-inline", + "perf-literal", + "perf-onepass", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29" + ], + "deps": [ + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "regex-syntax", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex_syntax", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "dfa-onepass", + "dfa-search", + "hybrid", + "meta", + "nfa", + "nfa-backtrack", + "nfa-pikevm", + "nfa-thompson", + "perf", + "perf-inline", + "perf-literal", + "perf-literal-multisubstring", + "perf-literal-substring", + "std", + "syntax", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment", + "unicode-word-boundary" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29", + "dependencies": [], + "deps": [], + "features": [ + "default", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", + "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))" + } + ] + }, + { + "name": "spin", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"x86_64\"))" + } + ] + }, + { + "name": "untrusted", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))" + } + ] + } + ], + "features": [ + "alloc", + "default", + "dev_urandom_fallback" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", + "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", + "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", + "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", + "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "argfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "assert_fs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "bincode", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cachedir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap_complete_command", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clearscreen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globwalk", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "insta_cmd", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "is_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "mimalloc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + }, + { + "name": "notify", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "path_absolutize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_diagnostics", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_graph", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_server", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shellexpand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "test_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tikv_jemallocator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), not(target_os = \"aix\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))" + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wild", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", + "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", + "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3" + ], + "deps": [ + { + "name": "criterion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "mimalloc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", + "dep_kinds": [ + { + "kind": "dev", + "target": "cfg(target_os = \"windows\")" + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "red_knot_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tikv_jemallocator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", + "dep_kinds": [ + { + "kind": "dev", + "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))" + } + ] + }, + { + "name": "ureq", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0" + ], + "deps": [ + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "seahash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", + "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", + "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", + "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6" + ], + "deps": [ + { + "name": "camino", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "countme", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dashmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dunce", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "filetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "matchit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "path_slash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_tree", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_time", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_arch = \"wasm32\")" + } + ] + }, + { + "name": "zip", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "cache", + "default", + "ignore", + "os", + "ruff_cache", + "serde", + "testing", + "tracing-subscriber", + "tracing-tree" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", + "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", + "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "imara_diff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indicatif", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libcst_native", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pretty_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rayon", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_diagnostics", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_codegen", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "similar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_indicatif", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0" + ], + "deps": [ + { + "name": "drop_bomb", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "schemars", + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "red_knot_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_db", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zip", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clap", + "schemars", + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "dependencies": [ + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" + ], + "deps": [ + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", + "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", + "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", + "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", + "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", + "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "annotate_snippets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "chrono", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "fern", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "imperative", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "is_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_wsl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libcst_native", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "natord", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "path_absolutize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pathdiff", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pep440_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pyproject_toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quick_junit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_diagnostics", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_codegen", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_index", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_literal", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_stdlib", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "similar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strum_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "test_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "typed_arena", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_normalization", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_names2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clap", + "default", + "schemars", + "test-rules" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", + "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_diagnostics", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_with", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "test_case", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "aho_corasick", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "compact_str", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "cache", + "schemars", + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" + ], + "deps": [ + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "dependencies": [ + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" + ], + "deps": [ + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_literal", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "clap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "countme", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "similar", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "schemars", + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "dependencies": [ + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" + ], + "deps": [ + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unic_ucd_category", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", + "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", + "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" + ], + "deps": [ + { + "name": "annotate_snippets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "bstr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "compact_str", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_normalization", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_names2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "walkdir", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0" + ], + "deps": [ + { + "name": "env_logger", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_index", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_stdlib", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "schemars", + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" + ], + "deps": [ + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" + ], + "deps": [ + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", + "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "insta", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "jod_thread", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_vendor = \"apple\")" + } + ] + }, + { + "name": "lsp_server", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lsp_types", + "pkg": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_diagnostics", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_notebook", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_codegen", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_index", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shellexpand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thiserror", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", + "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" + ], + "deps": [ + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "static_assertions", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "schemars", + "serde" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45" + ], + "deps": [ + { + "name": "console_error_panic_hook", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "console_log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_codegen", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_index", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_parser", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_trivia", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_text_size", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_workspace", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_test", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + } + ], + "features": [ + "console_error_panic_hook", + "default" + ] + }, + { + "id": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19" + ], + "deps": [ + { + "name": "anyhow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "colored", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "etcetera", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(target_arch = \"wasm32\"))" + } + ] + }, + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "globset", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ignore", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "is_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "itertools", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "matchit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "path_absolutize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "path_slash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pep440_rs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_cache", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_graph", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_linter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "ruff_macros", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_ast", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_formatter", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_python_semantic", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ruff_source_file", + "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "shellexpand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "strum", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tempfile", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dep_kinds": [ + { + "kind": "dev", + "target": null + } + ] + }, + { + "name": "toml", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "schemars" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "bitflags", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "libc_errno", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + }, + { + "kind": null, + "target": "cfg(windows)" + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + }, + { + "name": "linux_raw_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" + }, + { + "kind": null, + "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [ + "alloc", + "default", + "fs", + "libc-extra-traits", + "std", + "termios", + "use-libc-auxv" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", + "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", + "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "subtle", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zeroize", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "log", + "logging", + "ring", + "std", + "tls12" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" + ], + "deps": [ + { + "name": "ring", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "untrusted", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "ring", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", + "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", + "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" + ], + "deps": [ + { + "name": "append_only_vec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "arc_swap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "dashmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "hashlink", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "parking_lot", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustc_hash", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa_macro_rules", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "salsa_macros", + "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "heck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8" + ], + "deps": [ + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", + "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" + ], + "deps": [ + { + "name": "dyn_clone", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "schemars_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "derive", + "schemars_derive" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_derive_internals", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215" + ], + "deps": [ + { + "name": "serde_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + }, + { + "kind": null, + "target": "cfg(any())" + } + ] + } + ], + "features": [ + "alloc", + "default", + "derive", + "rc", + "serde_derive", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "ryu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_with_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "darling", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", + "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "cpufeatures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" + } + ] + }, + { + "name": "digest", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1" + ], + "deps": [ + { + "name": "dirs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "base-0", + "default", + "dirs", + "tilde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", + "dependencies": [], + "deps": [], + "features": [ + "default", + "inline", + "text" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dependencies": [], + "deps": [], + "features": [ + "const_generics", + "union" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", + "dependencies": [], + "deps": [], + "features": [ + "once" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1" + ], + "deps": [ + { + "name": "vte", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4" + ], + "deps": [ + { + "name": "strum_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std", + "strum_macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "heck", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustversion", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clone-impls", + "default", + "derive", + "full", + "parsing", + "printing", + "proc-macro", + "quote" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_ident", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "fold", + "full", + "parsing", + "printing", + "proc-macro", + "visit", + "visit-mut" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "proc-macro" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fastrand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, target_os = \"wasi\"))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" + ], + "deps": [ + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(not(windows))" + } + ] + }, + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", + "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2" + ], + "deps": [ + { + "name": "dirs", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "fnv", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "phf", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "phf_codegen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1" + ], + "deps": [ + { + "name": "test_case_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "test_case_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67" + ], + "deps": [ + { + "name": "thiserror_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3" + ], + "deps": [ + { + "name": "thiserror_impl", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "background_threads_runtime_support" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tikv_jemalloc_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "background_threads_runtime_support", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" + ], + "deps": [ + { + "name": "displaydoc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "zerovec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_json", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" + ], + "deps": [ + { + "name": "tinyvec_macros", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "tinyvec_macros" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_edit", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "display", + "parse" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", + "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", + "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18" + ], + "deps": [ + { + "name": "indexmap", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde_spanned", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "toml_datetime", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winnow", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "display", + "parse", + "serde" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "pin_project_lite", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_attributes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "attributes", + "default", + "log", + "release_max_level_debug", + "std", + "tracing-attributes" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0" + ], + "deps": [ + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "valuable", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(tracing_unstable)" + } + ] + } + ], + "features": [ + "default", + "once_cell", + "std", + "valuable" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" + ], + "deps": [ + { + "name": "lazy_static", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "smallvec" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" + ], + "deps": [ + { + "name": "indicatif", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32" + ], + "deps": [ + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "log-tracer", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", + "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", + "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0" + ], + "deps": [ + { + "name": "matchers", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "nu_ansi_term", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "regex", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "sharded_slab", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "thread_local", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "ansi", + "default", + "env-filter", + "fmt", + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "registry", + "sharded-slab", + "smallvec", + "std", + "thread_local", + "tracing", + "tracing-log" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", + "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", + "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" + ], + "deps": [ + { + "name": "nu_ansi_term", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_core", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "tracing_subscriber", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "tracing-log" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6", + "dependencies": [], + "deps": [], + "features": [ + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0" + ], + "deps": [ + { + "name": "unic_char_range", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", + "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", + "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", + "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0" + ], + "deps": [ + { + "name": "matches", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unic_char_property", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unic_char_range", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unic_ucd_version", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0" + ], + "deps": [ + { + "name": "unic_common", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0" + ], + "deps": [ + { + "name": "tinyvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", + "dependencies": [], + "deps": [], + "features": [ + "cjk", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0" + ], + "deps": [ + { + "name": "phf", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_names2_generator", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" + ], + "deps": [ + { + "name": "getopts", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "phf_codegen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1" + ], + "deps": [ + { + "name": "base64", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rustls_pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "url", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "webpki_roots", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "gzip", + "tls" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" + ], + "deps": [ + { + "name": "form_urlencoded", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "idna", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "percent_encoding", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "serde", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", + "dependencies": [], + "deps": [], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" + ], + "deps": [ + { + "name": "getrandom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "rand", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "uuid_macro_internal", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))" + } + ] + } + ], + "features": [ + "default", + "fast-rng", + "js", + "macro-diagnostics", + "rng", + "std", + "v4" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2" + ], + "deps": [ + { + "name": "smallvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1" + ], + "deps": [ + { + "name": "itoa", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "unicode_width", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vte", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", + "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" + ], + "deps": [ + { + "name": "arrayvec", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "utf8parse", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "vte_generate_state_changes", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#vte_generate_state_changes@0.1.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "arrayvec", + "default", + "no_std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#vte_generate_state_changes@0.1.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8" + ], + "deps": [ + { + "name": "same_file", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "winapi_util", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", + "dependencies": [], + "deps": [], + "features": [ + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default", + "spans", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", + "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95" + ], + "deps": [ + { + "name": "bumpalo", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "log", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "once_cell", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "spans" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69" + ], + "deps": [ + { + "name": "cfg_if", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "web_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_feature = \"atomics\")" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95" + ], + "deps": [ + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_macro_support", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "spans" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_backend", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_shared", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "spans" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", + "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45" + ], + "deps": [ + { + "name": "console_error_panic_hook", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "minicov", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"wasm32\", wasm_bindgen_unstable_test_coverage))" + } + ] + }, + { + "name": "scoped_tls", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_futures", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen_test_macro", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "Event", + "EventTarget", + "MessageEvent", + "Worker", + "console" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" + ], + "deps": [ + { + "name": "js_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))" + } + ] + }, + { + "name": "wasm_bindgen", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0" + ], + "deps": [ + { + "name": "pki_types", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", + "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19" + ], + "deps": [ + { + "name": "either", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "home", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(windows, unix, target_os = \"redox\"))" + } + ] + }, + { + "name": "rustix", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(unix, target_os = \"wasi\", target_os = \"redox\"))" + } + ] + }, + { + "name": "winsafe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1" + ], + "deps": [ + { + "name": "glob", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#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" + ], + "deps": [ + { + "name": "winapi_i686_pc_windows_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-i686-pc-windows-gnu@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": "i686-pc-windows-gnu" + } + ] + }, + { + "name": "winapi_x86_64_pc_windows_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-x86_64-pc-windows-gnu@0.4.0", + "dep_kinds": [ + { + "kind": null, + "target": "x86_64-pc-windows-gnu" + } + ] + } + ], + "features": [ + "consoleapi", + "errhandlingapi", + "fileapi", + "handleapi", + "impl-default", + "knownfolders", + "lmapibuf", + "lmserver", + "lmwksta", + "objbase", + "processenv", + "shlobj", + "winbase", + "wincon", + "winerror" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-i686-pc-windows-gnu@0.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" + ], + "deps": [ + { + "name": "windows_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(windows)" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-x86_64-pc-windows-gnu@0.4.0", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5" + ], + "deps": [ + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "Win32", + "Win32_Foundation", + "Win32_Globalization", + "Win32_System", + "Win32_System_Com", + "Win32_System_Console", + "Win32_UI", + "Win32_UI_Shell", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "Wdk", + "Wdk_Foundation", + "Wdk_Storage", + "Wdk_Storage_FileSystem", + "Wdk_System", + "Wdk_System_IO", + "Win32", + "Win32_Foundation", + "Win32_NetworkManagement", + "Win32_NetworkManagement_IpHelper", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Com", + "Win32_System_Console", + "Win32_System_Diagnostics", + "Win32_System_Diagnostics_Debug", + "Win32_System_IO", + "Win32_System_Pipes", + "Win32_System_SystemInformation", + "Win32_System_Threading", + "Win32_System_WindowsProgramming", + "Win32_UI", + "Win32_UI_Input", + "Win32_UI_Input_KeyboardAndMouse", + "Win32_UI_Shell", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" + ], + "deps": [ + { + "name": "windows_targets", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "Win32", + "Win32_Foundation", + "Win32_Security", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Console", + "Win32_System_Threading", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5" + ], + "deps": [ + { + "name": "windows_aarch64_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "aarch64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_aarch64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_x86_64_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", + "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_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "x86_64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_x86_64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6" + ], + "deps": [ + { + "name": "windows_aarch64_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "aarch64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_aarch64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_i686_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "i686-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_i686_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + }, + { + "name": "windows_x86_64_gnu", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "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_gnullvm", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "x86_64-pc-windows-gnullvm" + } + ] + }, + { + "name": "windows_x86_64_msvc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" + ], + "deps": [ + { + "name": "memchr", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19", + "dependencies": [], + "deps": [], + "features": [ + "kernel" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", + "dependencies": [], + "deps": [], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default", + "std" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" + ], + "deps": [ + { + "name": "winapi", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(target_os = \"windows\")" + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4" + ], + "deps": [ + { + "name": "serde", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "stable_deref_trait", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "yoke_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "default", + "derive", + "zerofrom" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32" + ], + "deps": [ + { + "name": "zerocopy_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any())" + } + ] + } + ], + "features": [ + "simd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4" + ], + "deps": [ + { + "name": "zerofrom_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "alloc", + "derive" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "synstructure", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0", + "dependencies": [], + "deps": [], + "features": [ + "alloc", + "default" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3" + ], + "deps": [ + { + "name": "yoke", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerofrom", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zerovec_derive", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "derive", + "yoke" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" + ], + "deps": [ + { + "name": "proc_macro2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "quote", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "syn", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", + "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", + "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2" + ], + "deps": [ + { + "name": "byteorder", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crc32fast", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "crossbeam_utils", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", + "dep_kinds": [ + { + "kind": null, + "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))" + } + ] + }, + { + "name": "flate2", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zstd", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "deflate", + "flate2", + "zstd" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2" + ], + "deps": [ + { + "name": "zstd_safe", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "arrays", + "default", + "legacy", + "zdict_builder" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6" + ], + "deps": [ + { + "name": "libc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + }, + { + "name": "zstd_sys", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6", + "dep_kinds": [ + { + "kind": null, + "target": null + } + ] + } + ], + "features": [ + "arrays", + "legacy", + "std", + "zdict_builder" + ] + }, + { + "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6", + "dependencies": [ + "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30" + ], + "deps": [ + { + "name": "cc", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + }, + { + "name": "pkg_config", + "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30", + "dep_kinds": [ + { + "kind": "build", + "target": null + } + ] + } + ], + "features": [ + "legacy", + "std", + "zdict_builder" + ] + } + ], + "root": null + }, + "target_directory": "/home/micha/astral/ruff/target", + "version": 1, + "workspace_root": "/home/micha/astral/ruff", + "metadata": { + "dist": { + "auto-includes": false, + "build-local-artifacts": false, + "cargo-dist-version": "0.25.2-prerelease.3", + "ci": "github", + "create-release": true, + "dispatch-releases": true, + "github-release": "announce", + "install-path": [ + "$XDG_BIN_HOME/", + "$XDG_DATA_HOME/../bin", + "~/.local/bin" + ], + "install-updater": false, + "installers": [ + "shell", + "powershell" + ], + "local-artifacts-jobs": [ + "./build-binaries", + "./build-docker" + ], + "post-announce-jobs": [ + "./notify-dependents", + "./publish-docs", + "./publish-playground" + ], + "pr-run-mode": "skip", + "publish-jobs": [ + "./publish-pypi", + "./publish-wasm" + ], + "targets": [ + "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-linux-musl", + "arm-unknown-linux-musleabihf", + "armv7-unknown-linux-gnueabihf", + "armv7-unknown-linux-musleabihf", + "i686-pc-windows-msvc", + "i686-unknown-linux-gnu", + "i686-unknown-linux-musl", + "powerpc64-unknown-linux-gnu", + "powerpc64le-unknown-linux-gnu", + "s390x-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl" + ], + "unix-archive": ".tar.gz", + "windows-archive": ".zip", + "github-custom-job-permissions": { + "build-docker": { + "contents": "read", + "packages": "write" + }, + "publish-wasm": { + "contents": "read", + "id-token": "write", + "packages": "write" + } + } + } + } +} From 016b5907978da1e0e43cec8cf2c8e6f3d6603c08 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 16:15:36 +0100 Subject: [PATCH 09/12] Delete metadata.json --- metadata.json | 109040 ----------------------------------------------- 1 file changed, 109040 deletions(-) delete mode 100644 metadata.json diff --git a/metadata.json b/metadata.json deleted file mode 100644 index 44214206411be..0000000000000 --- a/metadata.json +++ /dev/null @@ -1,109040 +0,0 @@ -{ - "packages": [ - { - "name": "adler", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2", - "license": "0BSD OR MIT OR Apache-2.0", - "license_file": null, - "description": "A simple clean-room implementation of the Adler-32 checksum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "adler", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler-1.0.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler-1.0.2/benches/bench.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg=docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-commit-message": "Release {{version}}", - "tag-message": "{{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\\.-]+" - } - ] - } - }, - "publish": null, - "authors": [ - "Jonas Schievink " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "checksum", - "integrity", - "hash", - "adler32", - "zlib" - ], - "readme": "README.md", - "repository": "https://github.com/jonas-schievink/adler.git", - "homepage": null, - "documentation": "https://docs.rs/adler/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ahash", - "version": "0.8.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A non-cryptographic hash function using AES-NI for high performance", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "atomic-polyfill", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-random", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pcg-mwc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.4", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ahash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nopanic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/nopanic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ahash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/tests/map_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/./build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "atomic-polyfill": [ - "dep:atomic-polyfill", - "once_cell/atomic-polyfill" - ], - "compile-time-rng": [ - "const-random" - ], - "const-random": [ - "dep:const-random" - ], - "default": [ - "std", - "runtime-rng" - ], - "getrandom": [ - "dep:getrandom" - ], - "nightly-arm-aes": [], - "no-rng": [], - "runtime-rng": [ - "getrandom" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustc-args": [ - "-C", - "target-feature=+aes" - ], - "rustdoc-args": [ - "-C", - "target-feature=+aes" - ] - } - } - }, - "publish": null, - "authors": [ - "Tom Kaitchuck " - ], - "categories": [ - "algorithms", - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "hasher", - "hashmap", - "aes", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/tkaitchuck/ahash", - "homepage": null, - "documentation": "https://docs.rs/ahash", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "aho-corasick", - "version": "1.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Fast multiple substring searching.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "aho_corasick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std", - "perf-literal" - ], - "logging": [ - "dep:log" - ], - "perf-literal": [ - "dep:memchr" - ], - "std": [ - "memchr?/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "string", - "search", - "text", - "pattern", - "multi" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "homepage": "https://github.com/BurntSushi/aho-corasick", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "android-tzdata", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for the Android-specific tzdata file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "android_tzdata", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android-tzdata-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android-tzdata-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RumovZ" - ], - "categories": [ - "date-and-time" - ], - "keywords": [ - "parser", - "android", - "timezone" - ], - "readme": "README.md", - "repository": "https://github.com/RumovZ/android-tzdata", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "android_system_properties", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Minimal Android system properties wrapper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.126", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "android_system_properties", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android_system_properties-0.1.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "time_zone", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android_system_properties-0.1.5/examples/time_zone.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/android_system_properties-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "arm-linux-androideabi", - "armv7-linux-androideabi", - "aarch64-linux-android", - "i686-linux-android", - "x86_64-linux-android", - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Nicolas Silva " - ], - "categories": [], - "keywords": [ - "android" - ], - "readme": "README.md", - "repository": "https://github.com/nical/android_system_properties", - "homepage": "https://github.com/nical/android_system_properties", - "documentation": "https://docs.rs/android_system_properties", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "anes", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ANSI Escape Sequences provider & parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "execute", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/execute.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parser", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/parser.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "queue", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/queue.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sequence", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/sequence.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stdout", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/stdout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/examples/string.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench_main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/benches/bench_main.rs", - "edition": "2018", - "required-features": [ - "parser" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bitflags": [ - "dep:bitflags" - ], - "default": [], - "parser": [ - "bitflags" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anes-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Robert Vojta " - ], - "categories": [], - "keywords": [ - "terminal", - "ansi", - "sequence", - "code", - "parser" - ], - "readme": "README.md", - "repository": "https://github.com/zrzka/anes-rs", - "homepage": null, - "documentation": "https://docs.rs/anes/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "annotate-snippets", - "version": "0.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Library for building code annotations", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "difference", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_yaml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "annotate_snippets", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "expected_type", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/expected_type.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "footer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/footer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "format", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/format.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "multislice", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/examples/multislice.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dl_from_snippet", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/tests/dl_from_snippet.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fixtures", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/tests/fixtures.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "formatter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/tests/formatter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "ansi_term": [ - "dep:ansi_term" - ], - "color": [ - "ansi_term" - ], - "default": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.6.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Zibi Braniecki " - ], - "categories": [], - "keywords": [ - "code", - "analysis", - "ascii", - "errors", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/annotate-snippets-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "annotate-snippets", - "version": "0.9.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Library for building code annotations", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yansi-term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "difference", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yansi-term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "annotate_snippets", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "expected_type", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/expected_type.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "footer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/footer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "format", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/format.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "multislice", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/examples/multislice.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dl_from_snippet", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/tests/dl_from_snippet.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fixtures_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/tests/fixtures_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "formatter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/tests/formatter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/benches/simple.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "color": [ - "yansi-term" - ], - "default": [], - "yansi-term": [ - "dep:yansi-term" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/annotate-snippets-0.9.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Zibi Braniecki " - ], - "categories": [], - "keywords": [ - "code", - "analysis", - "ascii", - "errors", - "debug" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/annotate-snippets-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "anstream", - "version": "0.6.13", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple cross platform library for writing colored text to a terminal.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-query", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colorchoice", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owo-colors", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strip-ansi-escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle-wincon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/examples/dump-stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "query-stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/examples/query-stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/benches/stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "strip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/benches/strip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "wincon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/benches/wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "auto": [ - "dep:anstyle-query" - ], - "default": [ - "auto", - "wincon" - ], - "test": [], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstream-0.6.13/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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "anstyle", - "version": "1.0.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ANSI text styling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-1.0.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-style", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-1.0.8/examples/dump-style.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-1.0.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-prefix": "", - "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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "anstyle-parse", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parse ANSI Style Escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "codegenrs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "path" - ], - "target": null, - "registry": null - }, - { - "name": "vte_generate_state_changes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parselog", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/examples/parselog.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/benches/parse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.3/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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "anstyle-query", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Look up colored console capabilities", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_query", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-query-1.0.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "query", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-query-1.0.2/examples/query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-query-1.0.2/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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "anstyle-wincon", - "version": "3.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Styling legacy Windows terminals", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anstyle_wincon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dump-wincon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/examples/dump-wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "set-wincon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/examples/set-wincon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [], - "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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "homepage": "https://github.com/rust-cli/anstyle", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "anyhow", - "version": "1.0.93", - "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Flexible concrete Error type built on std::error::Error", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.51", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "anyhow", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_autotrait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_autotrait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_backtrace.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_boxed", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_boxed.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_chain", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_chain.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_context", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_context.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_convert", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_convert.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_downcast", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_downcast.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ensure", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_ensure.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ffi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_ffi.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_fmt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_fmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_repr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_repr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/tests/test_source.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "backtrace": [ - "dep:backtrace" - ], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.93/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "error", - "error-handling" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/anyhow", - "homepage": null, - "documentation": "https://docs.rs/anyhow", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.39" - }, - { - "name": "append-only-vec", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Append-only, concurrent vector", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scaling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "append_only_vec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/append-only-vec-0.1.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/append-only-vec-0.1.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/append-only-vec-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Roundy " - ], - "categories": [ - "data-structures", - "concurrency" - ], - "keywords": [ - "frozen", - "data-structure" - ], - "readme": "README.md", - "repository": "https://github.com/droundy/append-only-vec", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "arc-swap", - "version": "1.7.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Atomically swappable Arc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "adaptive-barrier", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.130", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.130", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "arc_swap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "random", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/tests/random.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stress", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/tests/stress.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "background", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/benches/background.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "int-access", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/benches/int-access.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "track", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/benches/track.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "experimental-strategies": [], - "experimental-thread-local": [], - "internal-test-strategies": [], - "serde": [ - "dep:serde" - ], - "weak": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arc-swap-1.7.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "weak" - ] - } - } - }, - "publish": null, - "authors": [ - "Michal 'vorner' Vaner " - ], - "categories": [ - "data-structures", - "memory-management" - ], - "keywords": [ - "atomic", - "Arc" - ], - "readme": "README.md", - "repository": "https://github.com/vorner/arc-swap", - "homepage": null, - "documentation": "https://docs.rs/arc-swap", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "argfile", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Load additional CLI args from file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fs-err", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "os_str_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winsplit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "argfile", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/argfile-0.2.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "response": [ - "dep:winsplit" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/argfile-0.2.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/rust-cli/argfile/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "clap" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/argfile.git", - "homepage": "https://github.com/rust-cli/argfile", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "arrayvec", - "version": "0.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "arrayvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arraystring", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/benches/arraystring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "extend", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/benches/extend.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "stack", - "vector", - "array", - "data-structure", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/arrayvec", - "homepage": null, - "documentation": "https://docs.rs/arrayvec/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "assert_fs", - "version": "1.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Filesystem fixtures and assertions for testing.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globwalk", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "predicates", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "predicates-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "predicates-tree", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "assert_fs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/assert_fs-1.1.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "failure", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/assert_fs-1.1.2/examples/failure.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "color": [ - "dep:anstream", - "predicates/color" - ], - "color-auto": [ - "color" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/assert_fs-1.1.2/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/assert-rs/assert_fs/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Ed Page " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "filesystem", - "test", - "assert", - "fixture" - ], - "readme": "README.md", - "repository": "https://github.com/assert-rs/assert_fs.git", - "homepage": "https://github.com/assert-rs/assert_fs", - "documentation": "http://docs.rs/assert_fs/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "autocfg", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Automatic cfg for Rust compiler features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "autocfg", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "integers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/integers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "paths", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/paths.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "traits", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/traits.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "versions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/examples/versions.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/tests/no_std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rustflags", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/tests/rustflags.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wrappers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/tests/wrappers.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "homepage": null, - "documentation": "https://docs.rs/autocfg/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.0" - }, - { - "name": "base64", - "version": "0.13.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "encodes and decodes base64 as bytes or utf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "structopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "base64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "base64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/examples/base64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make_tables", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/examples/make_tables.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/decode.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/encode.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "helpers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/helpers.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/benches/benchmarks.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.13.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alice Maz ", - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "homepage": null, - "documentation": "https://docs.rs/base64", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "base64", - "version": "0.22.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "encodes and decodes base64 as bytes or utf8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rstest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rstest_reuse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "base64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "base64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/examples/base64.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/tests/encode.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/tests/tests.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/benches/benchmarks.rs", - "edition": "2018", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.22.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Alice Maz ", - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "homepage": null, - "documentation": "https://docs.rs/base64", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48.0" - }, - { - "name": "bincode", - "version": "1.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "license": "MIT", - "license_file": null, - "description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.27", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bincode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bincode-1.3.3/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bincode-1.3.3/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "i128": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bincode-1.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ty Overby ", - "Francesco Mazzoli ", - "David Tolnay ", - "Zoey Riordan " - ], - "categories": [ - "encoding", - "network-programming" - ], - "keywords": [ - "binary", - "encode", - "decode", - "serialize", - "deserialize" - ], - "readme": "./readme.md", - "repository": "https://github.com/servo/bincode", - "homepage": null, - "documentation": "https://docs.rs/bincode", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitflags", - "version": "1.3.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A macro to generate structures which behave like bitflags.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitflags", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/tests/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/tests/compile.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "homepage": "https://github.com/bitflags/bitflags", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bitflags", - "version": "2.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A macro to generate structures which behave like bitflags.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.19", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bitflags", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_bits_type", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/custom_bits_type.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/custom_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fmt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/fmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "macro_free", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/macro_free.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/examples/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/benches/parse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bitflags-2.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "homepage": "https://github.com/bitflags/bitflags", - "documentation": "https://docs.rs/bitflags", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "block-buffer", - "version": "0.10.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Buffer type for block processing of data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "block_buffer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "block", - "buffer" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/block-buffer", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "boxcar", - "version": "0.2.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", - "license": "MIT", - "license_file": null, - "description": "A concurrent, append-only vector", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "boxcar", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "vec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/tests/vec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/boxcar-0.2.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ibraheem Ahmed " - ], - "categories": [ - "concurrency", - "data-structures" - ], - "keywords": [ - "concurrent", - "vector", - "lock-free" - ], - "readme": "README.md", - "repository": "https://github.com/ibraheemdev/boxcar", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "bstr", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A string type that is not required to be valid UTF-8.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "dfa-search" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.85", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bstr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "graphemes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/graphemes.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "graphemes-std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/graphemes-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lines", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/lines.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lines-std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/lines-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "uppercase", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/uppercase.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "uppercase-std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/uppercase-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "words", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/words.rs", - "edition": "2021", - "required-features": [ - "std", - "unicode" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "words-std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/examples/words-std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "memchr/alloc", - "serde?/alloc" - ], - "default": [ - "std", - "unicode" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc", - "memchr/std", - "serde?/std" - ], - "unicode": [ - "dep:regex-automata" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bstr-1.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing", - "encoding" - ], - "keywords": [ - "string", - "str", - "byte", - "bytes", - "text" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/bstr", - "homepage": "https://github.com/BurntSushi/bstr", - "documentation": "https://docs.rs/bstr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73" - }, - { - "name": "bumpalo", - "version": "3.16.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A fast bump allocation arena for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.171", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.115", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "bumpalo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "try_alloc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/tests/try_alloc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/benches/benches.rs", - "edition": "2021", - "required-features": [ - "collections" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "allocator-api2": [ - "dep:allocator-api2" - ], - "allocator_api": [], - "boxed": [], - "collections": [], - "default": [], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bumpalo-3.16.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "memory-management", - "rust-patterns", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/fitzgen/bumpalo", - "homepage": null, - "documentation": "https://docs.rs/bumpalo", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.73.0" - }, - { - "name": "byteorder", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Library for reading/writing numbers in big-endian and little-endian.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "byteorder", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "encoding", - "parsing", - "no-std" - ], - "keywords": [ - "byte", - "endian", - "big-endian", - "little-endian", - "binary" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/byteorder", - "homepage": "https://github.com/BurntSushi/byteorder", - "documentation": "https://docs.rs/byteorder", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "cachedir", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", - "license": "MIT", - "license_file": null, - "description": "A library to help interacting with cache directories and CACHEDIR.TAG files.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cachedir", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cachedir-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "cachedir", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cachedir-0.3.1/src/bin/cachedir.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cachedir-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jakub Stasiak " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/jstasiak/cachedir", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "camino", - "version": "1.1.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "UTF-8 paths", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "camino", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/tests/integration_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "proptest": [ - "dep:proptest" - ], - "proptest1": [ - "proptest" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/camino-1.1.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=doc_cfg" - ] - } - } - }, - "publish": null, - "authors": [ - "Without Boats ", - "Ashley Williams ", - "Steve Klabnik ", - "Rain " - ], - "categories": [ - "development-tools", - "filesystem", - "os" - ], - "keywords": [ - "paths", - "utf8", - "unicode", - "filesystem" - ], - "readme": "README.md", - "repository": "https://github.com/camino-rs/camino", - "homepage": null, - "documentation": "https://docs.rs/camino", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.34.0" - }, - { - "name": "cast", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Ergonomic, checked cast functions for primitive types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cast", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cast-0.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cast-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jorge Aparicio " - ], - "categories": [], - "keywords": [ - "checked", - "cast", - "primitive", - "integer", - "float" - ], - "readme": "README.md", - "repository": "https://github.com/japaric/cast.rs", - "homepage": null, - "documentation": "https://docs.rs/cast", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "castaway", - "version": "0.2.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", - "license": "MIT", - "license_file": null, - "description": "Safe, zero-cost downcasting for limited compile-time specialization.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "castaway", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/castaway-0.2.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/castaway-0.2.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Stephen M. Coakley " - ], - "categories": [ - "no-std", - "rust-patterns" - ], - "keywords": [ - "specialization", - "specialize", - "cast" - ], - "readme": "README.md", - "repository": "https://github.com/sagebind/castaway", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cc", - "version": "1.0.95", - "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "license": "MIT OR Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "jobserver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.30", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.62", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.0.95/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "jobserver": [ - "dep:jobserver" - ], - "libc": [ - "dep:libc" - ], - "once_cell": [ - "dep:once_cell" - ], - "parallel": [ - "libc", - "jobserver", - "once_cell" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.0.95/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "homepage": "https://github.com/rust-lang/cc-rs", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "cfg-if", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cfg_if", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "xcrate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/tests/xcrate.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "homepage": "https://github.com/alexcrichton/cfg-if", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cfg_aliases", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", - "license": "MIT", - "license_file": null, - "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cfg_aliases", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Zicklag " - ], - "categories": [ - "development-tools", - "development-tools::build-utils" - ], - "keywords": [ - "cfg", - "alias", - "conditional", - "compilation", - "build" - ], - "readme": "README.md", - "repository": "https://github.com/katharostech/cfg_aliases", - "homepage": "https://github.com/katharostech/cfg_aliases", - "documentation": "https://docs.rs/cfg_aliases", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cfg_aliases", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "license": "MIT", - "license_file": null, - "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cfg_aliases", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Zicklag " - ], - "categories": [ - "development-tools", - "development-tools::build-utils" - ], - "keywords": [ - "cfg", - "alias", - "conditional", - "compilation", - "build" - ], - "readme": "README.md", - "repository": "https://github.com/katharostech/cfg_aliases", - "homepage": "https://github.com/katharostech/cfg_aliases", - "documentation": "https://docs.rs/cfg_aliases", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "chic", - "version": "1.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pretty parser error reporting.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "chic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cursor", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/examples/cursor.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/examples/error.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chic-1.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Yoshua Wuyts " - ], - "categories": [ - "parser-implementations" - ], - "keywords": [ - "pretty", - "error", - "reporting", - "stream" - ], - "readme": "README.md", - "repository": "https://github.com/yoshuawuyts/chic", - "homepage": null, - "documentation": "https://docs.rs/chic", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "chrono", - "version": "0.4.38", - "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Date and time library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pure-rust-locales", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.43", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.99", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "android-tzdata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"android\")", - "registry": null - }, - { - "name": "iana-time-zone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "fallback" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.56", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "chrono", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dateutils", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/tests/dateutils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/tests/wasm.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "win_bindings", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/tests/win_bindings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_bench": [], - "alloc": [], - "android-tzdata": [ - "dep:android-tzdata" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "clock": [ - "winapi", - "iana-time-zone", - "android-tzdata", - "now" - ], - "default": [ - "clock", - "std", - "oldtime", - "wasmbind" - ], - "iana-time-zone": [ - "dep:iana-time-zone" - ], - "js-sys": [ - "dep:js-sys" - ], - "libc": [], - "now": [ - "std" - ], - "oldtime": [], - "pure-rust-locales": [ - "dep:pure-rust-locales" - ], - "rkyv": [ - "dep:rkyv", - "rkyv/size_32" - ], - "rkyv-16": [ - "dep:rkyv", - "rkyv?/size_16" - ], - "rkyv-32": [ - "dep:rkyv", - "rkyv?/size_32" - ], - "rkyv-64": [ - "dep:rkyv", - "rkyv?/size_64" - ], - "rkyv-validation": [ - "rkyv?/validation" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "unstable-locales": [ - "pure-rust-locales" - ], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ], - "wasmbind": [ - "wasm-bindgen", - "js-sys" - ], - "winapi": [ - "windows-targets" - ], - "windows-targets": [ - "dep:windows-targets" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/chrono-0.4.38/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "rkyv", - "serde", - "unstable-locales" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "date-and-time" - ], - "keywords": [ - "date", - "time", - "calendar" - ], - "readme": "README.md", - "repository": "https://github.com/chronotope/chrono", - "homepage": "https://github.com/chronotope/chrono", - "documentation": "https://docs.rs/chrono/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61.0" - }, - { - "name": "ciborium", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", - "license": "Apache-2.0", - "license_file": null, - "description": "serde implementation of CBOR using ciborium-basic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ciborium-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "ciborium-ll", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.100", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rstest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ciborium", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "canonical", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/canonical.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "codec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/codec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fuzz", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/fuzz.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/macro.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/no_std.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "recursion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/recursion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tag", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/tests/tag.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "ciborium-io/std", - "serde/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-0.2.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nathaniel McCallum " - ], - "categories": [ - "data-structures", - "embedded", - "encoding", - "no-std", - "parsing" - ], - "keywords": [ - "cbor", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/enarx/ciborium", - "homepage": "https://github.com/enarx/ciborium", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.58" - }, - { - "name": "ciborium-io", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", - "license": "Apache-2.0", - "license_file": null, - "description": "Simplified Read/Write traits for no_std usage", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ciborium_io", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-io-0.2.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-io-0.2.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nathaniel McCallum " - ], - "categories": [ - "data-structures", - "embedded", - "no-std" - ], - "keywords": [ - "io", - "read", - "write" - ], - "readme": "README.md", - "repository": "https://github.com/enarx/ciborium", - "homepage": "https://github.com/enarx/ciborium", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.58" - }, - { - "name": "ciborium-ll", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", - "license": "Apache-2.0", - "license_file": null, - "description": "Low-level CBOR codec primitives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ciborium-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "half", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ciborium_ll", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-ll-0.2.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "std": [ - "alloc", - "half/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ciborium-ll-0.2.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Nathaniel McCallum " - ], - "categories": [ - "data-structures", - "embedded", - "encoding", - "no-std", - "parsing" - ], - "keywords": [ - "cbor" - ], - "readme": "README.md", - "repository": "https://github.com/enarx/ciborium", - "homepage": "https://github.com/enarx/ciborium", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.58" - }, - { - "name": "clap", - "version": "4.5.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap_builder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.5.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=4.5.18", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap-cargo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "humantime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.91", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trycmd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "color-auto", - "diff", - "examples" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "stdio-fixture", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/src/bin/stdio-fixture.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "01_quick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/01_quick.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "01_quick_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/01_quick.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_app_settings", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/02_app_settings.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_app_settings_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/02_app_settings.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_apps", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/02_apps.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_apps_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/02_apps.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_crate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/02_crate.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "02_crate_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/02_crate.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_bool", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_01_flag_bool.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_bool_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_01_flag_bool.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_count", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_01_flag_count.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_01_flag_count_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_01_flag_count.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_02_option.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_02_option.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_mult", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_02_option_mult.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_02_option_mult_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_02_option_mult.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_03_positional.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_03_positional.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_mult", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_03_positional_mult.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_03_positional_mult_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_03_positional_mult.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_04_subcommands.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands_alt_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_04_subcommands_alt.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_04_subcommands_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_04_subcommands.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_05_default_values", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/03_05_default_values.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "03_05_default_values_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/03_05_default_values.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_enum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_01_enum.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_enum_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_01_enum.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_01_possible", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_01_possible.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_02_parse.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_parse_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_02_parse.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_validate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_02_validate.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_02_validate_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_02_validate.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_03_relations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_03_relations.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_03_relations_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_03_relations.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_04_custom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/04_04_custom.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "04_04_custom_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/04_04_custom.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "05_01_assert", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_builder/05_01_assert.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "05_01_assert_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/tutorial_derive/05_01_assert.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "busybox", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/multicall-busybox.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo-example", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/cargo-example.rs", - "edition": "2021", - "required-features": [ - "cargo", - "color" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo-example-derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/cargo-example-derive.rs", - "edition": "2021", - "required-features": [ - "derive", - "color" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "demo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/demo.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "escaped-positional", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/escaped-positional.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "escaped-positional-derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/escaped-positional-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "find", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/find.rs", - "edition": "2021", - "required-features": [ - "cargo" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "git", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/git.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "git-derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/git-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hostname", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/multicall-hostname.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_augment_args", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/augment_args.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_augment_subcommands", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/augment_subcommands.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_flatten_hand_args", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/flatten_hand_args.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "interop_hand_subcommand", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/derive_ref/hand_subcommand.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pacman", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/pacman.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "repl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/repl.rs", - "edition": "2021", - "required-features": [ - "help" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "repl-derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/repl-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "typed-derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/examples/typed-derive.rs", - "edition": "2021", - "required-features": [ - "derive" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "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" - ], - "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-derive-ui-tests": [], - "unstable-doc": [ - "clap_builder/unstable-doc", - "derive" - ], - "unstable-ext": [ - "clap_builder/unstable-ext" - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap-4.5.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "shared-version": true, - "tag-name": "v{{version}}", - "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: .+\\..+\\..+" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_builder", - "version": "4.5.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.73", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_lex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strsim", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicase", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "color-print", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unic-emoji-char", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_builder", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_builder-4.5.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "cargo": [], - "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-ext" - ], - "unstable-ext": [], - "unstable-styles": [ - "color" - ], - "unstable-v5": [ - "deprecated" - ], - "usage": [], - "wrap_help": [ - "help", - "dep:terminal_size" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_builder-4.5.21/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}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_complete", - "version": "4.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generate shell completion scripts for your clap::Command", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "clap_lex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is_executable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pathdiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shlex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-xid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "derive", - "help" - ], - "target": null, - "registry": null - }, - { - "name": "completest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "completest-pty", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff", - "path", - "examples" - ], - "target": null, - "registry": null - }, - { - "name": "trycmd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "color-auto", - "diff", - "examples" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_complete", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "completion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/completion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "completion-derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/completion-derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dynamic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/dynamic.rs", - "edition": "2021", - "required-features": [ - "unstable-dynamic" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/examples/exhaustive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "debug": [ - "clap/debug" - ], - "default": [], - "unstable-doc": [ - "unstable-dynamic" - ], - "unstable-dynamic": [ - "dep:clap_lex", - "dep:shlex", - "dep:unicode-xid", - "clap/derive", - "dep:is_executable", - "dep:pathdiff" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete-4.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - }, - "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/[^/]+/" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "clap", - "cli", - "completion", - "bash" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap/tree/master/clap_complete", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_complete_command", - "version": "0.6.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", - "license": "MIT", - "license_file": null, - "description": "Reduces boilerplate for adding a shell completion command to Clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "carapace_spec_clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_complete", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_complete_fig", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap_complete_nushell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_complete_command", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "builder", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/examples/builder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/examples/derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "carapace": [ - "dep:carapace_spec_clap" - ], - "default": [ - "nushell" - ], - "fig": [ - "dep:clap_complete_fig" - ], - "nushell": [ - "dep:clap_complete_nushell" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_command-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "clap", - "cli", - "completion" - ], - "readme": "README.md", - "repository": "https://github.com/nihaals/clap-complete-command", - "homepage": null, - "documentation": "https://docs.rs/clap_complete_command", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "clap_complete_nushell", - "version": "4.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A generator library used with clap for Nushell completion scripts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "clap_complete", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "help" - ], - "target": null, - "registry": null - }, - { - "name": "completest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "completest-nu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff", - "examples", - "dir" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_complete_nushell", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nushell_completion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/examples/nushell_completion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sub_subcommands", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/examples/sub_subcommands.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/examples/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_complete_nushell-4.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "clap", - "cli", - "completion", - "nushell" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_derive", - "version": "4.5.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parse command line argument by defining a struct, derive crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "heck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "clap_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_derive-4.5.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "debug": [], - "default": [], - "deprecated": [], - "raw-deprecated": [ - "deprecated" - ], - "unstable-v5": [ - "deprecated" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_derive-4.5.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface", - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "clap", - "cli", - "parse", - "derive", - "proc_macro" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clap_lex", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Minimal, flexible command line parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clap_lex", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_lex-0.7.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clap_lex-0.7.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/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/[^/]+/" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap/tree/master/clap_lex", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "clearscreen", - "version": "3.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Cross-platform terminal screen clearing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "terminfo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.38", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "which", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.28.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fs", - "term" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "consoleapi", - "errhandlingapi", - "handleapi", - "impl-default", - "lmapibuf", - "lmserver", - "lmwksta", - "processenv", - "winbase", - "wincon" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "clearscreen", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "clscli", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/examples/clscli.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/tests/default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "platformed", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/tests/platformed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "windows-console": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/clearscreen-3.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Félix Saparelli " - ], - "categories": [], - "keywords": [ - "clear", - "cls", - "cli", - "terminal" - ], - "readme": "README.md", - "repository": "https://github.com/watchexec/clearscreen", - "homepage": "https://github.com/watchexec/clearscreen", - "documentation": "https://github.com/watchexec/clearscreen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.72.0" - }, - { - "name": "colorchoice", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Global override of color control", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colorchoice", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colorchoice-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64.0" - }, - { - "name": "colored", - "version": "2.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "license": "MPL-2.0", - "license_file": null, - "description": "The most simple way to add colors in your terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ansi_term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rspec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.0-beta.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "colored", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "as_error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/as_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "control", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/control.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/custom_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dynamic_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/dynamic_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "most_simple", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/most_simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nested_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/examples/nested_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ansi_term_compat", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/tests/ansi_term_compat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "no-color": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/colored-2.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Thomas Wickham " - ], - "categories": [], - "keywords": [ - "color", - "string", - "term", - "ansi_term", - "term-painter" - ], - "readme": "README.md", - "repository": "https://github.com/mackwic/colored", - "homepage": "https://github.com/mackwic/colored", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "compact_str", - "version": "0.8.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "license": "MIT", - "license_file": null, - "description": "A memory efficient string type that transparently stores strings on the stack, when possible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "castaway", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "diesel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "markup", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "size_32" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ryu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "union" - ], - "target": null, - "registry": null - }, - { - "name": "sqlx", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "size_32" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-strategy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "compact_str", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/compact_str-0.8.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "borsh": [ - "dep:borsh" - ], - "bytes": [ - "dep:bytes" - ], - "default": [ - "std" - ], - "diesel": [ - "dep:diesel" - ], - "markup": [ - "dep:markup" - ], - "proptest": [ - "dep:proptest" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rkyv": [ - "dep:rkyv" - ], - "serde": [ - "dep:serde" - ], - "smallvec": [ - "dep:smallvec" - ], - "sqlx": [ - "dep:sqlx", - "std" - ], - "sqlx-mysql": [ - "sqlx", - "sqlx/mysql" - ], - "sqlx-postgres": [ - "sqlx", - "sqlx/postgres" - ], - "sqlx-sqlite": [ - "sqlx", - "sqlx/sqlite" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/compact_str-0.8.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Parker Timmerman " - ], - "categories": [ - "encoding", - "parsing", - "memory-management", - "text-processing" - ], - "keywords": [ - "string", - "compact", - "small", - "memory", - "mutable" - ], - "readme": "README.md", - "repository": "https://github.com/ParkMyCar/compact_str", - "homepage": "https://github.com/ParkMyCar/compact_str", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "console", - "version": "0.15.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", - "license": "MIT", - "license_file": null, - "description": "A terminal and console abstraction for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.99", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "bit-set", - "break-dead-code" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "encode_unicode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console", - "Win32_Storage_FileSystem", - "Win32_UI_Input_KeyboardAndMouse" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/colors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "colors256", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/colors256.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cursor_at", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/cursor_at.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "keyboard", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/keyboard.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "term", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/examples/term.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ansi_parser", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/benches/ansi_parser.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ansi-parsing": [], - "default": [ - "unicode-width", - "ansi-parsing" - ], - "unicode-width": [ - "dep:unicode-width" - ], - "windows-console-colors": [ - "ansi-parsing" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console-0.15.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Armin Ronacher " - ], - "categories": [], - "keywords": [ - "cli", - "terminal", - "colors", - "console", - "ansi" - ], - "readme": "README.md", - "repository": "https://github.com/console-rs/console", - "homepage": "https://github.com/console-rs/console", - "documentation": "https://docs.rs/console", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "console_error_panic_hook", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A panic hook for `wasm32-unknown-unknown` that logs panics to `console.error`", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console_error_panic_hook", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_error_panic_hook-0.1.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_error_panic_hook-0.1.7/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_error_panic_hook-0.1.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "./README.md", - "repository": "https://github.com/rustwasm/console_error_panic_hook", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "console_log", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A logging facility that routes Rust log messages to the browser's console.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "console" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "console_log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_log-1.0.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "color": [ - "wasm-bindgen" - ], - "default": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/console_log-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Matthew Nicholson " - ], - "categories": [ - "wasm" - ], - "keywords": [ - "log", - "logging", - "console", - "web_sys", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/iamcodemaker/console_log", - "homepage": null, - "documentation": "https://docs.rs/console_log", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "core-foundation-sys", - "version": "0.8.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings to Core Foundation for macOS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "core_foundation_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/core-foundation-sys-0.8.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "link" - ], - "link": [], - "mac_os_10_7_support": [], - "mac_os_10_8_features": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/core-foundation-sys-0.8.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-apple-darwin" - } - } - }, - "publish": null, - "authors": [ - "The Servo Project Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "homepage": "https://github.com/servo/core-foundation-rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "countme", - "version": "3.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Counts the number of live instances of types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "dashmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "countme", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/examples/bench.rs", - "edition": "2018", - "required-features": [ - "enable" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench_single_thread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/examples/bench_single_thread.rs", - "edition": "2018", - "required-features": [ - "enable" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "print_at_exit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/examples/print_at_exit.rs", - "edition": "2018", - "required-features": [ - "print_at_exit" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "dashmap": [ - "dep:dashmap" - ], - "enable": [ - "dashmap", - "once_cell", - "rustc-hash" - ], - "once_cell": [ - "dep:once_cell" - ], - "print_at_exit": [ - "enable" - ], - "rustc-hash": [ - "dep:rustc-hash" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/countme-3.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "development-tools::profiling" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/matklad/countme", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "cpufeatures", - "version": "0.2.13", - "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, \nwith no_std support and support for mobile targets including Android and iOS\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "aarch64-linux-android", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "cpufeatures", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aarch64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/tests/aarch64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "loongarch64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/tests/loongarch64.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "x86", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/tests/x86.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.13/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "hardware-support", - "no-std" - ], - "keywords": [ - "cpuid", - "target-feature" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "homepage": null, - "documentation": "https://docs.rs/cpufeatures", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crc32fast", - "version": "1.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crc32fast", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/benches/bench.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crc32fast-1.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sam Rijs ", - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "checksum", - "crc", - "crc32", - "simd", - "fast" - ], - "readme": "README.md", - "repository": "https://github.com/srijs/rust-crc32fast", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "criterion", - "version": "0.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Statistics-driven micro-benchmarking library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "async-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ciborium", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "criterion-plot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "csv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "oorandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^11.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "plotters", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "svg_backend", - "area_series", - "line_series" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinytemplate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "rt" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "approx", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "executor" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "criterion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "criterion_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/tests/criterion_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench_main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/benches/bench_main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "async": [ - "futures" - ], - "async-std": [ - "dep:async-std" - ], - "async_futures": [ - "futures/executor", - "async" - ], - "async_smol": [ - "smol", - "async" - ], - "async_std": [ - "async-std", - "async" - ], - "async_tokio": [ - "tokio", - "async" - ], - "cargo_bench_support": [], - "csv": [ - "dep:csv" - ], - "csv_output": [ - "csv" - ], - "default": [ - "rayon", - "plotters", - "cargo_bench_support" - ], - "futures": [ - "dep:futures" - ], - "html_reports": [], - "plotters": [ - "dep:plotters" - ], - "rayon": [ - "dep:rayon" - ], - "real_blackbox": [], - "smol": [ - "dep:smol" - ], - "stable": [ - "csv_output", - "html_reports", - "async_futures", - "async_smol", - "async_tokio", - "async_std" - ], - "tokio": [ - "dep:tokio" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-0.5.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "async_futures", - "async_smol", - "async_std", - "async_tokio" - ] - } - } - }, - "publish": null, - "authors": [ - "Jorge Aparicio ", - "Brook Heisler " - ], - "categories": [ - "development-tools::profiling" - ], - "keywords": [ - "criterion", - "benchmark" - ], - "readme": "README.md", - "repository": "https://github.com/bheisler/criterion.rs", - "homepage": "https://bheisler.github.io/criterion.rs/book/index.html", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "criterion-plot", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Criterion's plotting library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools-num", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-complex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "criterion_plot", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-plot-0.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/criterion-plot-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jorge Aparicio ", - "Brook Heisler " - ], - "categories": [ - "visualization" - ], - "keywords": [ - "plotting", - "gnuplot", - "criterion" - ], - "readme": "README.md", - "repository": "https://github.com/bheisler/criterion.rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crossbeam", - "version": "0.8.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Tools for concurrent programming", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-epoch", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-queue", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-0.8.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "subcrates", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-0.8.4/tests/subcrates.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "crossbeam-epoch/alloc", - "crossbeam-queue/alloc" - ], - "crossbeam-channel": [ - "dep:crossbeam-channel" - ], - "crossbeam-deque": [ - "dep:crossbeam-deque" - ], - "crossbeam-epoch": [ - "dep:crossbeam-epoch" - ], - "crossbeam-queue": [ - "dep:crossbeam-queue" - ], - "default": [ - "std" - ], - "nightly": [ - "crossbeam-epoch/nightly", - "crossbeam-utils/nightly", - "crossbeam-queue/nightly" - ], - "std": [ - "alloc", - "crossbeam-channel/std", - "crossbeam-deque/std", - "crossbeam-epoch/std", - "crossbeam-queue/std", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-0.8.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "data-structures", - "no-std" - ], - "keywords": [ - "atomic", - "garbage", - "non-blocking", - "lock-free", - "rcu" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-channel", - "version": "0.5.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Multi-producer multi-consumer channels for message passing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "signal-hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_channel", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fibonacci", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/examples/fibonacci.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "matching", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/examples/matching.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stopwatch", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/examples/stopwatch.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "after", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/after.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "array", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/array.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "golang", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/golang.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "list", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mpsc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/mpsc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "never", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/never.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ready", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/ready.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "same_channel", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/same_channel.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "select", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/select.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "select_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/select_macro.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "thread_locals", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/thread_locals.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/tick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zero", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/tests/zero.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "crossbeam", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/benches/crossbeam.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "keywords": [ - "channel", - "mpmc", - "select", - "golang", - "message" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crossbeam-deque", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Concurrent work-stealing deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-epoch", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_deque", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fifo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/fifo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "injector", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/injector.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lifo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/lifo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "steal", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/tests/steal.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "crossbeam-epoch/std", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "keywords": [ - "chase-lev", - "lock-free", - "scheduler", - "scheduling" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-epoch", - "version": "0.9.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Epoch-based garbage collection", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": "loom-crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(crossbeam_loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_epoch", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "sanitize", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/examples/sanitize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "loom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/tests/loom.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "defer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/benches/defer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "flush", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/benches/flush.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "pin", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/benches/pin.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "loom": [ - "loom-crate", - "crossbeam-utils/loom" - ], - "loom-crate": [ - "dep:loom-crate" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "std": [ - "alloc", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "no-std" - ], - "keywords": [ - "lock-free", - "rcu", - "atomic", - "garbage" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "crossbeam-queue", - "version": "0.3.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Concurrent queues", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_queue", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "array_queue", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/tests/array_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "seg_queue", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/tests/seg_queue.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "std": [ - "alloc", - "crossbeam-utils/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-queue-0.3.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "data-structures", - "no-std" - ], - "keywords": [ - "queue", - "mpmc", - "lock-free", - "producer", - "consumer" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crossbeam-utils", - "version": "0.8.19", - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Utilities for concurrent programming", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(crossbeam_loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crossbeam_utils", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "atomic_cell", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/atomic_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cache_padded", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/cache_padded.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parker", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/parker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sharded_lock", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/sharded_lock.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "thread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/thread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wait_group", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/tests/wait_group.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "atomic_cell", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/benches/atomic_cell.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "loom": [ - "dep:loom" - ], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.19/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures", - "no-std" - ], - "keywords": [ - "scoped", - "thread", - "atomic", - "cache" - ], - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "crunchy", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2", - "license": "MIT", - "license_file": null, - "description": "Crunchy unroller: deterministically unroll constant loops", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crunchy", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "limit_128" - ], - "limit_1024": [], - "limit_128": [], - "limit_2048": [], - "limit_256": [], - "limit_512": [], - "limit_64": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Vurich " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "crypto-common", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Common cryptographic traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "generic-array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "more_lengths" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "crypto_common", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crypto-common-0.1.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crypto-common-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "traits" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/crypto-common", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ctrlc", - "version": "3.4.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Easy Ctrl-C handler for Rust projects", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "signal-hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.29", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fs", - "signal" - ], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Threading", - "Win32_Security", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation", - "Win32_System_IO", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ctrlc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "issue_46_example", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/examples/issue_46_example.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme_example", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/examples/readme_example.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_97", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/tests/main/issue_97.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/tests/main/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "termination": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ctrlc-3.4.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Antti Keränen " - ], - "categories": [ - "os" - ], - "keywords": [ - "ctrlc", - "signal", - "SIGINT" - ], - "readme": "README.md", - "repository": "https://github.com/Detegr/rust-ctrlc.git", - "homepage": "https://github.com/Detegr/rust-ctrlc", - "documentation": "https://detegr.github.io/doc/ctrlc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.69.0" - }, - { - "name": "darling", - "version": "0.20.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", - "license": "MIT", - "license_file": null, - "description": "A proc-macro library for reading attributes into structs when\nimplementing custom derives.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "darling_macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.37", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(compiletests)", - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.38", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(compiletests)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "darling", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "automatic_bounds", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/automatic_bounds.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "consume_fields", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/consume_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "expr_with", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/expr_with.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fallible_read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/fallible_read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "heterogeneous_enum_and_word", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/heterogeneous_enum_and_word.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "shorthand_or_long_field", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/shorthand_or_long_field.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "supports_struct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/examples/supports_struct.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accrue_errors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/accrue_errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "attrs_with", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/attrs_with.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/compiletests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "computed_bound", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/computed_bound.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_bound", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/custom_bound.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "defaults", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/defaults.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_default.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_newtype", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_newtype.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_struct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_struct.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enums_unit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/enums_unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/error.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/flatten.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_error_accumulation", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/flatten_error_accumulation.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_from_field", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/flatten_from_field.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_generics", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_generics.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_meta", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_meta.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_type_param", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_type_param.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_type_param_default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_type_param_default.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_variant", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/from_variant.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generics", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/generics.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "happy_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/happy_path.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/hash_map.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/multiple.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "newtype", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/newtype.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/skip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "split_declaration", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/split_declaration.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "suggestions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/suggestions.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "supports", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/supports.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unsupported_attributes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/tests/unsupported_attributes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "suggestions" - ], - "diagnostics": [ - "darling_core/diagnostics" - ], - "suggestions": [ - "darling_core/suggestions" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling-0.20.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": "https://docs.rs/darling/0.20.8", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "darling_core", - "version": "0.20.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", - "license": "MIT", - "license_file": null, - "description": "Helper crate for proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ident_case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strsim", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "darling_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_core-0.20.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "diagnostics": [], - "strsim": [ - "dep:strsim" - ], - "suggestions": [ - "strsim" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_core-0.20.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "darling_macro", - "version": "0.20.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8", - "license": "MIT", - "license_file": null, - "description": "Internal support for a proc-macro library for reading attributes into structs when\nimplementing custom derives. Use https://crates.io/crates/darling in your code.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.20.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "darling_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_macro-0.20.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/darling_macro-0.20.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/TedDriggs/darling", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dashmap", - "version": "5.5.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", - "license": "MIT", - "license_file": null, - "description": "Blazing fast concurrent HashMap for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dashmap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-5.5.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "inline": [ - "hashbrown/inline-more" - ], - "raw-api": [], - "rayon": [ - "dep:rayon" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-5.5.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "rayon", - "raw-api", - "serde" - ] - } - } - }, - "publish": null, - "authors": [ - "Acrimon " - ], - "categories": [ - "concurrency", - "algorithms", - "data-structures" - ], - "keywords": [ - "atomic", - "concurrent", - "hashmap" - ], - "readme": "README.md", - "repository": "https://github.com/xacrimon/dashmap", - "homepage": "https://github.com/xacrimon/dashmap", - "documentation": "https://docs.rs/dashmap", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "dashmap", - "version": "6.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "license": "MIT", - "license_file": null, - "description": "Blazing fast concurrent HashMap for Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw" - ], - "target": null, - "registry": null - }, - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.18.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "typesize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dashmap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-6.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "inline": [ - "hashbrown/inline-more" - ], - "raw-api": [], - "rayon": [ - "dep:rayon" - ], - "serde": [ - "dep:serde" - ], - "typesize": [ - "dep:typesize" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dashmap-6.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "rayon", - "raw-api", - "serde" - ] - } - } - }, - "publish": null, - "authors": [ - "Acrimon " - ], - "categories": [ - "concurrency", - "algorithms", - "data-structures" - ], - "keywords": [ - "atomic", - "concurrent", - "hashmap" - ], - "readme": "README.md", - "repository": "https://github.com/xacrimon/dashmap", - "homepage": "https://github.com/xacrimon/dashmap", - "documentation": "https://docs.rs/dashmap", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "diff", - "version": "0.1.13", - "id": "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An LCS based slice and string diffing implementation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "speculate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "diff", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/examples/simple.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/benches/benches.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/diff-0.1.13/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Utkarsh Kukreti " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/utkarshkukreti/diff.rs", - "homepage": "https://github.com/utkarshkukreti/diff.rs", - "documentation": "https://docs.rs/diff", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "difflib", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", - "license": "MIT", - "license_file": null, - "description": "Port of Python's difflib library to Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "difflib", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "example", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/examples/example.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/difflib-0.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dima Kudosh " - ], - "categories": [], - "keywords": [ - "difflib", - "text", - "diff" - ], - "readme": null, - "repository": "https://github.com/DimaKudosh/difflib", - "homepage": "https://github.com/DimaKudosh/difflib", - "documentation": "https://github.com/DimaKudosh/difflib/wiki", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "digest", - "version": "0.10.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Traits for cryptographic hash functions and message authentication codes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "blobby", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "block-buffer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "const-oid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crypto-common", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "digest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/digest-0.10.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/digest-0.10.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "digest", - "crypto", - "hash" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "homepage": null, - "documentation": "https://docs.rs/digest", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dir-test", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", - "license": "Apache-2.0", - "license_file": null, - "description": "Provides a macro to generate tests from files in a directory", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "dir-test-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dir_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-0.3.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-0.3.0/tests/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Fe Project Developers" - ], - "categories": [ - "development-tools", - "filesystem" - ], - "keywords": [ - "test", - "dir", - "directory", - "macro" - ], - "readme": "README.md", - "repository": "https://github.com/fe-lang/dir-test", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dir-test-macros", - "version": "0.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0", - "license": "Apache-2.0", - "license_file": null, - "description": "Provides a procedural macro for `dir-test`", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "dir_test_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-macros-0.3.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dir-test-macros-0.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Fe Project Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/fe-lang/dir-test", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dirs", - "version": "4.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "dirs-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dirs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-4.0.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-4.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Simon Ochsenreither " - ], - "categories": [], - "keywords": [ - "xdg", - "basedir", - "app_dirs", - "path", - "folder" - ], - "readme": "README.md", - "repository": "https://github.com/soc/dirs-rs", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dirs", - "version": "5.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "dirs-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dirs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-5.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-5.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Simon Ochsenreither " - ], - "categories": [], - "keywords": [ - "xdg", - "basedir", - "app_dirs", - "path", - "folder" - ], - "readme": "README.md", - "repository": "https://github.com/soc/dirs-rs", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dirs-sys", - "version": "0.3.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "System-level helper functions for the dirs and directories crates.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "redox_users", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "knownfolders", - "objbase", - "shlobj", - "winbase", - "winerror" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dirs_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.3.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.3.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Simon Ochsenreither " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dirs-dev/dirs-sys-rs", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dirs-sys", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "System-level helper functions for the dirs and directories crates.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "option-ext", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "redox_users", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_UI_Shell", - "Win32_Foundation", - "Win32_Globalization", - "Win32_System_Com" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dirs_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.4.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dirs-sys-0.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Simon Ochsenreither " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dirs-dev/dirs-sys-rs", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "displaydoc", - "version": "0.2.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "displaydoc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/compile_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "happy", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/happy.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "num_in_field", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/num_in_field.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "variantless", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/tests/variantless.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-hook": [ - "./update-readme.sh" - ], - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "#![doc(html_root_url = \"https://docs.rs/{{crate_name}}/{{version}}\")]", - "search": "#!\\[doc\\(html_root_url.*" - }, - { - "file": "CHANGELOG.md", - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n\n# [Unreleased] - ReleaseDate", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/yaahc/{{crate_name}}/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Jane Lusby " - ], - "categories": [], - "keywords": [ - "display", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/yaahc/displaydoc", - "homepage": "https://github.com/yaahc/displaydoc", - "documentation": "https://docs.rs/displaydoc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "doc-comment", - "version": "0.3.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", - "license": "MIT", - "license_file": null, - "description": "Macro to generate doc comments", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "doc_comment", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no_core": [], - "old_macros": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Guillaume Gomez " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/GuillaumeGomez/doc-comment", - "homepage": null, - "documentation": "http://docs.rs/crate/doc-comment", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "drop_bomb", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A runtime guard for implementing linear types.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "drop_bomb", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/drop_bomb-0.1.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/drop_bomb-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/matklad/drop_bomb", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dunce", - "version": "1.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", - "license": "CC0-1.0 OR MIT-0 OR Apache-2.0", - "license_file": null, - "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dunce", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dunce-1.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dunce-1.0.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Kornel " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "realpath", - "unc", - "canonicalize", - "windows", - "deunc" - ], - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/dunce", - "homepage": "https://lib.rs/crates/dunce", - "documentation": "https://docs.rs/dunce", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "dyn-clone", - "version": "1.0.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Clone trait that is object-safe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "dyn_clone", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/examples/readme.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/tests/trait.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/dyn-clone-1.0.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "dyn", - "clone", - "trait-object" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/dyn-clone", - "homepage": null, - "documentation": "https://docs.rs/dyn-clone", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.45" - }, - { - "name": "either", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "either", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/either-1.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "data-structure", - "no_std" - ], - "readme": "README-crates.io.md", - "repository": "https://github.com/rayon-rs/either", - "homepage": null, - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "encode_unicode", - "version": "0.3.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "UTF-8 and UTF-16 character types, iterators and related methods for char, u8 and u16.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ascii", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.8, <2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clippy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "0.*", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "1.0.*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "encode_unicode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "errs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/errs.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/exhaustive.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "iterators", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/iterators.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "oks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/tests/oks.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "multiiterators", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/benches/multiiterators.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ascii": [ - "dep:ascii" - ], - "clippy": [ - "dep:clippy" - ], - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/encode_unicode-0.3.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "ascii/std" - ] - } - } - }, - "publish": null, - "authors": [ - "Torbjørn Birch Moltu " - ], - "categories": [ - "encoding", - "no-std" - ], - "keywords": [ - "unicode", - "UTF-8", - "UTF-16" - ], - "readme": "README.md", - "repository": "https://github.com/tormol/encode_unicode", - "homepage": null, - "documentation": "https://docs.rs/encode_unicode/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "env_filter", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Filter log events using environment variables\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "perf" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "env_filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_filter-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "regex" - ], - "regex": [ - "dep:regex" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_filter-0.1.0/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/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging", - "log", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "env_logger", - "version": "0.11.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "wincon" - ], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_filter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "humantime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "env_logger", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_default_format", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/custom_default_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_format", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/custom_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "direct_logger", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/direct_logger.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filters_from_code", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/filters_from_code.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "in_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/in_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syslog_friendly_format", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/examples/syslog_friendly_format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "init-twice-retains-filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/init-twice-retains-filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log-in-log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/log-in-log.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log_tls_dtors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/log_tls_dtors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regexp_filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/tests/regexp_filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "auto-color": [ - "color", - "anstream/auto" - ], - "color": [ - "dep:anstream", - "dep:anstyle" - ], - "default": [ - "auto-color", - "humantime", - "regex" - ], - "humantime": [ - "dep:humantime" - ], - "regex": [ - "env_filter/regex" - ], - "unstable-kv": [ - "log/kv" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/env_logger-0.11.5/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/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging", - "log", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.71" - }, - { - "name": "equivalent", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Traits for key comparison in maps.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "equivalent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/equivalent-1.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/equivalent-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/cuviper/equivalent", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.6" - }, - { - "name": "errno", - "version": "0.3.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Cross-platform interface to the `errno` variable.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "errno", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/errno-0.3.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "libc/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/errno-0.3.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Chris Wong " - ], - "categories": [ - "no-std", - "os" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "homepage": null, - "documentation": "https://docs.rs/errno", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "etcetera", - "version": "0.8.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An unopinionated library for obtaining configuration, data, cache, & other directories", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "home", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_UI_Shell" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "etcetera", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/etcetera-0.8.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/etcetera-0.8.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "config" - ], - "keywords": [ - "xdg", - "dirs", - "directories", - "basedir", - "path" - ], - "readme": "README.md", - "repository": "https://github.com/lunacookies/etcetera", - "homepage": "https://github.com/lunacookies/etcetera", - "documentation": "https://docs.rs/etcetera", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fastrand", - "version": "2.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A simple and fast random number generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wyhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fastrand", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "char", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/tests/char.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/tests/smoke.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "getrandom": [ - "dep:getrandom" - ], - "js": [ - "std", - "getrandom" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fastrand-2.1.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "fern", - "version": "0.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", - "license": "MIT", - "license_file": null, - "description": "Simple, efficient logging", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "clock" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "humantime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.58", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "reopen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": "reopen03", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "reopen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1", - "kind": null, - "rename": "reopen1", - "optional": true, - "uses_default_features": true, - "features": [ - "signals" - ], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "syslog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": null, - "rename": "syslog3", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "syslog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": "syslog4", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "syslog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6", - "kind": null, - "rename": "syslog6", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(not(windows))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fern", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cmd-program", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/cmd-program.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "colored", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/colored.rs", - "edition": "2018", - "required-features": [ - "colored" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "date-based-file-log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/date-based-file-log.rs", - "edition": "2018", - "required-features": [ - "date-based" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "meta-logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/meta-logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pretty-colored", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/pretty-colored.rs", - "edition": "2018", - "required-features": [ - "colored" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syslog", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/syslog.rs", - "edition": "2018", - "required-features": [ - "syslog-6" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syslog3", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/syslog3.rs", - "edition": "2018", - "required-features": [ - "syslog-3" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syslog4", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/examples/syslog4.rs", - "edition": "2018", - "required-features": [ - "syslog-4" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "channel_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/channel_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enabled_is_deep_check", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/enabled_is_deep_check.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "file_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/file_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "global_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/global_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "meta_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/meta_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "panic_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/panic_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reopen_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/reopen_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "support", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/support.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "write_logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/tests/write_logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "chrono": [ - "dep:chrono" - ], - "colored": [ - "dep:colored" - ], - "date-based": [ - "chrono" - ], - "libc": [ - "dep:libc" - ], - "meta-logging-in-format": [], - "reopen-03": [ - "reopen03", - "libc" - ], - "reopen-1": [ - "reopen1", - "libc" - ], - "reopen03": [ - "dep:reopen03" - ], - "reopen1": [ - "dep:reopen1" - ], - "syslog-3": [ - "syslog3" - ], - "syslog-4": [ - "syslog4" - ], - "syslog-6": [ - "syslog6" - ], - "syslog3": [ - "dep:syslog3" - ], - "syslog4": [ - "dep:syslog4" - ], - "syslog6": [ - "dep:syslog6" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fern-0.7.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "David Ross " - ], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "log", - "logging", - "logger" - ], - "readme": "README.md", - "repository": "https://github.com/daboross/fern", - "homepage": null, - "documentation": "https://docs.rs/fern/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "filetime", - "version": "0.2.25", - "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libredox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.27", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "filetime", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/filetime-0.2.25/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/filetime-0.2.25/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "timestamp", - "mtime" - ], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "homepage": "https://github.com/alexcrichton/filetime", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "flate2", - "version": "1.0.28", - "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", - "license": "MIT OR Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cloudflare-zlib-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libz-ng-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libz-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "with-alloc" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "miniz_oxide", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "with-alloc" - ], - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "flate2", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "compress_file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/compress_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decompress_file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/decompress_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflatedecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflatedecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflatedecoder-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflatedecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflateencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflateencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deflateencoder-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/deflateencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzbuilder", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzbuilder.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzdecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzdecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzdecoder-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzdecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzencoder-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzmultidecoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzmultidecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gzmultidecoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/gzmultidecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibdecoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibdecoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibdecoder-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibdecoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-bufread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibencoder-bufread.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibencoder-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zlibencoder-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/examples/zlibencoder-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "early-flush", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/early-flush.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "empty-read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/empty-read.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gunzip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/gunzip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zero-write", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/tests/zero-write.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "any_impl": [], - "any_zlib": [ - "any_impl" - ], - "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", - "any_impl" - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "api-bindings" - ], - "keywords": [ - "gzip", - "deflate", - "zlib", - "zlib-ng", - "encoding" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/flate2-rs", - "homepage": "https://github.com/rust-lang/flate2-rs", - "documentation": "https://docs.rs/flate2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fnv", - "version": "1.0.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "license": "Apache-2.0 / MIT", - "license_file": null, - "description": "Fowler–Noll–Vo hash function", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fnv", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fnv-1.0.7/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fnv-1.0.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/servo/rust-fnv", - "homepage": null, - "documentation": "https://doc.servo.org/fnv/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "form_urlencoded", - "version": "1.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "form_urlencoded", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/form_urlencoded-1.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - } - ], - "features": { - "alloc": [ - "percent-encoding/alloc" - ], - "default": [ - "std" - ], - "std": [ - "alloc", - "percent-encoding/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/form_urlencoded-1.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no_std" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/rust-url", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "fs-err", - "version": "2.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A drop-in replacement for std::fs with more helpful error messages.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "fs" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.64", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fs_err", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fs-err-2.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fs-err-2.11.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "io_safety": [], - "tokio": [ - "dep:tokio" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fs-err-2.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "sign-tag": true, - "tag-name": "{{version}}", - "pre-release-replacements": [ - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "html_root_url = \"https://docs.rs/fs-err/{{version}}\"", - "search": "html_root_url = \"https://docs\\.rs/fs-err/.*?\"" - } - ] - } - }, - "publish": null, - "authors": [ - "Andrew Hickman " - ], - "categories": [ - "command-line-interface", - "filesystem" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/andrewhickman/fs-err", - "homepage": null, - "documentation": "https://docs.rs/fs-err", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "fsevent-sys", - "version": "4.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", - "license": "MIT", - "license_file": null, - "description": "Rust bindings to the fsevent macOS API for file changes notifications", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.68", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "fsevent_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fsevent-sys-4.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fsevent-sys-4.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-apple-darwin" - ] - } - } - }, - "publish": null, - "authors": [ - "Pierre Baillet " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "generic-array", - "version": "0.14.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "license": "MIT", - "license_file": null, - "description": "Generic types implementing functionality of arrays", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typenum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "generic_array", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generic-array-0.14.7/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generic-array-0.14.7/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "more_lengths": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generic-array-0.14.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - } - }, - "publish": null, - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "generic", - "array" - ], - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "homepage": null, - "documentation": "http://fizyk20.github.io/generic-array/generic_array/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "getopts", - "version": "0.2.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "getopts-like option parsing.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "std", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "getopts", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getopts-0.2.21/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getopts-0.2.21/tests/smoke.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "unicode-width/rustc-dep-of-std", - "std", - "core" - ], - "std": [ - "dep:std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getopts-0.2.21/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "command-line-interface" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/getopts", - "homepage": "https://github.com/rust-lang/getopts", - "documentation": "https://doc.rust-lang.org/getopts", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "getrandom", - "version": "0.2.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A small cross-platform library for retrieving random data from system source", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.62", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.149", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "getrandom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/tests/custom.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "normal", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/tests/normal.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rdrand", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/tests/rdrand.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "buffer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/benches/buffer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "custom": [], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-sys": [ - "dep:js-sys" - ], - "linux_disable_fallback": [], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.14/Cargo.toml", - "metadata": { - "cross": { - "target": { - "x86_64-unknown-netbsd": { - "pre-build": [ - "mkdir -p /tmp/netbsd", - "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O", - "tar -C /tmp/netbsd -xJf base.tar.xz", - "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib", - "rm base.tar.xz", - "rm -rf /tmp/netbsd" - ] - } - } - }, - "docs": { - "rs": { - "features": [ - "std", - "custom" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "homepage": null, - "documentation": "https://docs.rs/getrandom", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "glob", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Support for matching file paths against Unix shell style patterns.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "glob", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "glob-std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/tests/glob-std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/glob-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "homepage": "https://github.com/rust-lang/glob", - "documentation": "https://docs.rs/glob/0.3.1", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "globset", - "version": "0.4.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "license": "Unlicense OR MIT", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "perf", - "syntax", - "meta", - "nfa", - "hybrid" - ], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.188", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.107", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "globset", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.15/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.15/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd-accel": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.15/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "regex", - "glob", - "multiple", - "set", - "pattern" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "documentation": "https://docs.rs/globset", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "globwalk", - "version": "0.9.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", - "license": "MIT", - "license_file": null, - "description": "Glob-matched recursive file system walking.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "docmatic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "globwalk", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "list", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/examples/list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "docs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/tests/docs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globwalk-0.9.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "regex", - "glob", - "pattern", - "walk", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/gilnaa/globwalk", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "half", - "version": "2.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.14", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "libm" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_distr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crunchy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crunchy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"spirv\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "half", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/half-2.4.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "convert", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/half-2.4.1/benches/convert.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "bytemuck": [ - "dep:bytemuck" - ], - "default": [ - "std" - ], - "num-traits": [ - "dep:num-traits" - ], - "rand_distr": [ - "dep:rand", - "dep:rand_distr" - ], - "rkyv": [ - "dep:rkyv" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "use-intrinsics": [], - "zerocopy": [ - "dep:zerocopy" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/half-2.4.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Kathryn Long " - ], - "categories": [ - "no-std", - "data-structures", - "encoding" - ], - "keywords": [ - "f16", - "bfloat16", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/starkat99/half-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "hashbrown", - "version": "0.14.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.42", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "allocator-api2" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "validation" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "raw", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/raw.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "alloc": [ - "dep:alloc" - ], - "allocator-api2": [ - "dep:allocator-api2" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more", - "allocator-api2" - ], - "equivalent": [ - "dep:equivalent" - ], - "inline-more": [], - "nightly": [ - "allocator-api2?/nightly", - "bumpalo/allocator_api" - ], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rkyv": [ - "dep:rkyv" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "hashbrown", - "version": "0.15.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Rust port of Google's SwissTable hash map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "allocator-api2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "foldhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "allocator-api2" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashbrown", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hasher", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/hasher.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rayon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/rayon.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/serde.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "set", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/tests/set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "insert_unique_unchecked", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/benches/insert_unique_unchecked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "set_ops", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/benches/set_ops.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "dep:alloc" - ], - "allocator-api2": [ - "dep:allocator-api2" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "default-hasher", - "inline-more", - "allocator-api2", - "equivalent", - "raw-entry" - ], - "default-hasher": [ - "dep:foldhash" - ], - "equivalent": [ - "dep:equivalent" - ], - "inline-more": [], - "nightly": [ - "allocator-api2?/nightly", - "bumpalo/allocator_api" - ], - "raw-entry": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api", - "raw-entry" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw-entry" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "hashlink", - "version": "0.9.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "HashMap-like containers that hold their key-value pairs in a user controllable order", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "ahash", - "inline-more" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hashlink", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "linked_hash_map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/linked_hash_map.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "linked_hash_set", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/linked_hash_set.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lru_cache", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/lru_cache.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/tests/serde.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ], - "serde_impl": [ - "serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashlink-0.9.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kyren " - ], - "categories": [], - "keywords": [ - "data-structures", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/kyren/hashlink", - "homepage": null, - "documentation": "https://docs.rs/hashlink", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "heck", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "heck is a case conversion library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "heck", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/heck-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/heck-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "no-std" - ], - "keywords": [ - "string", - "case", - "camel", - "snake", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/withoutboats/heck", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "hermit-abi", - "version": "0.3.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Hermit system calls definitions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "hermit_abi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hermit-abi-0.3.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hermit-abi-0.3.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "keywords": [ - "unikernel", - "libos" - ], - "readme": "README.md", - "repository": "https://github.com/hermit-os/hermit-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "home", - "version": "0.5.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared definitions of home directories.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_UI_Shell", - "Win32_System_Com" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "home", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/home-0.5.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/home-0.5.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brian Anderson " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "homepage": null, - "documentation": "https://docs.rs/home", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70.0" - }, - { - "name": "humantime", - "version": "2.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "humantime", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "datetime_format", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/benches/datetime_format.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "datetime_parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/benches/datetime_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/humantime-2.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "homepage": "https://github.com/tailhook/humantime", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "iana-time-zone", - "version": "0.1.60", - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "get the IANA time zone for the current system", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "core-foundation-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.50", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "android_system_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"android\")", - "registry": null - }, - { - "name": "iana-time-zone-haiku", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"haiku\")", - "registry": null - }, - { - "name": "windows-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.50, <=0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "iana_time_zone", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_timezone", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/examples/get_timezone.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stress-test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/examples/stress-test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "fallback": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-0.1.60/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Straw ", - "René Kijewski ", - "Ryan Lopopolo " - ], - "categories": [ - "date-and-time", - "internationalization", - "os" - ], - "keywords": [ - "IANA", - "time" - ], - "readme": "README.md", - "repository": "https://github.com/strawlab/iana-time-zone", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "iana-time-zone-haiku", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "iana-time-zone support crate for Haiku OS", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "iana_time_zone_haiku", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-haiku-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-haiku-0.1.2/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iana-time-zone-haiku-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "René Kijewski " - ], - "categories": [ - "date-and-time", - "internationalization", - "os" - ], - "keywords": [ - "IANA", - "time" - ], - "readme": "README.md", - "repository": "https://github.com/strawlab/iana-time-zone", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "icu_collections", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Collection of API for use in ICU libraries.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive", - "yoke" - ], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_collections", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "unicode_bmp_blocks_selector", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/examples/unicode_bmp_blocks_selector.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "char16trie", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/tests/char16trie.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cpt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/tests/cpt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "codepointtrie", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/benches/codepointtrie.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iai_cpt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/benches/iai_cpt.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "inv_list", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/benches/inv_list.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "databake": [ - "dep:databake", - "zerovec/databake" - ], - "serde": [ - "dep:serde", - "zerovec/serde" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for managing Unicode Language and Locale Identifiers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "litemap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "writeable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filter_langids", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/examples/filter_langids.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "syntatically_canonicalize_locales", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/examples/syntatically_canonicalize_locales.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "langid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/tests/langid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "locale", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/tests/locale.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iai_langid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/iai_langid.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "langid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/langid.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "locale", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/locale.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "subtags", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/benches/subtags.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde" - ], - "databake": [ - "dep:databake" - ], - "serde": [ - "dep:serde", - "tinystr/serde" - ], - "std": [], - "zerovec": [ - "dep:zerovec" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid_transform", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for Unicode Language and Locale Identifiers canonicalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_locid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "icu_locid_transform_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "yoke" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid_transform", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "locale_canonicalizer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/tests/locale_canonicalizer.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "locale_canonicalizer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/benches/locale_canonicalizer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde" - ], - "compiled_data": [ - "dep:icu_locid_transform_data" - ], - "datagen": [ - "serde", - "dep:databake", - "zerovec/databake", - "icu_locid/databake", - "tinystr/databake" - ], - "default": [ - "compiled_data" - ], - "serde": [ - "dep:serde", - "icu_locid/serde", - "tinystr/serde", - "zerovec/serde", - "icu_provider/serde" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ], - "skip_optional_dependencies": true - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_locid_transform_data", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_locid_transform crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_locid_transform_data", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform_data-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_locid_transform_data-1.5.0/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "45.0.0" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_normalizer", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "API for normalizing text into Unicode Normalization Forms", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_collections", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_normalizer_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf16_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "utf8_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "write16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arraystring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "atoi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "detone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "write16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "arrayvec" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_normalizer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "canonical_composition", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/canonical_composition.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "canonical_decomposition", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/canonical_decomposition.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "composing_normalizer_nfc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/composing_normalizer_nfc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "composing_normalizer_nfkc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/composing_normalizer_nfkc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "decomposing_normalizer_nfd", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "decomposing_normalizer_nfkd", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/benches/decomposing_normalizer_nfkd.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiled_data": [ - "dep:icu_normalizer_data", - "icu_properties/compiled_data" - ], - "datagen": [ - "serde", - "dep:databake", - "icu_collections/databake", - "zerovec/databake", - "icu_properties/datagen" - ], - "default": [ - "compiled_data" - ], - "experimental": [], - "serde": [ - "dep:serde", - "icu_collections/serde", - "zerovec/serde", - "icu_properties/serde" - ], - "std": [ - "icu_collections/std", - "icu_properties/std", - "icu_provider/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_normalizer_data", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_normalizer crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_normalizer_data", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer_data-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_normalizer_data-1.5.0/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "45.0.0" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_properties", - "version": "1.5.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "license": "Unicode-3.0", - "license_file": null, - "description": "Definitions for Unicode properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_collections", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_locid_transform", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "compiled_data" - ], - "target": null, - "registry": null - }, - { - "name": "icu_properties_data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "zerovec" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-bidi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_properties", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties-1.5.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bidi": [ - "dep:unicode-bidi" - ], - "compiled_data": [ - "dep:icu_properties_data", - "dep:icu_locid_transform" - ], - "datagen": [ - "serde", - "dep:databake", - "zerovec/databake", - "icu_collections/databake", - "tinystr/databake" - ], - "default": [ - "compiled_data" - ], - "serde": [ - "dep:serde", - "tinystr/serde", - "zerovec/serde", - "icu_collections/serde", - "icu_provider/serde" - ], - "std": [ - "icu_collections/std", - "icu_provider/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties-1.5.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_properties_data", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Data for the icu_properties crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_properties_data", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties_data-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_properties_data-1.5.0/Cargo.toml", - "metadata": { - "sources": { - "cldr": { - "tagged": "45.0.0" - }, - "icuexport": { - "tagged": "icu4x/2024-05-16/75.x" - }, - "segmenter_lstm": { - "tagged": "v0.1.0" - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_provider", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Trait and struct definitions for the ICU data provider", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "erased-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "icu_locid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_provider_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive", - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinystr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "writeable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "icu_provider", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "data_locale_bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0/benches/data_locale_bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "datagen": [ - "serde", - "dep:erased-serde", - "dep:databake", - "std", - "sync" - ], - "deserialize_bincode_1": [ - "serde", - "dep:bincode", - "std" - ], - "deserialize_json": [ - "serde", - "dep:serde_json" - ], - "deserialize_postcard_1": [ - "serde", - "dep:postcard" - ], - "experimental": [], - "log_error_context": [ - "logging" - ], - "logging": [ - "dep:log" - ], - "macros": [ - "dep:icu_provider_macros" - ], - "serde": [ - "dep:serde", - "yoke/serde" - ], - "std": [ - "icu_locid/std" - ], - "sync": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "macros" - ], - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "icu_provider_macros", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "license": "Unicode-3.0", - "license_file": null, - "description": "Proc macros for ICU data providers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "icu_provider_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider_macros-1.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/icu_provider_macros-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "internationalization" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": "https://icu4x.unicode.org", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "ident_case", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Utility for applying case rules to Rust identifiers.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ident_case", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ident_case-1.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ident_case-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Driggs " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TedDriggs/ident_case", - "homepage": null, - "documentation": "https://docs.rs/ident_case/1.0.1", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "idna", - "version": "1.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "idna_adapter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "const_generics" - ], - "target": null, - "registry": null - }, - { - "name": "utf8_iter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tester", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "idna", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/tests/unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unitbis", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/tests/unitbis.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "all", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/benches/all.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "compiled_data": [ - "idna_adapter/compiled_data" - ], - "default": [ - "std", - "compiled_data" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [], - "keywords": [ - "no_std", - "web", - "http" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-url/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "idna_adapter", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Back end adapter for idna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "icu_normalizer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "icu_properties", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "idna_adapter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna_adapter-1.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "compiled_data": [ - "icu_normalizer/compiled_data", - "icu_properties/compiled_data" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/idna_adapter-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no-std", - "internationalization" - ], - "keywords": [ - "unicode", - "dns", - "idna" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/idna_adapter", - "homepage": "https://docs.rs/crate/idna_adapter/latest", - "documentation": "https://docs.rs/idna_adapter/latest/idna_adapter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67.0" - }, - { - "name": "ignore", - "version": "0.4.23", - "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "perf", - "syntax", - "meta", - "nfa", - "hybrid", - "dfa-onepass" - ], - "target": null, - "registry": null - }, - { - "name": "same-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "crossbeam-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ignore", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "walk", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/examples/walk.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "gitignore_matched_path_or_any_parents_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/tests/gitignore_matched_path_or_any_parents_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "simd-accel": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ignore-0.4.23/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "glob", - "ignore", - "gitignore", - "pattern", - "file" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "documentation": "https://docs.rs/ignore", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "imara-diff", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", - "license": "Apache-2.0", - "license_file": null, - "description": "A high performance library for computing diffs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw", - "inline-more" - ], - "target": null, - "registry": null - }, - { - "name": "expect-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "imara_diff", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imara-diff-0.1.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "unified_diff" - ], - "unified_diff": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imara-diff-0.1.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "pascalkuthe " - ], - "categories": [], - "keywords": [ - "diff", - "difference", - "myers", - "compare", - "changes" - ], - "readme": "README.md", - "repository": "https://github.com/pascalkuthe/imara-diff", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "imperative", - "version": "1.0.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Check for imperative mood in text", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "phf", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rust-stemmers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "codegenrs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "multimap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "phf_codegen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rust-stemmers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "imperative", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imperative-1.0.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imperative-1.0.6/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/crate-ci/imperative/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Ed Page " - ], - "categories": [ - "text-processing" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/crate-ci/imperative", - "homepage": null, - "documentation": "https://docs.rs/imperative", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "indexmap", - "version": "2.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A hash table with consistent order and fast iteration.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "equivalent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": "rustc-rayon", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "indexmap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_full_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/macros_full_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/quick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "faststring", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/benches/faststring.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "borsh": [ - "dep:borsh" - ], - "default": [ - "std" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "test_debug": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indexmap-2.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde", - "borsh", - "rayon" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "allow-branch": [ - "master" - ], - "sign-tag": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/indexmap-rs/indexmap", - "homepage": null, - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "indicatif", - "version": "0.17.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", - "license": "MIT", - "license_file": null, - "description": "A progress bar and cli reporting library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "ansi-parsing" - ], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "number_prefix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "io-util" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vt100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "color", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs", - "time", - "rt" - ], - "target": null, - "registry": null - }, - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "indicatif", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/cargo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cargowrap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/cargowrap.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "download", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/download.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "download-continued", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/download-continued.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "download-speed", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/download-speed.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "fastbar", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/fastbar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "finebars", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/finebars.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/iterator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/log.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "long-spinner", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/long-spinner.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "message", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/message.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "morebars", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/morebars.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "multi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/multi.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "multi-tree", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/multi-tree.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "multi-tree-ext", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/multi-tree-ext.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "single", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/single.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "slow", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/slow.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "spinner-loop", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/spinner-loop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "steady", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/steady.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tokio", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/tokio.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "yarnish", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/examples/yarnish.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multi-autodrop", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/tests/multi-autodrop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "render", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/tests/render.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "unicode-width", - "console/unicode-width" - ], - "futures": [ - "dep:futures-core" - ], - "improved_unicode": [ - "unicode-segmentation", - "unicode-width", - "console/unicode-width" - ], - "in_memory": [ - "vt100" - ], - "rayon": [ - "dep:rayon" - ], - "tokio": [ - "dep:tokio" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ], - "unicode-width": [ - "dep:unicode-width" - ], - "vt100": [ - "dep:vt100" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indicatif-0.17.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "progress", - "pb", - "colors", - "progressbar" - ], - "readme": "README.md", - "repository": "https://github.com/console-rs/indicatif", - "homepage": null, - "documentation": "https://docs.rs/indicatif", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "indoc", - "version": "2.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Indented document literals", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "unindent", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "indoc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_concat", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_concat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_formatdoc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_formatdoc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_indoc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_indoc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_unindent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_unindent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_writedoc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/tests/test_writedoc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "text-processing", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "heredoc", - "nowdoc", - "multiline", - "string", - "literal" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/indoc", - "homepage": null, - "documentation": "https://docs.rs/indoc", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "inotify", - "version": "0.10.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", - "license": "ISC", - "license_file": null, - "description": "Idiomatic wrapper for inotify", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "inotify-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "net" - ], - "target": null, - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "maplit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "inotify", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/examples/stream.rs", - "edition": "2018", - "required-features": [ - "stream" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "watch", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/examples/watch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/tests/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "stream" - ], - "futures-core": [ - "dep:futures-core" - ], - "stream": [ - "futures-core", - "tokio" - ], - "tokio": [ - "dep:tokio" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-0.10.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Hanno Braun ", - "Félix Saparelli ", - "Cristian Kubis ", - "Frank Denis " - ], - "categories": [ - "api-bindings", - "filesystem" - ], - "keywords": [ - "inotify", - "linux" - ], - "readme": "README.md", - "repository": "https://github.com/hannobraun/inotify", - "homepage": null, - "documentation": "https://docs.rs/inotify", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "inotify-sys", - "version": "0.1.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", - "license": "ISC", - "license_file": null, - "description": "inotify bindings for the Rust programming language", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "inotify_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-sys-0.1.5/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/inotify-sys-0.1.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Hanno Braun " - ], - "categories": [ - "external-ffi-bindings", - "filesystem" - ], - "keywords": [ - "inotify", - "linux" - ], - "readme": "README.md", - "repository": "https://github.com/hannobraun/inotify-sys", - "homepage": null, - "documentation": "https://docs.rs/inotify-sys", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "insta", - "version": "1.41.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "license": "Apache-2.0", - "license_file": null, - "description": "A snapshot testing library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive", - "env" - ], - "target": null, - "registry": null - }, - { - "name": "console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "csv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "linked-hash-map", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pest_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "unicode" - ], - "target": null, - "registry": null - }, - { - "name": "ron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "similar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "inline" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc_version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.117", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "similar-asserts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "insta", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_advanced", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_advanced.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_basic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_binary", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_binary.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_glob", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_glob.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_inline", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_inline.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_redaction", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_redaction.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_settings", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/tests/test_settings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "_cargo_insta_internal": [ - "clap" - ], - "clap": [ - "dep:clap" - ], - "colors": [ - "console" - ], - "console": [ - "dep:console" - ], - "csv": [ - "dep:csv", - "serde" - ], - "default": [ - "colors" - ], - "filters": [ - "regex" - ], - "glob": [ - "walkdir", - "globset" - ], - "globset": [ - "dep:globset" - ], - "json": [ - "serde" - ], - "pest": [ - "dep:pest" - ], - "pest_derive": [ - "dep:pest_derive" - ], - "redactions": [ - "pest", - "pest_derive", - "serde" - ], - "regex": [ - "dep:regex" - ], - "ron": [ - "dep:ron", - "serde" - ], - "serde": [ - "dep:serde" - ], - "toml": [ - "dep:toml", - "serde" - ], - "walkdir": [ - "dep:walkdir" - ], - "yaml": [ - "serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-1.41.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Armin Ronacher " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "snapshot", - "testing", - "jest", - "approval" - ], - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/insta", - "homepage": "https://insta.rs/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "insta-cmd", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", - "license": "Apache-2.0", - "license_file": null, - "description": "A command line extension to the insta testing library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.29.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.139", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.82", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "insta_cmd", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "hello", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/src/bin/hello.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hello", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/examples/hello.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/insta-cmd-0.6.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Armin Ronacher " - ], - "categories": [], - "keywords": [ - "snapshot", - "cmd", - "trycmd", - "assert-cmd" - ], - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/insta-cmd", - "homepage": "https://insta.rs/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57.0" - }, - { - "name": "instant", - "version": "0.1.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12", - "license": "BSD-3-Clause", - "license_file": null, - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "asmjs-unknown-emscripten", - "registry": null - }, - { - "name": "stdweb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "asmjs-unknown-emscripten", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "wasm-bindgen_rs", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "asmjs-unknown-emscripten", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "target": "asmjs-unknown-emscripten", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-emscripten", - "registry": null - }, - { - "name": "stdweb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-emscripten", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "wasm-bindgen_rs", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-emscripten", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "target": "wasm32-unknown-emscripten", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-unknown", - "registry": null - }, - { - "name": "stdweb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-unknown", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "wasm-bindgen_rs", - "optional": true, - "uses_default_features": true, - "features": [], - "target": "wasm32-unknown-unknown", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "target": "wasm32-unknown-unknown", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "instant", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/instant-0.1.12/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/instant-0.1.12/tests/wasm.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/instant-0.1.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "sebcrozet " - ], - "categories": [], - "keywords": [ - "time", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "is-docker", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", - "license": "MIT", - "license_file": null, - "description": "Checks if the process is running inside a Docker container.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "is_docker", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-docker-0.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-docker-0.2.0/examples/main.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-docker-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean Larkin " - ], - "categories": [ - "command-line-utilities" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TheLarkInn/is-docker", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "is-macro", - "version": "0.3.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "license": "Apache-2.0", - "license_file": null, - "description": "Derive methods for using custom enums like Option / Result", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "heck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.33", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold", - "full", - "derive", - "extra-traits", - "fold" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "is_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arg_count", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/arg_count.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "as_mut", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/as_mut.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/generic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reference", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/reference.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rename", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/rename.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trailing_punct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/trailing_punct.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "usage", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/tests/usage.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-macro-0.3.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "강동윤 " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dudykr/ddbase.git", - "homepage": null, - "documentation": "https://docs.rs/is-macro", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "is-terminal", - "version": "0.4.12", - "id": "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", - "license": "MIT", - "license_file": null, - "description": "Test whether a given stream is a terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "atty", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(unix, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(unix, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.38.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "termios" - ], - "target": "cfg(any(unix, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.38.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "stdio" - ], - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "registry": null - }, - { - "name": "hermit-abi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "is_terminal", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-terminal-0.4.12/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-terminal-0.4.12/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "homepage": null, - "documentation": "https://docs.rs/is-terminal", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "is-wsl", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", - "license": "MIT", - "license_file": null, - "description": "Checks if the process is running inside Windows Subsystem for Linux.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "is-docker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "is_wsl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-wsl-0.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-wsl-0.4.0/examples/main.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/is-wsl-0.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sean Larkin " - ], - "categories": [ - "command-line-utilities" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/TheLarkInn/is-wsl", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "itertools", - "version": "0.10.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "permutohedron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itertools", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iris", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/examples/iris.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adaptors_no_collect", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/adaptors_no_collect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_ok", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/flatten_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_hygiene", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/macros_hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge_join", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/merge_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "peeking_take_while", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/peeking_take_while.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/quick.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/test_core.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/test_std.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/tests/zip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench1", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/bench1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations_with_replacement", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/combinations_with_replacement.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fold_specialization", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/fold_specialization.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "powerset", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/powerset.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_fold1", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/tree_fold1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuple_combinations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/tuple_combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/benches/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.10.5/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns" - ], - "keywords": [ - "iterator", - "data-structure", - "zip", - "product", - "group-by" - ], - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "homepage": null, - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "itertools", - "version": "0.13.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "permutohedron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itertools", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iris", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/examples/iris.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "adaptors_no_collect", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/adaptors_no_collect.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten_ok", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/flatten_ok.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "laziness", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/laziness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_hygiene", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/macros_hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge_join", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/merge_join.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "peeking_take_while", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/peeking_take_while.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/quick.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/test_core.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/test_std.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/tests/zip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench1", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/bench1.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "combinations_with_replacement", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/combinations_with_replacement.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fold_specialization", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/fold_specialization.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "powerset", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/powerset.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "specializations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/specializations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tree_reduce", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/tree_reduce.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuple_combinations", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/tuple_combinations.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "tuples", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/benches/tuples.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itertools-0.13.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "iterator", - "data-structure", - "zip", - "product" - ], - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "homepage": null, - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.43.1" - }, - { - "name": "itoa", - "version": "1.0.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Fast integer primitive to string conversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "itoa", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no-panic": [ - "dep:no-panic" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "integer" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/itoa", - "homepage": null, - "documentation": "https://docs.rs/itoa", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "jobserver", - "version": "0.1.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of the GNU Make jobserver for Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.10.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.28.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs" - ], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "jobserver", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client-of-myself", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/client-of-myself.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "helper", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/helper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "make-as-a-client", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/make-as-a-client.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "server", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/tests/server.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/jobserver-rs", - "homepage": "https://github.com/rust-lang/jobserver-rs", - "documentation": "https://docs.rs/jobserver", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "jod-thread", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "std::thread which joins on drop by default.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "jod_thread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jod-thread-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jod-thread-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "concurrency" - ], - "keywords": [ - "thread", - "join", - "structured", - "concurrency" - ], - "readme": "README.md", - "repository": "https://github.com/matklad/jod-thread", - "homepage": null, - "documentation": "https://docs.rs/jod-thread", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "js-sys", - "version": "0.3.72", - "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "license": "MIT OR Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "js_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/js-sys-0.3.72/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/js-sys-0.3.72/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/js-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "kqueue", - "version": "1.0.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", - "license": "MIT", - "license_file": null, - "description": "kqueue interface for BSDs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "kqueue-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kqueue", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/examples/file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/examples/pid.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-1.0.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-netbsd", - "x86_64-unknown-freebsd", - "i686-unknown-freebsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-openbsd", - "aarch64-apple-darwin", - "x86_64-apple-darwin", - "aarch64-apple-ios", - "x86_64-apple-ios" - ] - } - } - }, - "publish": null, - "authors": [ - "William Orr " - ], - "categories": [ - "os::unix-apis", - "filesystem" - ], - "keywords": [ - "kqueue", - "kevent", - "bsd" - ], - "readme": "README.md", - "repository": "https://gitlab.com/rust-kqueue/rust-kqueue", - "homepage": null, - "documentation": "https://docs.worrbase.com/rust/kqueue/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "kqueue-sys", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", - "license": "MIT", - "license_file": null, - "description": "Low-level kqueue interface for BSDs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "kqueue_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-sys-1.0.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kqueue-sys-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-freebsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-apple-darwin" - ] - } - } - }, - "publish": null, - "authors": [ - "William Orr ", - "Daniel (dmilith) Dettlaff " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::unix-apis", - "filesystem" - ], - "keywords": [ - "kqueue", - "kevent", - "bsd", - "darwin", - "macos" - ], - "readme": "README.md", - "repository": "https://gitlab.com/rust-kqueue/rust-kqueue-sys", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lazy_static", - "version": "1.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A macro for declaring lazily evaluated statics in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "spin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lazy_static", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_std", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/tests/no_std.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "spin": [ - "dep:spin" - ], - "spin_no_std": [ - "spin" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lazy_static-1.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marvin Löbel " - ], - "categories": [ - "no-std", - "rust-patterns", - "memory-management" - ], - "keywords": [ - "macro", - "lazy", - "static" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", - "homepage": null, - "documentation": "https://docs.rs/lazy_static", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "libc", - "version": "0.2.164", - "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Raw FFI bindings to platform libraries like libc.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "const_fn", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/tests/const_fn.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.164/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zbuild-std=core" - ], - "default-target": "x86_64-unknown-linux-gnu", - "features": [ - "const-extern-fn", - "extra_traits" - ], - "targets": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-linux-android", - "aarch64-pc-windows-msvc", - "aarch64-unknown-freebsd", - "aarch64-unknown-fuchsia", - "aarch64-unknown-hermit", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-linux-musl", - "aarch64-unknown-netbsd", - "aarch64-unknown-openbsd", - "aarch64-wrs-vxworks", - "arm-linux-androideabi", - "arm-unknown-linux-gnueabi", - "arm-unknown-linux-gnueabihf", - "arm-unknown-linux-musleabi", - "arm-unknown-linux-musleabihf", - "armebv7r-none-eabi", - "armebv7r-none-eabihf", - "armv5te-unknown-linux-gnueabi", - "armv5te-unknown-linux-musleabi", - "armv7-linux-androideabi", - "armv7-unknown-linux-gnueabihf", - "armv7-unknown-linux-musleabihf", - "armv7-wrs-vxworks-eabihf", - "armv7r-none-eabi", - "armv7r-none-eabihf", - "i586-pc-windows-msvc", - "i586-unknown-linux-gnu", - "i586-unknown-linux-musl", - "i686-linux-android", - "i686-pc-windows-gnu", - "i686-pc-windows-msvc", - "i686-pc-windows-msvc", - "i686-unknown-freebsd", - "i686-unknown-haiku", - "i686-unknown-linux-gnu", - "i686-unknown-linux-musl", - "i686-unknown-netbsd", - "i686-unknown-openbsd", - "i686-wrs-vxworks", - "mips-unknown-linux-gnu", - "mips-unknown-linux-musl", - "mips64-unknown-linux-gnuabi64", - "mips64-unknown-linux-muslabi64", - "mips64el-unknown-linux-gnuabi64", - "mips64el-unknown-linux-muslabi64", - "mipsel-sony-psp", - "mipsel-unknown-linux-gnu", - "mipsel-unknown-linux-musl", - "nvptx64-nvidia-cuda", - "powerpc-unknown-linux-gnu", - "powerpc-unknown-linux-gnuspe", - "powerpc-unknown-netbsd", - "powerpc-wrs-vxworks", - "powerpc-wrs-vxworks-spe", - "powerpc64-unknown-freebsd", - "powerpc64-unknown-linux-gnu", - "powerpc64-wrs-vxworks", - "powerpc64le-unknown-linux-gnu", - "riscv32gc-unknown-linux-gnu", - "riscv32i-unknown-none-elf", - "riscv32imac-unknown-none-elf", - "riscv32imc-unknown-none-elf", - "riscv32-wrs-vxworks", - "riscv64gc-unknown-freebsd", - "riscv64gc-unknown-hermit", - "riscv64gc-unknown-linux-gnu", - "riscv64gc-unknown-linux-musl", - "riscv64gc-unknown-none-elf", - "riscv64imac-unknown-none-elf", - "riscv64-wrs-vxworks", - "s390x-unknown-linux-gnu", - "s390x-unknown-linux-musl", - "sparc-unknown-linux-gnu", - "sparc64-unknown-linux-gnu", - "sparc64-unknown-netbsd", - "sparcv9-sun-solaris", - "thumbv6m-none-eabi", - "thumbv7em-none-eabi", - "thumbv7em-none-eabihf", - "thumbv7m-none-eabi", - "thumbv7neon-linux-androideabi", - "thumbv7neon-unknown-linux-gnueabihf", - "wasm32-unknown-emscripten", - "wasm32-unknown-unknown", - "x86_64-apple-darwin", - "x86_64-apple-ios", - "x86_64-fortanix-unknown-sgx", - "x86_64-linux-android", - "x86_64-pc-solaris", - "x86_64-pc-windows-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-dragonfly", - "x86_64-unknown-freebsd", - "x86_64-unknown-fuchsia", - "x86_64-unknown-haiku", - "x86_64-unknown-hermit", - "x86_64-unknown-illumos", - "x86_64-unknown-l4re-uclibc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-gnux32", - "x86_64-unknown-linux-musl", - "x86_64-unknown-netbsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-redox", - "x86_64-wrs-vxworks" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "homepage": "https://github.com/rust-lang/libc", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "libcst", - "version": "1.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", - "license": "MIT AND (MIT AND PSF-2.0)", - "license_file": null, - "description": "A Python parser and Concrete Syntax Tree library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libcst_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.15", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "peg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pyo3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - }, - { - "name": "difference", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "cdylib", - "rlib" - ], - "crate_types": [ - "cdylib", - "rlib" - ], - "name": "libcst_native", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/src/bin.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parser_roundtrip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/tests/parser_roundtrip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parser_benchmark", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/benches/parser_benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "py" - ], - "py": [ - "pyo3", - "pyo3/extension-module" - ], - "pyo3": [ - "dep:pyo3" - ], - "trace": [ - "peg/trace" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst-1.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "LibCST Developers" - ], - "categories": [ - "parser-implementations" - ], - "keywords": [ - "python", - "cst", - "ast" - ], - "readme": "README.md", - "repository": "https://github.com/Instagram/LibCST", - "homepage": null, - "documentation": "https://libcst.rtfd.org", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "libcst_derive", - "version": "1.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", - "license": null, - "license_file": "LICENSE", - "description": "Proc macro helpers for libcst.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "libcst_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst_derive-1.4.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libcst_derive-1.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "macros", - "python" - ], - "readme": null, - "repository": "https://github.com/Instagram/LibCST", - "homepage": null, - "documentation": "https://libcst.rtfd.org", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "libmimalloc-sys", - "version": "0.1.39", - "id": "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39", - "license": "MIT", - "license_file": null, - "description": "Sys crate wrapping the mimalloc allocator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cty", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libmimalloc_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libmimalloc-sys-0.1.39/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libmimalloc-sys-0.1.39/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arena": [], - "cty": [ - "dep:cty" - ], - "debug": [], - "debug_in_debug": [], - "extended": [ - "cty" - ], - "local_dynamic_tls": [], - "no_thp": [], - "override": [], - "secure": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libmimalloc-sys-0.1.39/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "extended" - ] - } - } - }, - "publish": null, - "authors": [ - "Octavian Oncescu " - ], - "categories": [ - "memory-management", - "api-bindings" - ], - "keywords": [ - "allocator", - "encrypted-heap", - "performance" - ], - "readme": null, - "repository": "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": "mimalloc", - "default_run": null, - "rust_version": null - }, - { - "name": "libredox", - "version": "0.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "license": "MIT", - "license_file": null, - "description": "Redox stable ABI", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ioslice", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "redox_syscall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "libredox", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libredox-0.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "call": [], - "default": [ - "call", - "std", - "redox_syscall" - ], - "ioslice": [ - "dep:ioslice" - ], - "mkns": [ - "ioslice" - ], - "redox_syscall": [ - "dep:redox_syscall" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libredox-0.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "4lDO2 <4lDO2@protonmail.com>" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://gitlab.redox-os.org/redox-os/libredox.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linked-hash-map", - "version": "0.5.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A HashMap wrapper that holds key-value pairs in insertion order", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "heapsize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linked_hash_map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linked-hash-map-0.5.6/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "heapsize": [ - "dep:heapsize" - ], - "heapsize_impl": [ - "heapsize" - ], - "nightly": [], - "serde": [ - "dep:serde" - ], - "serde_impl": [ - "serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linked-hash-map-0.5.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Stepan Koltsov ", - "Andrew Paseltiner " - ], - "categories": [], - "keywords": [ - "data-structures" - ], - "readme": "README.md", - "repository": "https://github.com/contain-rs/linked-hash-map", - "homepage": "https://github.com/contain-rs/linked-hash-map", - "documentation": "https://docs.rs/linked-hash-map", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "linux-raw-sys", - "version": "0.4.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Generated bindings for Linux's userspace API", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "linux_raw_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linux-raw-sys-0.4.14/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "bootparam": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "elf": [], - "errno": [], - "general": [], - "if_arp": [], - "if_ether": [], - "if_packet": [], - "io_uring": [], - "ioctl": [], - "loop_device": [], - "mempolicy": [], - "net": [], - "netlink": [], - "no_std": [], - "prctl": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [], - "system": [], - "xdp": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/linux-raw-sys-0.4.14/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "bootparam", - "ioctl", - "netlink", - "io_uring", - "if_arp", - "if_ether", - "if_packet", - "net", - "prctl", - "elf", - "xdp", - "mempolicy", - "system", - "loop_device" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "homepage": null, - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "litemap", - "version": "0.7.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", - "license": "Unicode-3.0", - "license_file": null, - "description": "A key-value Map implementation based on a flat, sorted Vec.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "validation" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "litemap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "language_names_hash_map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/language_names_hash_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "language_names_lite_map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/language_names_lite_map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "litemap_bincode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/litemap_bincode.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "litemap_postcard", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/examples/litemap_postcard.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rkyv", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/tests/rkyv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "store", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/tests/store.rs", - "edition": "2021", - "required-features": [ - "testing" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "litemap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/benches/litemap.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "bench": [ - "serde" - ], - "databake": [ - "dep:databake" - ], - "default": [ - "alloc" - ], - "serde": [ - "dep:serde" - ], - "testing": [ - "alloc" - ], - "yoke": [ - "dep:yoke" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/litemap-0.7.3/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [], - "keywords": [ - "sorted", - "vec", - "map", - "hashmap", - "btreemap" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": "https://docs.rs/litemap", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "lock_api", - "version": "0.4.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "owning_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scopeguard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.126", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lock_api", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.11/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arc_lock": [], - "atomic_usize": [], - "default": [ - "atomic_usize" - ], - "nightly": [], - "owning_ref": [ - "dep:owning_ref" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency", - "no-std" - ], - "keywords": [ - "mutex", - "rwlock", - "lock", - "no_std" - ], - "readme": null, - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49.0" - }, - { - "name": "log", - "version": "0.4.22", - "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A lightweight logging facade for Rust\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval_ref", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "value-bag", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "inline-i128" - ], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sval_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "value-bag", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "test" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/tests/integration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/tests/macros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "value", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/benches/value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "kv": [], - "kv_serde": [ - "kv_std", - "value-bag/serde", - "serde" - ], - "kv_std": [ - "std", - "kv", - "value-bag/error" - ], - "kv_sval": [ - "kv", - "value-bag/sval", - "sval", - "sval_ref" - ], - "kv_unstable": [ - "kv", - "value-bag" - ], - "kv_unstable_serde": [ - "kv_serde", - "kv_unstable_std" - ], - "kv_unstable_std": [ - "kv_std", - "kv_unstable" - ], - "kv_unstable_sval": [ - "kv_sval", - "kv_unstable" - ], - "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" - ], - "sval_ref": [ - "dep:sval_ref" - ], - "value-bag": [ - "dep:value-bag" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "kv_std", - "kv_sval", - "kv_serde" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "development-tools::debugging" - ], - "keywords": [ - "logging" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/log", - "homepage": null, - "documentation": "https://docs.rs/log", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "lsp-server", - "version": "0.7.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generic LSP server scaffold.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.192", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.108", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ctrlc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lsp-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.95", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lsp_server", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lsp-server-0.7.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "goto_def", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lsp-server-0.7.7/examples/goto_def.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lsp-server-0.7.7/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rust-lang/rust-analyzer/tree/master/lib/lsp-server", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "lsp-types", - "version": "0.95.1", - "id": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", - "license": "MIT", - "license_file": null, - "description": "Types for interaction with a language server, using VSCode's Language Server Protocol", - "source": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#3512a9f33eadc5402cfab1b8f7340824c8ca1439", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.34", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.50", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_repr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "lsp_types", - "src_path": "/home/micha/.cargo/git/checkouts/lsp-types-f7b2433de4ce71eb/3512a9f/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lsif", - "src_path": "/home/micha/.cargo/git/checkouts/lsp-types-f7b2433de4ce71eb/3512a9f/tests/lsif.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "proposed": [] - }, - "manifest_path": "/home/micha/.cargo/git/checkouts/lsp-types-f7b2433de4ce71eb/3512a9f/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Markus Westerlind ", - "Bruno Medeiros " - ], - "categories": [], - "keywords": [ - "language", - "server", - "lsp", - "vscode", - "lsif" - ], - "readme": "README.md", - "repository": "https://github.com/gluon-lang/lsp-types", - "homepage": null, - "documentation": "https://docs.rs/lsp-types", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "matchers", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", - "license": "MIT", - "license_file": null, - "description": "Regex matching on character and byte streams.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "matchers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchers-0.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchers-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Eliza Weisman " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "regex", - "match", - "pattern", - "streaming" - ], - "readme": "README.md", - "repository": "https://github.com/hawkw/matchers", - "homepage": "https://github.com/hawkw/matchers", - "documentation": "https://docs.rs/matchers/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "matches", - "version": "0.1.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", - "license": "MIT", - "license_file": null, - "description": "A macro to evaluate, as a boolean, whether an expression matches a pattern.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "matches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro_use_one", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/tests/macro_use_one.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_star", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/tests/use_star.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matches-0.1.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/SimonSapin/rust-std-candidates", - "homepage": null, - "documentation": "https://docs.rs/matches/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "matchit", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", - "license": "MIT AND BSD-3-Clause", - "license_file": null, - "description": "A high performance, zero-copy URL router.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "actix-router", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gonzales", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.3-beta", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http-body-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hyper", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "http1", - "server" - ], - "target": null, - "registry": null - }, - { - "name": "hyper-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "tokio" - ], - "target": null, - "registry": null - }, - { - "name": "path-tree", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "route-recognizer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "routefinder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "tower", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "make", - "util" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "matchit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hyper", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/examples/hyper.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "insert", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/insert.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "match", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/match.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "merge", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/merge.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "remove", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/tests/remove.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "__test_helpers": [], - "default": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/matchit-0.8.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ibraheem Ahmed " - ], - "categories": [ - "network-programming", - "algorithms" - ], - "keywords": [ - "router", - "path", - "tree", - "match", - "url" - ], - "readme": "README.md", - "repository": "https://github.com/ibraheemdev/matchit", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "memchr", - "version": "2.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for\n1, 2 or 3 byte search and single substring search.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "memchr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [], - "logging": [ - "dep:log" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [ - "alloc" - ], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "keywords": [ - "memchr", - "memmem", - "substring", - "find", - "search" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "homepage": "https://github.com/BurntSushi/memchr", - "documentation": "https://docs.rs/memchr/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "mimalloc", - "version": "0.1.43", - "id": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", - "license": "MIT", - "license_file": null, - "description": "Performance and security oriented drop-in allocator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libmimalloc-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mimalloc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimalloc-0.1.43/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "debug": [ - "libmimalloc-sys/debug" - ], - "debug_in_debug": [ - "libmimalloc-sys/debug_in_debug" - ], - "default": [], - "extended": [ - "libmimalloc-sys/extended" - ], - "local_dynamic_tls": [ - "libmimalloc-sys/local_dynamic_tls" - ], - "no_thp": [ - "libmimalloc-sys/no_thp" - ], - "override": [ - "libmimalloc-sys/override" - ], - "secure": [ - "libmimalloc-sys/secure" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mimalloc-0.1.43/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Octavian Oncescu ", - "Vincent Rouillé ", - "Thom Chiovoloni " - ], - "categories": [ - "memory-management", - "api-bindings" - ], - "keywords": [ - "mimalloc", - "allocator", - "encrypted-heap", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/purpleprotocol/mimalloc_rust", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "minicov", - "version": "0.3.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Code coverage and profile-guided optimization support for no_std and embedded programs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.77", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "minicov", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minicov-0.3.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minicov-0.3.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minicov-0.3.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "development-tools", - "no-std", - "embedded" - ], - "keywords": [ - "coverage", - "no_std", - "llvm-cov", - "pgo", - "profiling" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/minicov", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "minimal-lexical", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Fast float parsing conversion routines.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "minimal_lexical", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bellerophon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/bellerophon.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bellerophon_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/bellerophon_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/integration_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lemire_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/lemire_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "libm_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/libm_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mask_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/mask_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "number_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/number_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parse_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/parse_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rounding_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/rounding_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "slow_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/slow_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stackvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/stackvec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "vec_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/tests/vec_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "compact": [], - "default": [ - "std" - ], - "lint": [], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/minimal-lexical-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Huszagh " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "parsing", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/Alexhuszagh/minimal-lexical", - "homepage": null, - "documentation": "https://docs.rs/minimal-lexical", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "miniz_oxide", - "version": "0.7.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2", - "license": "MIT OR Zlib OR Apache-2.0", - "license_file": null, - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "adler", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "alloc", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "simd-adler32", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "miniz_oxide", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Frommi ", - "oyvindln " - ], - "categories": [ - "compression" - ], - "keywords": [ - "zlib", - "miniz", - "deflate", - "encoding" - ], - "readme": "Readme.md", - "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "documentation": "https://docs.rs/miniz_oxide", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "mio", - "version": "1.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", - "license": "MIT", - "license_file": null, - "description": "Lightweight non-blocking I/O.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hermit-abi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.9", - "kind": null, - "rename": "libc", - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"hermit\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.149", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "wasi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"wasi\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.149", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Wdk_Foundation", - "Wdk_Storage_FileSystem", - "Wdk_System_IO", - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_WindowsProgramming" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "mio", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_listenfd_server", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/examples/tcp_listenfd_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tcp_server", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/examples/tcp_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "udp_server", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/examples/udp_server.rs", - "edition": "2021", - "required-features": [ - "os-poll", - "net" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "net": [], - "os-ext": [ - "os-poll", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_Security" - ], - "os-poll": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ], - "targets": [ - "aarch64-apple-ios", - "aarch64-linux-android", - "wasm32-wasi", - "x86_64-apple-darwin", - "x86_64-pc-windows-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-dragonfly", - "x86_64-unknown-freebsd", - "x86_64-unknown-illumos", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-netbsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-hermit" - ] - } - }, - "playground": { - "features": [ - "os-poll", - "os-ext", - "net" - ] - } - }, - "publish": null, - "authors": [ - "Carl Lerche ", - "Thomas de Zeeuw ", - "Tokio Contributors " - ], - "categories": [ - "asynchronous" - ], - "keywords": [ - "io", - "async", - "non-blocking" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/mio", - "homepage": "https://github.com/tokio-rs/mio", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "natord", - "version": "1.0.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", - "license": "MIT", - "license_file": null, - "description": "Natural ordering for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "natord", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/natord-1.0.9/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/natord-1.0.9/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kang Seonghoon " - ], - "categories": [], - "keywords": [ - "sort", - "order", - "natural" - ], - "readme": "README.md", - "repository": "https://github.com/lifthrasiir/rust-natord", - "homepage": "https://github.com/lifthrasiir/rust-natord", - "documentation": "https://lifthrasiir.github.io/rust-natord/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "newtype-uuid", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Newtype wrapper around UUIDs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "uuid1" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "newtype_uuid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/newtype-uuid-1.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "uuid/default", - "std" - ], - "schemars08": [ - "dep:schemars", - "std" - ], - "serde": [ - "dep:serde", - "uuid/serde" - ], - "std": [ - "uuid/std", - "alloc" - ], - "v4": [ - "uuid/v4" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/newtype-uuid-1.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=doc_cfg" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "uuid" - ], - "keywords": [ - "uuid", - "unique", - "guid", - "newtype" - ], - "readme": "README.md", - "repository": "https://github.com/oxidecomputer/newtype-uuid", - "homepage": null, - "documentation": "https://docs.rs/newtype-uuid", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "nix", - "version": "0.28.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", - "license": "MIT", - "license_file": null, - "description": "Rust friendly bindings to *nix APIs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.153", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra_traits" - ], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.7.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg_aliases", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "caps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "sysctl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"freebsd\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nix", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-aio-drop", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/sys/test_aio_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-clearenv", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/test_clearenv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-prctl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/test/sys/test_prctl.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "acct": [], - "aio": [ - "pin-utils" - ], - "default": [], - "dir": [ - "fs" - ], - "env": [], - "event": [], - "fanotify": [], - "feature": [], - "fs": [], - "hostname": [], - "inotify": [], - "ioctl": [], - "kmod": [], - "memoffset": [ - "dep:memoffset" - ], - "mman": [], - "mount": [ - "uio" - ], - "mqueue": [ - "fs" - ], - "net": [ - "socket" - ], - "personality": [], - "pin-utils": [ - "dep:pin-utils" - ], - "poll": [], - "process": [], - "pthread": [], - "ptrace": [ - "process" - ], - "quota": [], - "reboot": [], - "resource": [], - "sched": [ - "process" - ], - "signal": [ - "process" - ], - "socket": [ - "memoffset" - ], - "term": [], - "time": [], - "ucontext": [ - "signal" - ], - "uio": [], - "user": [ - "feature" - ], - "zerocopy": [ - "fs", - "uio" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.28.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "aarch64-linux-android", - "x86_64-apple-darwin", - "aarch64-apple-ios", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-fuchsia", - "x86_64-unknown-redox", - "x86_64-unknown-illumos" - ] - } - } - }, - "publish": null, - "authors": [ - "The nix-rust Project Developers" - ], - "categories": [ - "os::unix-apis" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/nix-rust/nix", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.69" - }, - { - "name": "nix", - "version": "0.29.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", - "license": "MIT", - "license_file": null, - "description": "Rust friendly bindings to *nix APIs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.155", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra_traits" - ], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.7.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg_aliases", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "caps", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "sysctl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"freebsd\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nix", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-aio-drop", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/sys/test_aio_drop.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-clearenv", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/test_clearenv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test-prctl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/test/sys/test_prctl.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "acct": [], - "aio": [ - "pin-utils" - ], - "default": [], - "dir": [ - "fs" - ], - "env": [], - "event": [], - "fanotify": [], - "feature": [], - "fs": [], - "hostname": [], - "inotify": [], - "ioctl": [], - "kmod": [], - "memoffset": [ - "dep:memoffset" - ], - "mman": [], - "mount": [ - "uio" - ], - "mqueue": [ - "fs" - ], - "net": [ - "socket" - ], - "personality": [], - "pin-utils": [ - "dep:pin-utils" - ], - "poll": [], - "process": [], - "pthread": [], - "ptrace": [ - "process" - ], - "quota": [], - "reboot": [], - "resource": [], - "sched": [ - "process" - ], - "signal": [ - "process" - ], - "socket": [ - "memoffset" - ], - "term": [], - "time": [], - "ucontext": [ - "signal" - ], - "uio": [], - "user": [ - "feature" - ], - "zerocopy": [ - "fs", - "uio" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.29.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "aarch64-linux-android", - "x86_64-apple-darwin", - "aarch64-apple-ios", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-fuchsia", - "x86_64-unknown-redox", - "x86_64-unknown-illumos" - ] - } - } - }, - "publish": null, - "authors": [ - "The nix-rust Project Developers" - ], - "categories": [ - "os::unix-apis" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/nix-rust/nix", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.69" - }, - { - "name": "nom", - "version": "7.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "minimal-lexical", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/custom_error.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/json.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/json_iterator.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/iterator.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/s_expression.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/examples/string.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/arithmetic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic_ast", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/arithmetic_ast.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/css.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_errors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/custom_errors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "escaped", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/escaped.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "float", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/float.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fnmut", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/fnmut.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/ini.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ini_str", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/ini_str.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issues", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/issues.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/json.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mp4", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/mp4.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiline", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/multiline.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "overflow", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/overflow.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reborrow_fold", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/tests/reborrow_fold.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "docsrs": [], - "std": [ - "alloc", - "memchr/std", - "minimal-lexical/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nom-7.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "features": [ - "alloc", - "std", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "contact@geoffroycouprie.com" - ], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/Geal/nom", - "homepage": null, - "documentation": "https://docs.rs/nom", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48" - }, - { - "name": "notify", - "version": "7.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", - "license": "CC0-1.0", - "license_file": null, - "description": "Cross-platform filesystem notification library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "notify-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.34.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.27.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.10.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "kqueue", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "mio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "os-ext" - ], - "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))", - "registry": null - }, - { - "name": "inotify", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))", - "registry": null - }, - { - "name": "mio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "os-ext" - ], - "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))", - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "fsevent-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "kqueue", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "mio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "os-ext" - ], - "target": "cfg(target_os = \"macos\")", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_System_Threading", - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Security", - "Win32_System_WindowsProgramming", - "Win32_System_IO" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "notify", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-7.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "crossbeam-channel": [ - "dep:crossbeam-channel" - ], - "default": [ - "macos_fsevent" - ], - "fsevent-sys": [ - "dep:fsevent-sys" - ], - "kqueue": [ - "dep:kqueue" - ], - "macos_fsevent": [ - "fsevent-sys" - ], - "macos_kqueue": [ - "kqueue", - "mio" - ], - "mio": [ - "dep:mio" - ], - "serde": [ - "notify-types/serde" - ], - "serialization-compat-6": [ - "notify-types/serialization-compat-6" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-7.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Félix Saparelli ", - "Daniel Faust ", - "Aron Heinecke " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "events", - "filesystem", - "notify", - "watch" - ], - "readme": "README.md", - "repository": "https://github.com/notify-rs/notify.git", - "homepage": "https://github.com/notify-rs/notify", - "documentation": "https://docs.rs/notify", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.72" - }, - { - "name": "notify-types", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Types used by the notify crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "instant", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.89", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.34.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rstest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.21.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "notify_types", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-types-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ], - "serialization-compat-6": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/notify-types-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Daniel Faust " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "events", - "filesystem", - "notify", - "watch" - ], - "readme": "README.md", - "repository": "https://github.com/notify-rs/notify.git", - "homepage": "https://github.com/notify-rs/notify", - "documentation": "https://docs.rs/notify-types", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.72" - }, - { - "name": "nu-ansi-term", - "version": "0.46.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", - "license": "MIT", - "license_file": null, - "description": "Library for ANSI terminal colors and styles (bold, underline)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "overload", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.90", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "processenv" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nu_ansi_term", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "256_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/256_colors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/basic_colors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gradient_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/gradient_colors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "rgb_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/examples/rgb_colors.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "derive_serde_style": [ - "serde" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "ogham@bsago.me", - "Ryan Scheel (Havvy) ", - "Josh Triplett ", - "The Nushell Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/nushell/nu-ansi-term", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "nu-ansi-term", - "version": "0.50.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", - "license": "MIT", - "license_file": null, - "description": "Library for ANSI terminal colors and styles (bold, underline)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.94", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": "windows", - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console", - "Win32_Storage_FileSystem", - "Win32_Security" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "nu_ansi_term", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "256_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/256_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/basic_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "gradient_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/gradient_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hyperlink", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/hyperlink.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "rgb_colors", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/rgb_colors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "title", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/examples/title.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "style", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/tests/style.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "derive_serde_style": [ - "serde" - ], - "gnu_legacy": [], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.50.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "ogham@bsago.me", - "Ryan Scheel (Havvy) ", - "Josh Triplett ", - "The Nushell Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/nushell/nu-ansi-term", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.62.1" - }, - { - "name": "num-traits", - "version": "0.2.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Numeric traits for generic mathematics", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "autocfg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "num_traits", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cast", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/tests/cast.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "i128": [], - "libm": [ - "dep:libm" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "keywords": [ - "mathematics", - "numerics" - ], - "readme": "README.md", - "repository": "https://github.com/rust-num/num-traits", - "homepage": "https://github.com/rust-num/num-traits", - "documentation": "https://docs.rs/num-traits", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "number_prefix", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", - "license": "MIT", - "license_file": null, - "description": "Library for numeric prefixes (kilo, giga, kibi).", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "number_prefix", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/number_prefix-0.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "conversions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/number_prefix-0.4.0/examples/conversions.rs", - "edition": "2015", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/number_prefix-0.4.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "publish": null, - "authors": [ - "Benjamin Sago " - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "mathematics", - "numerics" - ], - "readme": "README.md", - "repository": "https://github.com/ogham/rust-number-prefix", - "homepage": null, - "documentation": "https://docs.rs/number_prefix", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "once_cell", - "version": "1.20.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Single assignment cells and lazy values.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "once_cell", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench_acquire", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/bench_acquire.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lazy_static", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/lazy_static.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "reentrant_init_deadlocks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/reentrant_init_deadlocks.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "regex", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/regex.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test_synchronization", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/examples/test_synchronization.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "it", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/tests/it/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "critical-section" - ], - "critical-section": [ - "dep:critical-section", - "portable-atomic" - ], - "default": [ - "std" - ], - "parking_lot": [ - "dep:parking_lot_core" - ], - "portable-atomic": [ - "dep:portable-atomic" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "keywords": [ - "lazy", - "static" - ], - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "homepage": null, - "documentation": "https://docs.rs/once_cell", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "oorandom", - "version": "11.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", - "license": "MIT", - "license_file": null, - "description": "A tiny, robust PRNG implementation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "random-fast-rng", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "randomize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "oorandom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/oorandom-11.1.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/oorandom-11.1.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Simon Heath " - ], - "categories": [ - "algorithms", - "embedded", - "no-std" - ], - "keywords": [ - "rng", - "prng", - "random", - "pcg" - ], - "readme": "README.md", - "repository": "https://sr.ht/~icefox/oorandom/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "option-ext", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", - "license": "MPL-2.0", - "license_file": null, - "description": "Extends `Option` with additional operations", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "option_ext", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/option-ext-0.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/option-ext-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Simon Ochsenreither " - ], - "categories": [ - "rust-patterns", - "algorithms" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/soc/option-ext.git", - "homepage": "https://github.com/soc/option-ext", - "documentation": "https://docs.rs/option-ext/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ordermap", - "version": "0.5.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A hash table with consistent order and fast iteration.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fxhash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ordermap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "equivalent_trait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/equivalent_trait.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_full_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/macros_full_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quick", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/quick.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "faststring", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/benches/faststring.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary", - "indexmap/arbitrary" - ], - "borsh": [ - "dep:borsh", - "indexmap/borsh" - ], - "default": [ - "std" - ], - "quickcheck": [ - "dep:quickcheck", - "indexmap/quickcheck" - ], - "rayon": [ - "dep:rayon", - "indexmap/rayon" - ], - "serde": [ - "dep:serde", - "indexmap/serde" - ], - "std": [ - "indexmap/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ordermap-0.5.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde", - "borsh", - "rayon" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "allow-branch": [ - "master" - ], - "sign-tag": true, - "tag-name": "{{version}}" - } - }, - "publish": null, - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "hashmap", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/indexmap-rs/ordermap", - "homepage": null, - "documentation": "https://docs.rs/ordermap/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "os_str_bytes", - "version": "7.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Lossless functionality for platform-native strings\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fastrand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "os_str_bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/os_str_bytes-7.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "checked_conversions": [ - "conversions" - ], - "conversions": [], - "default": [ - "memchr", - "raw_os_str" - ], - "memchr": [ - "dep:memchr" - ], - "raw_os_str": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/os_str_bytes-7.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "os_str_bytes_docs_rs" - ], - "rustdoc-args": [ - "--cfg", - "os_str_bytes_docs_rs" - ] - } - } - }, - "publish": null, - "authors": [ - "dylni" - ], - "categories": [ - "command-line-interface", - "development-tools::ffi", - "encoding", - "os", - "rust-patterns" - ], - "keywords": [ - "bytes", - "osstr", - "osstring", - "path", - "windows" - ], - "readme": "README.md", - "repository": "https://github.com/dylni/os_str_bytes", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74.0" - }, - { - "name": "overload", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", - "license": "MIT", - "license_file": null, - "description": "Provides a macro to simplify operator overloading.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "overload", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "assignment", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/tests/assignment.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "binary", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/tests/binary.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unary", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/tests/unary.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/overload-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Daniel Salvadori " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "operator", - "overloading", - "macro", - "op" - ], - "readme": "README.md", - "repository": "https://github.com/danaugrs/overload", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "parking_lot", - "version": "0.12.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parking_lot", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_392", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/tests/issue_392.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_203", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/tests/issue_203.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "arc_lock": [ - "lock_api/arc_lock" - ], - "deadlock_detection": [ - "parking_lot_core/deadlock_detection" - ], - "default": [], - "hardware-lock-elision": [], - "nightly": [ - "parking_lot_core/nightly", - "lock_api/nightly" - ], - "owning_ref": [ - "lock_api/owning_ref" - ], - "send_guard": [], - "serde": [ - "lock_api/serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arc_lock", - "serde", - "deadlock_detection" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "arc_lock", - "serde", - "deadlock_detection" - ] - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "mutex", - "condvar", - "rwlock", - "once", - "thread" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "parking_lot_core", - "version": "0.9.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An advanced API for creating custom synchronization primitives.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "backtrace", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.60", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "petgraph", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thread-id", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "redox_syscall", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"redox\")", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - }, - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "parking_lot_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.9/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.9/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "backtrace": [ - "dep:backtrace" - ], - "deadlock_detection": [ - "petgraph", - "thread-id", - "backtrace" - ], - "nightly": [], - "petgraph": [ - "dep:petgraph" - ], - "thread-id": [ - "dep:thread-id" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "mutex", - "condvar", - "rwlock", - "once", - "thread" - ], - "readme": null, - "repository": "https://github.com/Amanieu/parking_lot", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.49.0" - }, - { - "name": "paste", - "version": "1.0.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macros for all your token pasting needs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "paste-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "paste", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_item.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_attr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_doc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_doc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/tests/test_expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/paste-1.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "macros" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/paste", - "homepage": null, - "documentation": "https://docs.rs/paste", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "path-absolutize", - "version": "3.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "license": "MIT", - "license_file": null, - "description": "A library for extending `Path` and `PathBuf` in order to get an absolute path and remove the containing dots.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "path-dedot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slash-formatter", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "path_absolutize", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-absolutize-3.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-absolutize-3.1.1/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "lazy_static_cache": [ - "path-dedot/lazy_static_cache" - ], - "once_cell_cache": [ - "path-dedot/once_cell_cache" - ], - "unsafe_cache": [ - "path-dedot/unsafe_cache" - ], - "use_unix_paths_on_wasm": [ - "path-dedot/use_unix_paths_on_wasm" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-absolutize-3.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Magic Len " - ], - "categories": [ - "parser-implementations", - "filesystem" - ], - "keywords": [ - "path", - "dot", - "dedot", - "absolute", - "canonical" - ], - "readme": "README.md", - "repository": "https://github.com/magiclen/path-absolutize", - "homepage": "https://magiclen.org/path-absolutize", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "path-dedot", - "version": "3.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1", - "license": "MIT", - "license_file": null, - "description": "A library for extending `Path` and `PathBuf` in order to parse the path which contains dots.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "path_dedot", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-dedot-3.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-dedot-3.1.1/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "lazy_static": [ - "dep:lazy_static" - ], - "lazy_static_cache": [ - "lazy_static" - ], - "once_cell_cache": [], - "unsafe_cache": [], - "use_unix_paths_on_wasm": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-dedot-3.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Magic Len " - ], - "categories": [ - "parser-implementations", - "filesystem" - ], - "keywords": [ - "path", - "dot", - "dedot", - "absolute", - "canonical" - ], - "readme": "README.md", - "repository": "https://github.com/magiclen/path-dedot", - "homepage": "https://magiclen.org/path-dedot", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "path-slash", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "license": "MIT", - "license_file": null, - "description": "Conversion to/from a file path from/to slash path", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "path_slash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/tests/lib.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unix", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/tests/unix.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "windows", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/tests/windows.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/path-slash-0.2.1/Cargo.toml", - "metadata": { - "release": { - "dev-version": false - } - }, - "publish": null, - "authors": [ - "rhysd " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "path" - ], - "readme": "README.md", - "repository": "https://github.com/rhysd/path-slash", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.38" - }, - { - "name": "pathdiff", - "version": "0.2.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Library for diffing paths to obtain relative paths", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "camino", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pathdiff", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pathdiff-0.2.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "camino": [ - "dep:camino" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pathdiff-0.2.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "path", - "relative" - ], - "readme": null, - "repository": "https://github.com/Manishearth/pathdiff", - "homepage": null, - "documentation": "https://docs.rs/pathdiff/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "peg", - "version": "0.8.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", - "license": "MIT", - "license_file": null, - "description": "A simple Parsing Expression Grammar (PEG) parser generator.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "peg-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "peg-runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version_check", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "peg", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/tests/trybuild.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "expr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/benches/expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/benches/json.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [ - "peg-runtime/std" - ], - "trace": [ - "peg-macros/trace" - ], - "unstable": [ - "peg-runtime/unstable" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-0.8.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kevin Mehall " - ], - "categories": [ - "parsing" - ], - "keywords": [ - "peg", - "parser", - "parsing", - "grammar" - ], - "readme": "README.md", - "repository": "https://github.com/kevinmehall/rust-peg", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.68.0" - }, - { - "name": "peg-macros", - "version": "0.8.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", - "license": "MIT", - "license_file": null, - "description": "Procedural macros for rust-peg. To use rust-peg, see the `peg` crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "peg-runtime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "peg_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-macros-0.8.4/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "rust-peg", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-macros-0.8.4/bin.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "trace": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-macros-0.8.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kevin Mehall " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/kevinmehall/rust-peg", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "peg-runtime", - "version": "0.8.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", - "license": "MIT", - "license_file": null, - "description": "Runtime support for rust-peg grammars. To use rust-peg, see the `peg` crate.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "peg_runtime", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-runtime-0.8.3/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "std": [], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/peg-runtime-0.8.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Kevin Mehall " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/kevinmehall/rust-peg", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pep440_rs", - "version": "0.7.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "license": "Apache-2.0 OR BSD-2-Clause", - "license_file": null, - "description": "A library for python version numbers and specifiers, implementing PEP 440", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rkyv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.210", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unscanny", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version-ranges", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "rlib", - "cdylib" - ], - "crate_types": [ - "rlib", - "cdylib" - ], - "name": "pep440_rs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep440_rs-0.7.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "rkyv": [ - "dep:rkyv" - ], - "tracing": [ - "dep:tracing" - ], - "version-ranges": [ - "dep:version-ranges" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep440_rs-0.7.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "Readme.md", - "repository": "https://github.com/konstin/pep440-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "pep508_rs", - "version": "0.9.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", - "license": "Apache-2.0 OR BSD-2-Clause", - "license_file": null, - "description": "A library for python dependency specifiers, better known as PEP 508", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "boxcar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pep440_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "version-ranges" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.198", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rc", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "urlencoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version-ranges", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.41.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "testing_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "cdylib", - "rlib" - ], - "crate_types": [ - "cdylib", - "rlib" - ], - "name": "pep508_rs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep508_rs-0.9.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "non-pep508-extensions": [], - "schemars": [ - "dep:schemars" - ], - "tracing": [ - "dep:tracing", - "pep440_rs/tracing" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pep508_rs-0.9.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "Readme.md", - "repository": "https://github.com/konstin/pep508_rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "percent-encoding", - "version": "2.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Percent encoding and decoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "percent_encoding", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "no_std" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51" - }, - { - "name": "pest", - "version": "2.7.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The Elegant Parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.85", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.37", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-trie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "html_reports" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parens", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/examples/parens.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "calculator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/tests/calculator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/tests/json.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "stack", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/benches/stack.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "const_prec_climber": [], - "default": [ - "std", - "memchr" - ], - "memchr": [ - "dep:memchr" - ], - "pretty-print": [ - "dep:serde", - "dep:serde_json" - ], - "std": [ - "ucd-trie/std", - "dep:thiserror" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest-2.7.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dragoș Tiselice " - ], - "categories": [ - "parsing" - ], - "keywords": [ - "pest", - "parser", - "peg", - "grammar" - ], - "readme": "_README.md", - "repository": "https://github.com/pest-parser/pest", - "homepage": "https://pest.rs/", - "documentation": "https://docs.rs/pest", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "pest_derive", - "version": "2.7.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "pest's derive macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "pest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pest_generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "pest_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "calc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/examples/calc.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "help-menu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/examples/help-menu.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "grammar", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/grammar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "grammar_inline", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/grammar_inline.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "implicit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/implicit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lists", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/lists.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "oneormore", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/oneormore.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "opt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/opt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reporting", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/tests/reporting.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "grammar-extras": [ - "pest_generator/grammar-extras" - ], - "not-bootstrap-in-src": [ - "pest_generator/not-bootstrap-in-src" - ], - "std": [ - "pest/std", - "pest_generator/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_derive-2.7.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dragoș Tiselice " - ], - "categories": [ - "parsing" - ], - "keywords": [ - "pest", - "parser", - "peg", - "grammar" - ], - "readme": "_README.md", - "repository": "https://github.com/pest-parser/pest", - "homepage": "https://pest.rs/", - "documentation": "https://docs.rs/pest", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "pest_generator", - "version": "2.7.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "pest code generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "pest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pest_meta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pest_generator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_generator-2.7.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "export-internal": [], - "grammar-extras": [ - "pest_meta/grammar-extras" - ], - "not-bootstrap-in-src": [ - "pest_meta/not-bootstrap-in-src" - ], - "std": [ - "pest/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_generator-2.7.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dragoș Tiselice " - ], - "categories": [ - "parsing" - ], - "keywords": [ - "pest", - "generator" - ], - "readme": "_README.md", - "repository": "https://github.com/pest-parser/pest", - "homepage": "https://pest.rs/", - "documentation": "https://docs.rs/pest", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "pest_meta", - "version": "2.7.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "pest meta language parser and validator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cargo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.72.2", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pest_meta", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_meta-2.7.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "grammar-extras": [], - "not-bootstrap-in-src": [ - "dep:cargo" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pest_meta-2.7.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Dragoș Tiselice " - ], - "categories": [ - "parsing" - ], - "keywords": [ - "pest", - "parser", - "meta", - "optimizer" - ], - "readme": "_README.md", - "repository": "https://github.com/pest-parser/pest", - "homepage": "https://pest.rs/", - "documentation": "https://docs.rs/pest", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "phf", - "version": "0.11.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "license": "MIT", - "license_file": null, - "description": "Runtime support for perfect hash function data structures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "phf_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "phf_shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "phf", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf-0.11.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "macros": [ - "phf_macros" - ], - "phf_macros": [ - "dep:phf_macros" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "phf_shared/std" - ], - "uncased": [ - "phf_shared/uncased" - ], - "unicase": [ - "phf_macros?/unicase", - "phf_shared/unicase" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf-0.11.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "macros" - ] - } - }, - "playground": { - "all-features": false, - "default-features": true, - "features": [ - "macros" - ] - } - }, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-phf/rust-phf", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "phf_codegen", - "version": "0.11.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", - "license": "MIT", - "license_file": null, - "description": "Codegen library for PHF types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "phf_generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "phf_shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "phf_codegen", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_codegen-0.11.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_codegen-0.11.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "data-structures" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-phf/rust-phf", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "phf_generator", - "version": "0.11.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", - "license": "MIT", - "license_file": null, - "description": "PHF generation logic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "phf_shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "phf_generator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "gen_hash_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/src/bin/gen_hash_test.rs", - "edition": "2021", - "required-features": [ - "criterion" - ], - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/benches/benches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "criterion": [ - "dep:criterion" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_generator-0.11.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "data-structures" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-phf/rust-phf", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "phf_shared", - "version": "0.11.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", - "license": "MIT", - "license_file": null, - "description": "Support code shared by PHF libraries", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "siphasher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uncased", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicase", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "phf_shared", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_shared-0.11.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [], - "uncased": [ - "dep:uncased" - ], - "unicase": [ - "dep:unicase" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/phf_shared-0.11.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Fackler " - ], - "categories": [ - "data-structures" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-phf/rust-phf", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "pin-project-lite", - "version": "0.2.14", - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A lightweight version of pin-project written with declarative macros.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pin_project_lite", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drop_order", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/drop_order.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expandtest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/expandtest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "proper_unpin", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/proper_unpin.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.14/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [] - }, - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "no-std", - "no-std::no-alloc", - "rust-patterns" - ], - "keywords": [ - "pin", - "macros" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/pin-project-lite", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.37" - }, - { - "name": "pkg-config", - "version": "0.3.30", - "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pkg_config", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.30/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.30/tests/test.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.30/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [ - "build-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/pkg-config-rs", - "homepage": null, - "documentation": "https://docs.rs/pkg-config", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.30" - }, - { - "name": "portable-atomic", - "version": "1.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "critical-section", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "build-context", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fastrand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sptr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "portable_atomic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.6.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "critical-section": [ - "dep:critical-section" - ], - "default": [ - "fallback" - ], - "disable-fiq": [], - "fallback": [], - "float": [], - "force-amo": [], - "require-cas": [], - "s-mode": [], - "serde": [ - "dep:serde" - ], - "std": [], - "unsafe-assume-single-core": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.6.0/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "serde::*" - ] - }, - "docs": { - "rs": { - "features": [ - "float", - "std", - "serde", - "critical-section" - ], - "rustdoc-args": [ - "--cfg", - "portable_atomic_doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "concurrency", - "embedded", - "hardware-support", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "atomic" - ], - "readme": "README.md", - "repository": "https://github.com/taiki-e/portable-atomic", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.34" - }, - { - "name": "ppv-lite86", - "version": "0.2.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Implementation of the crypto-simd API for x86", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ppv_lite86", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "no_simd": [], - "simd": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.17/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The CryptoCorrosion Contributors" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "simd", - "x86" - ], - "readme": null, - "repository": "https://github.com/cryptocorrosion/cryptocorrosion", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "predicates", - "version": "3.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of boolean-valued predicate functions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "difflib", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "float-cmp", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "normalize-line-endings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "predicates-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "predicates-tree", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "predicates", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-3.1.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "case_tree", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-3.1.2/examples/case_tree.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "color": [], - "default": [ - "diff", - "regex", - "float-cmp", - "normalize-line-endings", - "color" - ], - "diff": [ - "dep:difflib" - ], - "float-cmp": [ - "dep:float-cmp" - ], - "normalize-line-endings": [ - "dep:normalize-line-endings" - ], - "regex": [ - "dep:regex" - ], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-3.1.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "predicates = \"{{version}}\"", - "search": "predicates = \".*\"" - }, - { - "exactly": 1, - "file": "README.md", - "replace": "predicates = \"{{version}}\"", - "search": "predicates = \".*\"" - }, - { - "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/predicates-rs/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Nick Stevens " - ], - "categories": [ - "data-structures", - "rust-patterns" - ], - "keywords": [ - "predicate", - "boolean", - "combinatorial", - "match", - "logic" - ], - "readme": "README.md", - "repository": "https://github.com/assert-rs/predicates-rs", - "homepage": "https://github.com/assert-rs/predicates-rs", - "documentation": "https://docs.rs/predicates", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "predicates-core", - "version": "1.0.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An API for boolean-valued predicate functions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "predicates_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-core-1.0.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-core-1.0.8/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/assert-rs/predicates-rs/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Nick Stevens " - ], - "categories": [ - "data-structures", - "rust-patterns" - ], - "keywords": [ - "predicate", - "boolean", - "combinatorial", - "match", - "logic" - ], - "readme": "README.md", - "repository": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", - "homepage": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", - "documentation": "https://docs.rs/predicates-core", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "predicates-tree", - "version": "1.0.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Render boolean-valued predicate functions results as a tree.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "predicates-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termtree", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "predicates", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "color" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "predicates_tree", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-tree-1.0.11/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "failures", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-tree-1.0.11/examples/failures.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/predicates-tree-1.0.11/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/assert-rs/predicates-rs/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Nick Stevens " - ], - "categories": [ - "data-structures", - "rust-patterns" - ], - "keywords": [ - "predicate", - "boolean", - "combinatorial", - "match", - "logic" - ], - "readme": "README.md", - "repository": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", - "homepage": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", - "documentation": "https://docs.rs/predicates-tree", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.74" - }, - { - "name": "pretty_assertions", - "version": "1.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements, adding colorful diffs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "diff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yansi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pretty_assertions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "pretty_assertion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/examples/pretty_assertion.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "standard_assertion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/examples/standard_assertion.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pretty_assertions-1.4.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Colin Kiegel ", - "Florent Fayolle ", - "Tom Milligan " - ], - "categories": [ - "development-tools" - ], - "keywords": [ - "assert", - "diff", - "pretty", - "color" - ], - "readme": "README.md", - "repository": "https://github.com/rust-pretty-assertions/rust-pretty-assertions", - "homepage": null, - "documentation": "https://docs.rs/pretty_assertions", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "proc-macro2", - "version": "1.0.89", - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "proc_macro2", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comments", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "features", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/features.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "marker", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/marker.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_fmt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/test_fmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/tests/test_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.89/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "homepage": null, - "documentation": "https://docs.rs/proc-macro2", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "pyproject-toml", - "version": "0.13.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", - "license": "MIT", - "license_file": null, - "description": "pyproject.toml parser in Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "pep440_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pep508_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.214", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.65", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parse" - ], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.41.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "pyproject_toml", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyproject-toml-0.13.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "glob": [ - "dep:glob" - ], - "pep639-glob": [ - "glob" - ], - "tracing": [ - "pep440_rs/tracing", - "pep508_rs/tracing" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyproject-toml-0.13.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "pyproject", - "pep517", - "pep518", - "pep621", - "pep639" - ], - "readme": "README.md", - "repository": "https://github.com/PyO3/pyproject-toml-rs.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.64" - }, - { - "name": "quick-junit", - "version": "0.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Data model and serializer for JUnit/XUnit XML", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.38", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "newtype-uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quick-xml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.36.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strip-ansi-escapes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.63", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "goldenfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "owo-colors", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-strategy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quick_junit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-junit-0.5.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fixture_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-junit-0.5.0/tests/fixture_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-junit-0.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "encoding", - "development-tools" - ], - "keywords": [ - "junit", - "xunit", - "xml", - "serializer", - "flaky-tests" - ], - "readme": "README.md", - "repository": "https://github.com/nextest-rs/quick-junit", - "homepage": null, - "documentation": "https://docs.rs/quick-junit", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "quick-xml", - "version": "0.36.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", - "license": "MIT", - "license_file": null, - "description": "High performance xml reader and writer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "document-features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "encoding_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=1.0.139", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "io-util" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde-value", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.21", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros", - "rt" - ], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quick_xml", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "flattened_enum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/examples/flattened_enum.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "read_nodes_serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/examples/read_nodes_serde.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async-tokio", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/async-tokio.rs", - "edition": "2021", - "required-features": [ - "async-tokio" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encodings", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/encodings.rs", - "edition": "2021", - "required-features": [ - "encoding" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde-de", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-de.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde-de-enum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-de-enum.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde-de-seq", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-de-seq.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde-issues", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-issues.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde-migrated", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-migrated.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde-se", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde-se.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde_roundtrip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/tests/serde_roundtrip.rs", - "edition": "2021", - "required-features": [ - "serialize" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "macrobenches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/benches/macrobenches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "microbenches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/benches/microbenches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "async-tokio": [ - "tokio" - ], - "default": [], - "document-features": [ - "dep:document-features" - ], - "encoding": [ - "encoding_rs" - ], - "encoding_rs": [ - "dep:encoding_rs" - ], - "escape-html": [], - "overlapped-lists": [], - "serde": [ - "dep:serde" - ], - "serde-types": [ - "serde/derive" - ], - "serialize": [ - "serde" - ], - "tokio": [ - "dep:tokio" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quick-xml-0.36.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "asynchronous", - "encoding", - "parsing", - "parser-implementations" - ], - "keywords": [ - "xml", - "serde", - "parser", - "writer", - "html" - ], - "readme": "README.md", - "repository": "https://github.com/tafia/quick-xml", - "homepage": null, - "documentation": "https://docs.rs/quick-xml", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "quote", - "version": "1.0.37", - "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Quasi-quoting macro quote!(...)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.66", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "quote", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "homepage": null, - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "rand", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Random number generators and other randomness functionality.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "packed_simd_2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": null, - "rename": "packed_simd", - "optional": true, - "uses_default_features": true, - "features": [ - "into_bits" - ], - "target": null, - "registry": null - }, - { - "name": "rand_chacha", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.103", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [ - "rand_core/alloc" - ], - "default": [ - "std", - "std_rng" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "libc": [ - "dep:libc" - ], - "log": [ - "dep:log" - ], - "min_const_gen": [], - "nightly": [], - "packed_simd": [ - "dep:packed_simd" - ], - "rand_chacha": [ - "dep:rand_chacha" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde", - "rand_core/serde1" - ], - "simd_support": [ - "packed_simd" - ], - "small_rng": [], - "std": [ - "rand_core/std", - "rand_chacha/std", - "alloc", - "getrandom", - "libc" - ], - "std_rng": [ - "rand_chacha" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand-0.8.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "features": [ - "small_rng", - "serde1" - ] - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_chacha", - "version": "0.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "ChaCha random number generator\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ppv-lite86", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "simd" - ], - "target": null, - "registry": null - }, - { - "name": "rand_core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_chacha", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd": [], - "std": [ - "ppv-lite86/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers", - "The CryptoCorrosion Contributors" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng", - "chacha" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_chacha", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rand_core", - "version": "0.6.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core random number generator traits and tools for implementation.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rand_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "getrandom": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "std": [ - "alloc", - "getrandom", - "getrandom/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "all-features": true - } - }, - "publish": null, - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "keywords": [ - "random", - "rng" - ], - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "homepage": "https://rust-random.github.io/book", - "documentation": "https://docs.rs/rand_core", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rayon", - "version": "1.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Simple work-stealing parallelism for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm_sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rayon", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chars", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/chars.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "clones", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/clones.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "collect", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/collect.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cross-pool", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/cross-pool.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "drain_vec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/drain_vec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "intersperse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/intersperse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue671", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/issue671.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue671-unzip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/issue671-unzip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "iter_panic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/iter_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "named-threads", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/named-threads.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "octillion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/octillion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "par_bridge_recursion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/par_bridge_recursion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "producer_split_at", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/producer_split_at.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "sort-panic-safe", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/sort-panic-safe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "str", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/tests/str.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "web_spin_lock": [ - "dep:wasm_sync", - "rayon-core/web_spin_lock" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-1.10.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "homepage": null, - "documentation": "https://docs.rs/rayon/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rayon-core", - "version": "1.12.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Core APIs for Rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "crossbeam-deque", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm_sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scoped-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(unix)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rayon_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "double_init_fail", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/double_init_fail.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "init_zero_threads", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/init_zero_threads.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scope_join", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/scope_join.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scoped_threadpool", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/scoped_threadpool.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "simple_panic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/simple_panic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stack_overflow_crash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/stack_overflow_crash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "use_current_thread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/tests/use_current_thread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "web_spin_lock": [ - "dep:wasm_sync" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rayon-core-1.12.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "homepage": null, - "documentation": "https://docs.rs/rayon/", - "edition": "2021", - "links": "rayon-core", - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "red_knot", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clock" - ], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "wrap_help" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "countme", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "enable" - ], - "target": null, - "registry": null - }, - { - "name": "crossbeam", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ctrlc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.4.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "red_knot_server", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_server" - }, - { - "name": "red_knot_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "zstd" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_workspace" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "os", - "cache" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "salsa", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "release_max_level_debug" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-flame", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt", - "env-filter", - "fmt" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-tree", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.23", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "testing" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "red_knot", - "src_path": "/home/micha/astral/ruff/crates/red_knot/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "file_watching", - "src_path": "/home/micha/astral/ruff/crates/red_knot/tests/file_watching.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "red_knot_python_semantic", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "camino", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compact_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "countme", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "raw-entry", - "inline-more" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ordermap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_index", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_index" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_literal", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_literal" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_stdlib", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_stdlib" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dir-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "red_knot_test", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_test" - }, - { - "name": "red_knot_vendored", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_vendored" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "os", - "testing" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "red_knot_python_semantic", - "src_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mdtest", - "src_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/tests/mdtest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot_python_semantic/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "red_knot_server", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jod-thread", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lsp-server", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lsp-types", - "source": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "proposed" - ], - "target": null, - "registry": null - }, - { - "name": "red_knot_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_workspace" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shellexpand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt" - ], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.153", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "red_knot_server", - "src_path": "/home/micha/astral/ruff/crates/red_knot_server/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot_server/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "red_knot_test", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "red_knot_vendored", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_vendored" - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_index", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_index" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "red_knot_test", - "src_path": "/home/micha/astral/ruff/crates/red_knot_test/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot_test/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "red_knot_vendored", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "path-slash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.6", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "zstd", - "deflate" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "red_knot_vendored", - "src_path": "/home/micha/astral/ruff/crates/red_knot_vendored/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/astral/ruff/crates/red_knot_vendored/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "deflate": [ - "zip/deflate" - ], - "zstd": [ - "zip/zstd" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot_vendored/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "red_knot_wasm", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", - "license": "MIT", - "license_file": null, - "description": "WebAssembly bindings for Red Knot", - "source": null, - "dependencies": [ - { - "name": "console_error_panic_hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "console_log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "red_knot_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "deflate" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_workspace" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.92", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "cdylib", - "rlib" - ], - "crate_types": [ - "cdylib", - "rlib" - ], - "name": "red_knot_wasm", - "src_path": "/home/micha/astral/ruff/crates/red_knot_wasm/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "api", - "src_path": "/home/micha/astral/ruff/crates/red_knot_wasm/tests/api.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "console_error_panic_hook": [ - "dep:console_error_panic_hook" - ], - "default": [ - "console_error_panic_hook" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot_wasm/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "red_knot_workspace", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "notify", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pep440_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "red_knot_vendored", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_vendored" - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "os", - "cache", - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "redactions", - "ron" - ], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "testing" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "red_knot_workspace", - "src_path": "/home/micha/astral/ruff/crates/red_knot_workspace/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "check", - "src_path": "/home/micha/astral/ruff/crates/red_knot_workspace/tests/check.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "zstd" - ], - "deflate": [ - "red_knot_vendored/deflate" - ], - "zstd": [ - "red_knot_vendored/zstd" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/red_knot_workspace/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "redox_syscall", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", - "license": "MIT", - "license_file": null, - "description": "A Rust library to access raw Redox system calls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syscall", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "bitflags/rustc-dep-of-std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.4.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "homepage": null, - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "redox_syscall", - "version": "0.5.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3", - "license": "MIT", - "license_file": null, - "description": "A Rust library to access raw Redox system calls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syscall", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.5.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "bitflags/rustc-dep-of-std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_syscall-0.5.3/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "homepage": null, - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "redox_users", - "version": "0.4.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", - "license": "MIT", - "license_file": null, - "description": "A Rust library to access Redox users and groups functionality", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "libredox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "call" - ], - "target": null, - "registry": null - }, - { - "name": "rust-argon2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "zeroize_derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "redox_users", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_users-0.4.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "auth": [ - "rust-argon2", - "zeroize" - ], - "default": [ - "auth" - ], - "rust-argon2": [ - "dep:rust-argon2" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/redox_users-0.4.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jose Narvaez ", - "Wesley Hershberger " - ], - "categories": [], - "keywords": [ - "redox", - "auth" - ], - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/users", - "homepage": null, - "documentation": "https://docs.rs/redox_users", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "regex", - "version": "1.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-automata", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "syntax", - "meta", - "nfa-pikevm" - ], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "atty", - "humantime", - "termcolor" - ], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.11.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.11.1/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std", - "perf", - "unicode", - "regex-syntax/default" - ], - "logging": [ - "aho-corasick?/logging", - "memchr?/logging", - "regex-automata/logging" - ], - "pattern": [], - "perf": [ - "perf-cache", - "perf-dfa", - "perf-onepass", - "perf-backtrack", - "perf-inline", - "perf-literal" - ], - "perf-backtrack": [ - "regex-automata/nfa-backtrack" - ], - "perf-cache": [], - "perf-dfa": [ - "regex-automata/hybrid" - ], - "perf-dfa-full": [ - "regex-automata/dfa-build", - "regex-automata/dfa-search" - ], - "perf-inline": [ - "regex-automata/perf-inline" - ], - "perf-literal": [ - "dep:aho-corasick", - "dep:memchr", - "regex-automata/perf-literal" - ], - "perf-onepass": [ - "regex-automata/dfa-onepass" - ], - "std": [ - "aho-corasick?/std", - "memchr?/std", - "regex-automata/std", - "regex-syntax/std" - ], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "regex-automata/unicode", - "regex-syntax/unicode" - ], - "unicode-age": [ - "regex-automata/unicode-age", - "regex-syntax/unicode-age" - ], - "unicode-bool": [ - "regex-automata/unicode-bool", - "regex-syntax/unicode-bool" - ], - "unicode-case": [ - "regex-automata/unicode-case", - "regex-syntax/unicode-case" - ], - "unicode-gencat": [ - "regex-automata/unicode-gencat", - "regex-syntax/unicode-gencat" - ], - "unicode-perl": [ - "regex-automata/unicode-perl", - "regex-automata/unicode-word-boundary", - "regex-syntax/unicode-perl" - ], - "unicode-script": [ - "regex-automata/unicode-script", - "regex-syntax/unicode-script" - ], - "unicode-segment": [ - "regex-automata/unicode-segment", - "regex-syntax/unicode-segment" - ], - "unstable": [ - "pattern" - ], - "use_std": [ - "std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-1.11.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "homepage": "https://github.com/rust-lang/regex", - "documentation": "https://docs.rs/regex", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "regex-automata", - "version": "0.1.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10", - "license": "Unlicense/MIT", - "license_file": null, - "description": "Automata construction and matching using regular expressions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "fst", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.82", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.82", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_automata", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10/tests/tests.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "fst": [ - "dep:fst" - ], - "regex-syntax": [ - "dep:regex-syntax" - ], - "std": [ - "regex-syntax" - ], - "transducer": [ - "std", - "fst" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/regex-automata", - "homepage": "https://github.com/BurntSushi/regex-automata", - "documentation": "https://docs.rs/regex-automata", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "regex-automata", - "version": "0.4.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Automata construction and matching using regular expressions.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-syntax", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "atty", - "humantime", - "termcolor" - ], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_automata", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.8/tests/lib.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std", - "syntax", - "perf", - "unicode", - "meta", - "nfa", - "dfa", - "hybrid" - ], - "dfa": [ - "dfa-build", - "dfa-search", - "dfa-onepass" - ], - "dfa-build": [ - "nfa-thompson", - "dfa-search" - ], - "dfa-onepass": [ - "nfa-thompson" - ], - "dfa-search": [], - "hybrid": [ - "alloc", - "nfa-thompson" - ], - "internal-instrument": [ - "internal-instrument-pikevm" - ], - "internal-instrument-pikevm": [ - "logging", - "std" - ], - "logging": [ - "dep:log", - "aho-corasick?/logging", - "memchr?/logging" - ], - "meta": [ - "syntax", - "nfa-pikevm" - ], - "nfa": [ - "nfa-thompson", - "nfa-pikevm", - "nfa-backtrack" - ], - "nfa-backtrack": [ - "nfa-thompson" - ], - "nfa-pikevm": [ - "nfa-thompson" - ], - "nfa-thompson": [ - "alloc" - ], - "perf": [ - "perf-inline", - "perf-literal" - ], - "perf-inline": [], - "perf-literal": [ - "perf-literal-substring", - "perf-literal-multisubstring" - ], - "perf-literal-multisubstring": [ - "std", - "dep:aho-corasick" - ], - "perf-literal-substring": [ - "aho-corasick?/perf-literal", - "dep:memchr" - ], - "std": [ - "regex-syntax?/std", - "memchr?/std", - "aho-corasick?/std", - "alloc" - ], - "syntax": [ - "dep:regex-syntax", - "alloc" - ], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary", - "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" - ], - "unicode-word-boundary": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata", - "homepage": null, - "documentation": "https://docs.rs/regex-automata", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "regex-syntax", - "version": "0.6.29", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A regular expression parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_syntax", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "unicode" - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "homepage": "https://github.com/rust-lang/regex", - "documentation": "https://docs.rs/regex-syntax", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "regex-syntax", - "version": "0.8.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A regular expression parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "regex_syntax", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The Rust Project Developers", - "Andrew Gallant " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax", - "homepage": null, - "documentation": "https://docs.rs/regex-syntax", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "ring", - "version": "0.17.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", - "license": null, - "license_file": "LICENSE", - "description": "Safe, fast, small crypto using Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "untrusted", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.83", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.148", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Threading" - ], - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.37", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "spin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "once" - ], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.148", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(any(unix, windows, target_os = \"wasi\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ring", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aead_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/aead_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "agreement_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/agreement_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constant_time_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/constant_time_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "digest_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/digest_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ecdsa_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/ecdsa_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ed25519_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/ed25519_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "error_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/error_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hkdf_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/hkdf_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hmac_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/hmac_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "pbkdf2_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/pbkdf2_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quic_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/quic_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rand_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/rand_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rsa_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/rsa_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signature_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/tests/signature_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "alloc", - "dev_urandom_fallback" - ], - "dev_urandom_fallback": [], - "less-safe-getrandom-custom-or-rdrand": [], - "slow_tests": [], - "std": [ - "alloc" - ], - "test_logging": [], - "unstable-testing-arm-no-hw": [], - "unstable-testing-arm-no-neon": [], - "wasm32_unknown_unknown_js": [ - "getrandom/js" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Brian Smith " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "cryptography", - "rand", - "ECC", - "RSA" - ], - "readme": "README.md", - "repository": "https://github.com/briansmith/ring", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": "ring_core_0_17_8", - "default_run": null, - "rust_version": "1.61.0" - }, - { - "name": "ron", - "version": "0.7.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Rusty Object Notation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde-1" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde_derive" - ], - "target": null, - "registry": null - }, - { - "name": "option_set", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ron", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/decode.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode_file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/decode_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "encode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/encode.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "transcode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/examples/transcode.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "117_untagged_tuple_variant", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/117_untagged_tuple_variant.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "123_enum_representation", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/123_enum_representation.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "129_indexmap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/129_indexmap.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "147_empty_sets_serialisation", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/147_empty_sets_serialisation.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "152_bitflags", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/152_bitflags.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "207_adjacently_tagged_enum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/207_adjacently_tagged_enum.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "240_array_pretty", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/240_array_pretty.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "250_variant_newtypes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/250_variant_newtypes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "256_comma_error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/256_comma_error.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "289_enumerate_arrays", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/289_enumerate_arrays.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "301_struct_name_mismatch", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/301_struct_name_mismatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "322_escape_idents", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/322_escape_idents.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "337_value_float_roundtrip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/337_value_float_roundtrip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "359_deserialize_seed", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/359_deserialize_seed.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "367_implicit_some", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/367_implicit_some.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "370_float_parsing", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/370_float_parsing.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "big_struct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/big_struct.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "borrowed_str", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/borrowed_str.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comments", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/comments.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "depth_limit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/depth_limit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "escape", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/escape.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "extensions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/extensions.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "floats", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/floats.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "large_number", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/large_number.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "min_max", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/min_max.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "numbers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/numbers.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "options", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/options.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "preserve_sequence", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/preserve_sequence.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "roundtrip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/roundtrip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_integers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/struct_integers.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "to_string_pretty", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/to_string_pretty.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unicode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/unicode.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "value", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/tests/value.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "indexmap": [ - "dep:indexmap" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ron-0.7.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Christopher Durham ", - "Dzmitry Malyshau ", - "Thomas Schaller " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "parser", - "serde", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/ron-rs/ron", - "homepage": "https://github.com/ron-rs/ron", - "documentation": "https://docs.rs/ron/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ruff", - "version": "0.7.4", - "id": "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "argfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cachedir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clock" - ], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "derive", - "env", - "wrap_help" - ], - "target": null, - "registry": null - }, - { - "name": "clap_complete_command", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clearscreen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globwalk", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "notify", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "path-absolutize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "once_cell_cache" - ], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "os" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_diagnostics", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" - }, - { - "name": "ruff_graph", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde", - "clap" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_graph" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "clap" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" - }, - { - "name": "ruff_server", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_server" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "ruff_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_workspace" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shellexpand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "strum_macros" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "log" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_fs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "no-color" - ], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "filters", - "json" - ], - "target": null, - "registry": null - }, - { - "name": "insta-cmd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "clap", - "test-rules" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tikv-jemallocator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), not(target_os = \"aix\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))", - "registry": null - }, - { - "name": "mimalloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff", - "src_path": "/home/micha/astral/ruff/crates/ruff/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ruff", - "src_path": "/home/micha/astral/ruff/crates/ruff/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "analyze_graph", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/analyze_graph.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "config", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/config.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "format", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/format.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration_test", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/integration_test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lint", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/lint.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "resolve_files", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/resolve_files.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "show_settings", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/show_settings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "version", - "src_path": "/home/micha/astral/ruff/crates/ruff/tests/version.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/astral/ruff/crates/ruff/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "chrono" - ] - } - }, - "publish": null, - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "../../README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": "ruff", - "rust_version": "1.80" - }, - { - "name": "ruff_benchmark", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", - "license": "MIT", - "license_file": null, - "description": "Ruff Micro-benchmarks", - "source": null, - "dependencies": [ - { - "name": "codspeed-criterion-compat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ureq", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.9.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "red_knot_workspace", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_workspace" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_formatter", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "tikv-jemallocator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))", - "registry": null - }, - { - "name": "mimalloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_benchmark", - "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "formatter", - "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/formatter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "lexer", - "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/lexer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "linter", - "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/linter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "parser", - "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/parser.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "red_knot", - "src_path": "/home/micha/astral/ruff/crates/ruff_benchmark/benches/red_knot.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "codspeed": [ - "codspeed-criterion-compat" - ], - "codspeed-criterion-compat": [ - "dep:codspeed-criterion-compat" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_benchmark/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_cache", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "seahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_cache", - "src_path": "/home/micha/astral/ruff/crates/ruff_cache/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cache_key", - "src_path": "/home/micha/astral/ruff/crates/ruff_cache/tests/cache_key.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_cache/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_db", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "camino", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "countme", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dashmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dunce", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "filetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "matchit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "path-slash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-tree", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_db", - "src_path": "/home/micha/astral/ruff/crates/ruff_db/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "cache": [ - "ruff_cache" - ], - "default": [ - "os" - ], - "ignore": [ - "dep:ignore" - ], - "os": [ - "ignore" - ], - "ruff_cache": [ - "dep:ruff_cache" - ], - "serde": [ - "dep:serde", - "camino/serde1" - ], - "testing": [ - "tracing-subscriber", - "tracing-tree" - ], - "tracing-subscriber": [ - "dep:tracing-subscriber" - ], - "tracing-tree": [ - "dep:tracing-tree" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_db/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_dev", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "wrap_help" - ], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "imara-diff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indicatif", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libcst", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff" - }, - { - "name": "ruff_diagnostics", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" - }, - { - "name": "ruff_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_formatter" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "schemars" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_codegen", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" - }, - { - "name": "ruff_python_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "schemars" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_workspace" - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "similar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "inline" - ], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "strum_macros" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "parse" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-indicatif", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt", - "env-filter" - ], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ruff_dev", - "src_path": "/home/micha/astral/ruff/crates/ruff_dev/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "singlethreaded": [] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_dev/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_diagnostics", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_diagnostics", - "src_path": "/home/micha/astral/ruff/crates/ruff_diagnostics/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_diagnostics/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_formatter", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "drop_bomb", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_formatter", - "src_path": "/home/micha/astral/ruff/crates/ruff_formatter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "schemars": [ - "dep:schemars", - "ruff_text_size/schemars" - ], - "serde": [ - "dep:serde", - "ruff_text_size/serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_formatter/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "ruff_cache" - ] - } - }, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_graph", - "version": "0.1.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "red_knot_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/red_knot_python_semantic" - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_db", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "os", - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_db" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "salsa", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "zip", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_graph", - "src_path": "/home/micha/astral/ruff/crates/ruff_graph/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "clap": [ - "dep:clap" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_graph/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "ruff_cache" - ] - } - }, - "publish": null, - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_index", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_index", - "src_path": "/home/micha/astral/ruff/crates/ruff_index/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_index/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_linter", - "version": "0.7.4", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "color", - "color" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clock" - ], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive", - "derive", - "string" - ], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fern", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "imperative", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-wsl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libcst", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "natord", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "path-absolutize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "once_cell_cache", - "use_unix_paths_on_wasm" - ], - "target": null, - "registry": null - }, - { - "name": "pathdiff", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pep440_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pyproject-toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quick-junit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_diagnostics", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde", - "cache" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_codegen", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" - }, - { - "name": "ruff_python_index", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_index" - }, - { - "name": "ruff_python_literal", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_literal" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_semantic" - }, - { - "name": "ruff_python_stdlib", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_stdlib" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "similar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "inline" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "strum_macros" - ], - "target": null, - "registry": null - }, - { - "name": "strum_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "typed-arena", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-normalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode_names2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "no-color" - ], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "filters", - "json", - "redactions" - ], - "target": null, - "registry": null - }, - { - "name": "test-case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_linter", - "src_path": "/home/micha/astral/ruff/crates/ruff_linter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "clap": [ - "dep:clap" - ], - "default": [], - "schemars": [ - "dep:schemars", - "ruff_python_ast/schemars" - ], - "test-rules": [] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_linter/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_macros", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.55", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive", - "parsing", - "extra-traits", - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "ruff_macros", - "src_path": "/home/micha/astral/ruff/crates/ruff_macros/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_macros/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_notebook", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_diagnostics", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_with", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "macros", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "v4", - "fast-rng", - "macro-diagnostics", - "js" - ], - "target": null, - "registry": null - }, - { - "name": "test-case", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_notebook", - "src_path": "/home/micha/astral/ruff/crates/ruff_notebook/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_notebook/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_ast", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "aho-corasick", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compact_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_ast", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "cache": [ - "dep:ruff_cache", - "dep:ruff_macros" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde", - "ruff_text_size/serde", - "dep:ruff_cache", - "compact_str/serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_ast/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "ruff_cache" - ] - } - }, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_ast_integration_tests", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_ast_integration_tests", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "comparable", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/comparable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "identifier", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/identifier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "match_pattern", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/match_pattern.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parenthesize", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/parenthesize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "source_order", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/source_order.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stmt_if", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/stmt_if.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "visitor", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/tests/visitor.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_ast_integration_tests/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_codegen", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_literal", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_literal" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_codegen", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_codegen/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_codegen/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_formatter", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.5.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "countme", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_formatter" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "glob" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_formatter", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_formatter" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "similar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "inline" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_formatter", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "bin" - ], - "crate_types": [ - "bin" - ], - "name": "ruff_python_formatter", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/src/main.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "normalizer", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/tests/normalizer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ruff_python_formatter_fixtures", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/tests/fixtures.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "serde" - ], - "schemars": [ - "dep:schemars", - "ruff_formatter/schemars" - ], - "serde": [ - "dep:serde", - "ruff_formatter/serde", - "ruff_source_file/serde", - "ruff_python_ast/serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_formatter/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "ruff_cache" - ] - } - }, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_index", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_index", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_index/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_index/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_literal", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "license": "MIT", - "license_file": null, - "description": "Common literal handling utilities mostly useful for unparse and repr.", - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "unic-ucd-category", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_literal", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_literal/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_literal/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh ", - "RustPython Team" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_parser", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compact_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-normalization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.23", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode_names2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "color" - ], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "glob" - ], - "target": null, - "registry": null - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_parser", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_parser/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fixtures", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_parser/tests/fixtures.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "generate_inline_tests", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_parser/tests/generate_inline_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_parser/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh ", - "RustPython Team" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_resolver", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", - "license": "MIT", - "license_file": null, - "description": "A Python module resolver for Ruff", - "source": null, - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_resolver", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_resolver/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_resolver/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_semantic", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_index", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_index" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_stdlib", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_stdlib" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_semantic", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_semantic/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_semantic/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "ruff_cache" - ] - } - }, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_stdlib", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_stdlib", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_stdlib/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_stdlib/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_trivia", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_trivia", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_trivia/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_python_trivia_integration_tests", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_python_trivia_integration_tests", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "block_comments", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/tests/block_comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "simple_tokenizer", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/tests/simple_tokenizer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "whitespace", - "src_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/tests/whitespace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_server", - "version": "0.2.2", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jod-thread", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lsp-server", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lsp-types", - "source": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "proposed" - ], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_diagnostics", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_diagnostics" - }, - { - "name": "ruff_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_formatter" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_notebook", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_notebook" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_codegen", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" - }, - { - "name": "ruff_python_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" - }, - { - "name": "ruff_python_index", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_index" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "ruff_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_workspace" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.113", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "shellexpand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thiserror", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.40", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.18", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "env-filter", - "fmt" - ], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.35.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.153", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_vendor = \"apple\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_server", - "src_path": "/home/micha/astral/ruff/crates/ruff_server/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "document", - "src_path": "/home/micha/astral/ruff/crates/ruff_server/tests/document.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "notebook", - "src_path": "/home/micha/astral/ruff/crates/ruff_server/tests/notebook.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_server/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_source_file", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_source_file", - "src_path": "/home/micha/astral/ruff/crates/ruff_source_file/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde", - "ruff_text_size/serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_source_file/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_text_size", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "license": null, - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_text_size", - "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "auto_traits", - "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/auto_traits.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "constructors", - "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/constructors.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "indexing", - "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/indexing.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/astral/ruff/crates/ruff_text_size/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_text_size/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [], - "categories": [], - "keywords": [], - "readme": null, - "repository": null, - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67.1" - }, - { - "name": "ruff_wasm", - "version": "0.7.4", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4", - "license": "MIT", - "license_file": null, - "description": "WebAssembly bindings for Ruff", - "source": null, - "dependencies": [ - { - "name": "console_error_panic_hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "console_log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_formatter" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_codegen", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_codegen" - }, - { - "name": "ruff_python_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" - }, - { - "name": "ruff_python_index", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_index" - }, - { - "name": "ruff_python_parser", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_parser" - }, - { - "name": "ruff_python_trivia", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_trivia" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "ruff_text_size", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_text_size" - }, - { - "name": "ruff_workspace", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_workspace" - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde-wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.92", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "cdylib", - "rlib" - ], - "crate_types": [ - "cdylib", - "rlib" - ], - "name": "ruff_wasm", - "src_path": "/home/micha/astral/ruff/crates/ruff_wasm/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "api", - "src_path": "/home/micha/astral/ruff/crates/ruff_wasm/tests/api.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "console_error_panic_hook": [ - "dep:console_error_panic_hook" - ], - "default": [ - "console_error_panic_hook" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_wasm/Cargo.toml", - "metadata": null, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "ruff_workspace", - "version": "0.0.0", - "id": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "license": "MIT", - "license_file": null, - "description": null, - "source": null, - "dependencies": [ - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "colored", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "globset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ignore", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "matchit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "path-absolutize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "path-slash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pep440_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_cache", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_cache" - }, - { - "name": "ruff_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_formatter" - }, - { - "name": "ruff_graph", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde", - "schemars" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_graph" - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "ruff_macros", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_macros" - }, - { - "name": "ruff_python_ast", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_ast" - }, - { - "name": "ruff_python_formatter", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_formatter" - }, - { - "name": "ruff_python_semantic", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_python_semantic" - }, - { - "name": "ruff_source_file", - "source": null, - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_source_file" - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.197", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "shellexpand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "strum_macros" - ], - "target": null, - "registry": null - }, - { - "name": "toml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ruff_linter", - "source": null, - "req": "*", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "clap", - "test-rules" - ], - "target": null, - "registry": null, - "path": "/home/micha/astral/ruff/crates/ruff_linter" - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "etcetera", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ruff_workspace", - "src_path": "/home/micha/astral/ruff/crates/ruff_workspace/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "schemars": [ - "dep:schemars", - "ruff_formatter/schemars", - "ruff_python_formatter/schemars", - "ruff_python_semantic/schemars" - ] - }, - "manifest_path": "/home/micha/astral/ruff/crates/ruff_workspace/Cargo.toml", - "metadata": { - "cargo-shear": { - "ignored": [ - "colored" - ] - } - }, - "publish": [], - "authors": [ - "Charlie Marsh " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/astral-sh/ruff", - "homepage": "https://docs.astral.sh/ruff", - "documentation": "https://docs.astral.sh/ruff", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.80" - }, - { - "name": "rust-stemmers", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0", - "license": "MIT/BSD-3-Clause", - "license_file": null, - "description": "A rust implementation of some popular snowball stemming algorithms", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rust_stemmers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rust-stemmers-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stem-file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rust-stemmers-1.2.0/examples/stem-file/main.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rust-stemmers-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jakob Demler ", - "CurrySoftware " - ], - "categories": [], - "keywords": [ - "nlp", - "stemming", - "information", - "retrieval", - "language" - ], - "readme": "README.md", - "repository": "https://github.com/CurrySoftware/rust-stemmers", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-hash", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "speed, non-cryptographic hash used in rustc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_hash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-1.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-1.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [ - "hash", - "fxhash", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/rustc-hash", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustc-hash", - "version": "2.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "A speedy, non-cryptographic hashing algorithm used by rustc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustc_hash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-2.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "nightly": [], - "rand": [ - "dep:rand", - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-2.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "keywords": [ - "hash", - "hasher", - "fxhash", - "rustc" - ], - "readme": "README.md", - "repository": "https://github.com/rust-lang/rustc-hash", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "rustix", - "version": "0.38.40", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bitflags", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.4.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.49", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.161", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": "dev", - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memoffset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serial_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "ioctl", - "no_std" - ], - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.161", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": "libc_errno", - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "linux-raw-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.14", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "general", - "errno", - "ioctl", - "no_std", - "elf" - ], - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))", - "registry": null - }, - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.161", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))", - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "registry": null - }, - { - "name": "errno", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": "libc_errno", - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(windows)", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustix", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/benches/mod.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "all-apis": [ - "event", - "fs", - "io_uring", - "mm", - "mount", - "net", - "param", - "pipe", - "process", - "procfs", - "pty", - "rand", - "runtime", - "shm", - "stdio", - "system", - "termios", - "thread", - "time" - ], - "alloc": [], - "cc": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "event": [], - "fs": [], - "io_uring": [ - "event", - "fs", - "net", - "linux-raw-sys/io_uring" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc-extra-traits": [ - "libc?/extra_traits" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_latest": [ - "linux_4_11" - ], - "mm": [], - "mount": [], - "net": [ - "linux-raw-sys/net", - "linux-raw-sys/netlink", - "linux-raw-sys/if_ether", - "linux-raw-sys/xdp" - ], - "once_cell": [ - "dep:once_cell" - ], - "param": [ - "fs" - ], - "pipe": [], - "process": [ - "linux-raw-sys/prctl" - ], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "pty": [ - "itoa", - "fs" - ], - "rand": [], - "runtime": [ - "linux-raw-sys/prctl" - ], - "rustc-dep-of-std": [ - "core", - "rustc-std-workspace-alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std", - "compiler_builtins?/rustc-dep-of-std" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "shm": [ - "fs" - ], - "std": [ - "bitflags/std", - "alloc", - "libc?/std", - "libc_errno?/std", - "libc-extra-traits" - ], - "stdio": [], - "system": [ - "linux-raw-sys/system" - ], - "termios": [], - "thread": [ - "linux-raw-sys/prctl" - ], - "time": [], - "try_close": [], - "use-explicitly-provided-auxv": [], - "use-libc": [ - "libc_errno", - "libc", - "libc-extra-traits" - ], - "use-libc-auxv": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.38.40/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "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-wasip1" - ] - } - } - }, - "publish": null, - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "homepage": null, - "documentation": "https://docs.rs/rustix", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rustls", - "version": "0.23.10", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", - "license": "Apache-2.0 OR ISC OR MIT", - "license_file": null, - "description": "Rustls is a modern TLS library written in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "aws-lc-sys" - ], - "target": null, - "registry": null - }, - { - "name": "brotli", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "brotli-decompressor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ahash", - "inline-more" - ], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.16", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "race" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "subtle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.102.4", - "kind": null, - "rename": "webpki", - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zeroize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zlib-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num-bigint", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "aws_lc_rs", - "pem" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tikv-jemallocator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_env = \"msvc\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/examples/internal/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "bogo_shim", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/examples/internal/bogo_shim.rs", - "edition": "2021", - "required-features": [ - "tls12" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "test_ca", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/examples/internal/test_ca.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "api", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/api.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "api_ffdhe", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/api_ffdhe.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bogo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/bogo.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_cert_verifier", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/client_cert_verifier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ech", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/ech.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "key_log_file_env", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/key_log_file_env.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/macros.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "process_provider", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/process_provider.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "server_cert_verifier", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/server_cert_verifier.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unbuffered", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/tests/unbuffered.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/benches/benchmarks.rs", - "edition": "2021", - "required-features": [ - "ring" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aws-lc-rs": [ - "aws_lc_rs" - ], - "aws_lc_rs": [ - "dep:aws-lc-rs", - "webpki/aws_lc_rs" - ], - "brotli": [ - "dep:brotli", - "dep:brotli-decompressor", - "std" - ], - "default": [ - "aws_lc_rs", - "logging", - "std", - "tls12" - ], - "fips": [ - "aws_lc_rs", - "aws-lc-rs?/fips" - ], - "hashbrown": [ - "dep:hashbrown" - ], - "log": [ - "dep:log" - ], - "logging": [ - "log" - ], - "read_buf": [ - "rustversion", - "std" - ], - "ring": [ - "dep:ring", - "webpki/ring" - ], - "rustversion": [ - "dep:rustversion" - ], - "std": [ - "webpki/std", - "pki-types/std", - "once_cell/std" - ], - "tls12": [], - "zlib": [ - "dep:zlib-rs" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-0.23.10/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "rustls_pki_types", - "rustls_pki_types::*" - ] - }, - "docs": { - "rs": { - "features": [ - "read_buf", - "ring" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/rustls", - "homepage": "https://github.com/rustls/rustls", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rustls-pki-types", - "version": "1.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared types for the rustls PKI ecosystem", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "web-time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "rustls_pki_types", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "server_name", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/tests/server_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dns_name", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/tests/dns_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "key_type", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/tests/key_type.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "std": [ - "alloc" - ], - "web": [ - "web-time" - ], - "web-time": [ - "dep:web-time" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-pki-types-1.7.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "network-programming", - "data-structures", - "cryptography" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/pki-types", - "homepage": "https://github.com/rustls/pki-types", - "documentation": "https://docs.rs/rustls-pki-types", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "rustls-webpki", - "version": "0.102.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", - "license": "ISC", - "license_file": null, - "description": "Web PKI X.509 Certificate Verification.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aws-lc-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "aws-lc-sys" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "untrusted", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bzip2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.17.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "aws_lc_rs" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "webpki", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "better_tls", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/better_tls.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cert_v1_unsupported", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/cert_v1_unsupported.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cert_without_extensions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/cert_without_extensions.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_auth", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/client_auth.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "client_auth_revocation", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/client_auth_revocation.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crl_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/crl_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "custom_ekus", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/custom_ekus.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "integration", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/integration.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "signatures", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/signatures.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tls_server_certs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/tests/tls_server_certs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "ring?/alloc", - "pki-types/alloc" - ], - "aws_lc_rs": [ - "dep:aws-lc-rs" - ], - "default": [ - "std", - "ring" - ], - "ring": [ - "dep:ring" - ], - "std": [ - "alloc", - "pki-types/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustls-webpki-0.102.5/Cargo.toml", - "metadata": { - "cargo_check_external_types": { - "allowed_external_types": [ - "rustls_pki_types::*", - "rustls_pki_types" - ] - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/webpki", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "rustversion", - "version": "1.0.15", - "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Conditional compilation according to rustc compiler version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.49", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "rustversion", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/compiletest.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_const", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/test_const.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_eval", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/test_eval.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/tests/test_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/build/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustversion-1.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::build-utils", - "no-std", - "no-std::no-alloc" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/dtolnay/rustversion", - "homepage": null, - "documentation": "https://docs.rs/rustversion", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "ryu", - "version": "1.0.17", - "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", - "license": "Apache-2.0 OR BSL-1.0", - "license_file": null, - "description": "Fast floating point to string conversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "no-panic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "num_cpus", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ryu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "upstream_benchmark", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/examples/upstream_benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "common_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/common_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_intrinsics_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/d2s_intrinsics_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_table_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/d2s_table_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "d2s_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/d2s_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "exhaustive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/exhaustive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "f2s_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/f2s_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "s2d_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/s2d_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "s2f_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/tests/s2f_test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "no-panic": [ - "dep:no-panic" - ], - "small": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "float" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/ryu", - "homepage": null, - "documentation": "https://docs.rs/ryu", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "salsa", - "version": "0.18.0", - "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A generic framework for on-demand, incrementalized computation (experimental)", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", - "dependencies": [ - { - "name": "append-only-vec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arc-swap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dashmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "raw-api" - ], - "target": null, - "registry": null - }, - { - "name": "hashlink", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa-macro-rules", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "salsa-macros", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", - "req": "*", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "codspeed-criterion-compat", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "derive-new", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "expect-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "eyre", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "notify-debouncer-mini", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ordered-float", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "trace" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "salsa", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "calc", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/examples/calc/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "lazy-input", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/examples/lazy-input/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-chain", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-chain.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-custom-clone", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-custom-clone.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-custom-debug", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-custom-debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-dag", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-dag.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-execution-order", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-execution-order.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-from-tracked-fn", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-from-tracked-fn.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-no-duplicates", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-no-duplicates.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-reuse", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-reuse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "accumulate-reuse-workaround", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/accumulate-reuse-workaround.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compile_fail", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/compile_fail.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cycles", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/cycles.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deletion", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/deletion.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deletion-cascade", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/deletion-cascade.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deletion-drops", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/deletion-drops.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "elided-lifetime-in-tracked-fn", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/elided-lifetime-in-tracked-fn.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expect_reuse_field_x_of_a_tracked_struct_changes_but_fn_depends_on_field_y", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/expect_reuse_field_x_of_a_tracked_struct_changes_but_fn_depends_on_field_y.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "expect_reuse_field_x_of_an_input_changes_but_fn_depends_on_field_y", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/expect_reuse_field_x_of_an_input_changes_but_fn_depends_on_field_y.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hash_collision", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/hash_collision.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hello_world", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/hello_world.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "input_default", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/input_default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "input_field_durability", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/input_field_durability.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "input_setter_preserves_durability", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/input_setter_preserves_durability.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "interned-structs", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/interned-structs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "is_send_sync", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/is_send_sync.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lru", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/lru.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mutate_in_place", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/mutate_in_place.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "override_new_get_set", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/override_new_get_set.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "panic-when-creating-tracked-struct-outside-of-tracked-fn", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/panic-when-creating-tracked-struct-outside-of-tracked-fn.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parallel", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/parallel/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "preverify-struct-with-leaked-data", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/preverify-struct-with-leaked-data.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "preverify-struct-with-leaked-data-2", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/preverify-struct-with-leaked-data-2.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "singleton", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/singleton.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "specify-only-works-if-the-key-is-created-in-the-current-query", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/specify-only-works-if-the-key-is-created-in-the-current-query.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "synthetic_write", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/synthetic_write.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked-struct-id-field-bad-eq", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-id-field-bad-eq.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked-struct-id-field-bad-hash", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-id-field-bad-hash.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked-struct-unchanged-in-new-rev", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-unchanged-in-new-rev.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked-struct-value-field-bad-eq", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-value-field-bad-eq.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked-struct-value-field-not-eq", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked-struct-value-field-not-eq.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_constant", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_constant.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_high_durability_dependency", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_high_durability_dependency.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_no_eq", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_no_eq.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_on_input", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_input.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_on_input_with_high_durability", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_input_with_high_durability.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_on_interned", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_interned.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_on_tracked", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_tracked.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_on_tracked_specify", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_on_tracked_specify.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_read_own_entity", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_read_own_entity.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_read_own_specify", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_read_own_specify.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_fn_return_ref", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_fn_return_ref.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_method", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_method_inherent_return_ref", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_inherent_return_ref.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_method_on_tracked_struct", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_on_tracked_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_method_trait_return_ref", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_trait_return_ref.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_method_with_self_ty", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_method_with_self_ty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_struct_db1_lt", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_struct_db1_lt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_struct_durability", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_struct_durability.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_struct_recreate_new_revision", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_struct_recreate_new_revision.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_with_intern", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_with_intern.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tracked_with_struct_db", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/tracked_with_struct_db.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "warnings", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/tests/warnings/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "compare", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/benches/compare.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "incremental", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/benches/incremental.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Salsa developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/salsa-rs/salsa", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "salsa-macro-rules", - "version": "0.1.0", - "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Declarative macros for the salsa crate", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "salsa_macro_rules", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macro-rules/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macro-rules/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Salsa developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/salsa-rs/salsa", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "salsa-macros", - "version": "0.18.0", - "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Procedural macros for the salsa crate", - "source": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#254c749b02cde2fd29852a7463a33e800b771758", - "dependencies": [ - { - "name": "heck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.64", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "visit-mut" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "salsa_macros", - "src_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macros/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/git/checkouts/salsa-61760caba2b17ca5/254c749/components/salsa-macros/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Salsa developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/salsa-rs/salsa", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "same-file", - "version": "1.0.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "license": "Unlicense/MIT", - "license_file": null, - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "same_file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "is_same_file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/examples/is_same_file.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "is_stderr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/examples/is_stderr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/same-file-1.0.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "homepage": "https://github.com/BurntSushi/same-file", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "schemars", - "version": "0.8.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "license": "MIT", - "license_file": null, - "description": "Generate JSON Schemas from Rust code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": "arrayvec05", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": "arrayvec07", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bigdecimal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": "bigdecimal03", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bigdecimal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": "bigdecimal04", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dyn-clone", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "enumset", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde-1" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": "indexmap2", - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "rust_decimal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.8.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "semver", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smol_str", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": "uuid08", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "uuid1", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "schemars", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_serialization", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/custom_serialization.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_settings", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/custom_settings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "doc_comments", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/doc_comments.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum_repr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/enum_repr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "from_value", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/from_value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "remote_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/remote_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "schemars_attrs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/schemars_attrs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "serde_attrs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/serde_attrs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "validate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/examples/validate.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arrayvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/arrayvec.rs", - "edition": "2021", - "required-features": [ - "arrayvec05", - "arrayvec07" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bound", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/bound.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/bytes.rs", - "edition": "2021", - "required-features": [ - "bytes" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chrono", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/chrono.rs", - "edition": "2021", - "required-features": [ - "chrono" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "crate_alias", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/crate_alias.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decimal", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/decimal.rs", - "edition": "2021", - "required-features": [ - "rust_decimal", - "bigdecimal03", - "bigdecimal04" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/default.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "deprecated", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/deprecated.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dereference", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/dereference.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "docs", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/docs.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "either", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/either.rs", - "edition": "2021", - "required-features": [ - "either" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enum.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_deny_unknown_fields", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enum_deny_unknown_fields.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_repr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enum_repr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enumset", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/enumset.rs", - "edition": "2021", - "required-features": [ - "enumset" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "examples", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/examples.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ffi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/ffi.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "flatten", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/flatten.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "from_value", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/from_value.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "indexmap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/indexmap.rs", - "edition": "2021", - "required-features": [ - "indexmap" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "indexmap2", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/indexmap2.rs", - "edition": "2021", - "required-features": [ - "indexmap2" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "inline_subschemas", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/inline_subschemas.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/macro.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "nonzero_ints", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/nonzero_ints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "property_name", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/property_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "range", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/range.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "remote_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/remote_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "remote_derive_generic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/remote_derive_generic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "result", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/result.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "same_name", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/same_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "schema_for_schema", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_for_schema.rs", - "edition": "2021", - "required-features": [ - "impl_json_schema" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "schema_name", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_name.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "schema_settings", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_settings.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "schema_with_enum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_with_enum.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "schema_with_struct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/schema_with_struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "semver", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/semver.rs", - "edition": "2021", - "required-features": [ - "semver" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/skip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smallvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/smallvec.rs", - "edition": "2021", - "required-features": [ - "smallvec" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smol_str", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/smol_str.rs", - "edition": "2021", - "required-features": [ - "smol_str" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/struct.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_additional_properties", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/struct_additional_properties.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/time.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "transparent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/ui.rs", - "edition": "2021", - "required-features": [ - "ui_test" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "url", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/url.rs", - "edition": "2021", - "required-features": [ - "url" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "uuid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/uuid.rs", - "edition": "2021", - "required-features": [ - "uuid08", - "uuid1" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "validate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/validate.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "validate_inner", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/tests/validate_inner.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arrayvec": [ - "arrayvec05" - ], - "arrayvec05": [ - "dep:arrayvec05" - ], - "arrayvec07": [ - "dep:arrayvec07" - ], - "bigdecimal": [ - "bigdecimal03" - ], - "bigdecimal03": [ - "dep:bigdecimal03" - ], - "bigdecimal04": [ - "dep:bigdecimal04" - ], - "bytes": [ - "dep:bytes" - ], - "chrono": [ - "dep:chrono" - ], - "default": [ - "derive" - ], - "derive": [ - "schemars_derive" - ], - "derive_json_schema": [ - "impl_json_schema" - ], - "either": [ - "dep:either" - ], - "enumset": [ - "dep:enumset" - ], - "impl_json_schema": [ - "derive" - ], - "indexmap": [ - "dep:indexmap" - ], - "indexmap1": [ - "indexmap" - ], - "indexmap2": [ - "dep:indexmap2" - ], - "preserve_order": [ - "indexmap" - ], - "raw_value": [ - "serde_json/raw_value" - ], - "rust_decimal": [ - "dep:rust_decimal" - ], - "schemars_derive": [ - "dep:schemars_derive" - ], - "semver": [ - "dep:semver" - ], - "smallvec": [ - "dep:smallvec" - ], - "smol_str": [ - "dep:smol_str" - ], - "ui_test": [], - "url": [ - "dep:url" - ], - "uuid": [ - "uuid08" - ], - "uuid08": [ - "dep:uuid08" - ], - "uuid1": [ - "dep:uuid1" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars-0.8.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Graham Esau " - ], - "categories": [ - "encoding" - ], - "keywords": [ - "rust", - "json-schema", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/GREsau/schemars", - "homepage": "https://graham.cool/schemars/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "schemars_derive", - "version": "0.8.21", - "id": "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", - "license": "MIT", - "license_file": null, - "description": "Macros for #[derive(JsonSchema)], for use with schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive_internals", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.29", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "schemars_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars_derive-0.8.21/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/schemars_derive-0.8.21/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Graham Esau " - ], - "categories": [], - "keywords": [ - "rust", - "json-schema", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/GREsau/schemars", - "homepage": "https://graham.cool/schemars/", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "scoped-tls", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Library implementation of the standard library's old `scoped_thread_local!`\nmacro for providing scoped access to thread local storage (TLS) so any type can\nbe stored into TLS.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scoped_tls", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/alexcrichton/scoped-tls", - "homepage": "https://github.com/alexcrichton/scoped-tls", - "documentation": "https://docs.rs/scoped-tls", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.59" - }, - { - "name": "scopeguard", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "scopeguard", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "readme", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/examples/readme.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "use_std" - ], - "use_std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "publish": null, - "authors": [ - "bluss" - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "keywords": [ - "scope-guard", - "defer", - "panic", - "unwind" - ], - "readme": "README.md", - "repository": "https://github.com/bluss/scopeguard", - "homepage": null, - "documentation": "https://docs.rs/scopeguard/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "seahash", - "version": "4.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "license": "MIT", - "license_file": null, - "description": "A blazingly fast, portable hash function with proven statistical guarantees.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "seahash", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chunking", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/tests/chunking.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "quickchecks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/tests/quickchecks.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/benches/bench.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "use_std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/seahash-4.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "ticki ", - "Tom Almeida " - ], - "categories": [], - "keywords": [ - "hash", - "hashing", - "checksum", - "checksumming", - "portable" - ], - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/seahash", - "homepage": null, - "documentation": "https://docs.rs/seahash", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde", - "version": "1.0.215", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A generic serialization/deserialization framework", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.215", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.215/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.215/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.215/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive", - "rc", - "unstable" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://docs.rs/serde", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "serde-wasm-bindgen", - "version": "0.6.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "license": "MIT", - "license_file": null, - "description": "Native Serde adapter for wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.193", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.83", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "maplit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.39", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_wasm_bindgen", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "browser", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/tests/browser.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "node", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/tests/node.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-wasm-bindgen-0.6.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "wasm32-unknown-unknown" - ] - } - } - }, - "publish": null, - "authors": [ - "Ingvar Stepanyan " - ], - "categories": [ - "development-tools::ffi", - "wasm", - "encoding" - ], - "keywords": [ - "serde", - "serialization", - "javascript", - "wasm", - "webassembly" - ], - "readme": "README.md", - "repository": "https://github.com/RReverser/serde-wasm-bindgen", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "serde_derive", - "version": "1.0.215", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.81", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "parsing", - "printing", - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive-1.0.215/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "deserialize_in_place": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive-1.0.215/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "serde_derive_internals", - "version": "0.29.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "AST representation used by Serde derive macros. Unstable.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "clone-impls", - "derive", - "parsing", - "printing" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_derive_internals", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive_internals-0.29.0/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_derive_internals-0.29.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [], - "keywords": [ - "serde", - "serialization" - ], - "readme": null, - "repository": "https://github.com/serde-rs/serde", - "homepage": "https://serde.rs", - "documentation": "https://docs.rs/serde_derive_internals", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_json", - "version": "1.0.133", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A JSON serialization file format", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ryu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.194", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_stacker", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/debug.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lexical", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/lexical.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "map", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/map.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/regression.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [ - "serde/alloc" - ], - "arbitrary_precision": [], - "default": [ - "std" - ], - "float_roundtrip": [], - "indexmap": [ - "dep:indexmap" - ], - "preserve_order": [ - "indexmap", - "std" - ], - "raw_value": [], - "std": [ - "memchr/std", - "serde/std" - ], - "unbounded_depth": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.133/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "preserve_order", - "raw_value", - "unbounded_depth" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "raw_value" - ] - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "parser-implementations", - "no-std" - ], - "keywords": [ - "json", - "serde", - "serialization" - ], - "readme": "README.md", - "repository": "https://github.com/serde-rs/json", - "homepage": null, - "documentation": "https://docs.rs/serde_json", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_repr", - "version": "0.1.19", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.166", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.100", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_repr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/tests/test.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_repr-0.1.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "serialization", - "integer" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/serde-repr", - "homepage": null, - "documentation": "https://docs.rs/serde_repr", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_spanned", - "version": "0.6.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Serde-compatible spanned Value", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde-untagged", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_spanned", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_spanned-0.6.7/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_spanned-0.6.7/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": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "serde", - "span" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "serde_test", - "version": "1.0.177", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Token De/Serializer for testing De/Serialize implementations", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rc" - ], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_test-1.0.177/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_test-1.0.177/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "development-tools::testing" - ], - "keywords": [ - "serde", - "serialization", - "testing", - "dev-dependencies" - ], - "readme": "README.md", - "repository": "https://github.com/serde-rs/test", - "homepage": null, - "documentation": "https://docs.rs/serde_test", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "serde_with", - "version": "3.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Custom de/serialization functions for Rust's serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.20", - "kind": null, - "rename": "chrono_0_4", - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "document-features", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.14.0", - "kind": null, - "rename": "hashbrown_0_14", - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "hashbrown", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": null, - "rename": "hashbrown_0_15", - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.8", - "kind": null, - "rename": "indexmap_1", - "optional": true, - "uses_default_features": false, - "features": [ - "serde-1" - ], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": "indexmap_2", - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": null, - "rename": "schemars_0_8", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_with_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=3.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "~0.3.36", - "kind": null, - "rename": "time_0_3", - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "expect-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "jsonschema", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.18.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "resolve-file" - ], - "target": null, - "registry": null - }, - { - "name": "mime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "rmp-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "schemars", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.16", - "kind": "dev", - "rename": "schemars_0_8", - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde-xml-rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.124", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_yaml", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version-sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "serde_with", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "base64", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/base64.rs", - "edition": "2021", - "required-features": [ - "base64", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "chrono_0_4", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/chrono_0_4.rs", - "edition": "2021", - "required-features": [ - "chrono_0_4", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "derives", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/derives/lib.rs", - "edition": "2021", - "required-features": [ - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hashbrown_0_14", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/hashbrown_0_14.rs", - "edition": "2021", - "required-features": [ - "hashbrown_0_14", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hashbrown_0_15", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/hashbrown_0_15.rs", - "edition": "2021", - "required-features": [ - "hashbrown_0_15", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hex", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/hex.rs", - "edition": "2021", - "required-features": [ - "hex", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "indexmap_1", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/indexmap_1.rs", - "edition": "2021", - "required-features": [ - "indexmap_1", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "indexmap_2", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/indexmap_2.rs", - "edition": "2021", - "required-features": [ - "indexmap_2", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/json.rs", - "edition": "2021", - "required-features": [ - "json", - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/rust.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "schemars_0_8", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/schemars_0_8.rs", - "edition": "2021", - "required-features": [ - "schemars_0_8" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde_as", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/serde_as/lib.rs", - "edition": "2021", - "required-features": [ - "macros" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "time_0_3", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/time_0_3.rs", - "edition": "2021", - "required-features": [ - "macros", - "time_0_3" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/utils.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "version_numbers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/version_numbers.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "with_prefix", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/tests/with_prefix.rs", - "edition": "2021", - "required-features": [ - "macros" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "serde/alloc", - "base64?/alloc", - "chrono_0_4?/alloc", - "hex?/alloc", - "serde_json?/alloc", - "time_0_3?/alloc" - ], - "base64": [ - "dep:base64", - "alloc" - ], - "chrono": [ - "chrono_0_4" - ], - "chrono_0_4": [ - "dep:chrono_0_4" - ], - "default": [ - "std", - "macros" - ], - "guide": [ - "dep:doc-comment", - "dep:document-features", - "macros", - "std" - ], - "hashbrown_0_14": [ - "dep:hashbrown_0_14", - "alloc" - ], - "hashbrown_0_15": [ - "dep:hashbrown_0_15", - "alloc" - ], - "hex": [ - "dep:hex", - "alloc" - ], - "indexmap": [ - "indexmap_1" - ], - "indexmap_1": [ - "dep:indexmap_1", - "alloc" - ], - "indexmap_2": [ - "dep:indexmap_2", - "alloc" - ], - "json": [ - "dep:serde_json", - "alloc" - ], - "macros": [ - "dep:serde_with_macros" - ], - "schemars_0_8": [ - "dep:schemars_0_8", - "std", - "serde_with_macros?/schemars_0_8" - ], - "std": [ - "alloc", - "serde/std", - "chrono_0_4?/clock", - "chrono_0_4?/std", - "indexmap_1?/std", - "indexmap_2?/std", - "time_0_3?/serde-well-known", - "time_0_3?/std" - ], - "time_0_3": [ - "dep:time_0_3" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with-3.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=docsrs", - "-Zunstable-options", - "--generate-link-to-definition" - ] - } - }, - "release": { - "tag": true, - "tag-message": "{{crate_name}} v{{version}}", - "tag-name": "v{{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "[Unreleased]\n\n## [{{version}}] - {{date}}", - "search": "\\[Unreleased\\]" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/serde_with/{{version}}/", - "search": "https://docs\\.rs/serde_with/[\\d.]+/" - }, - { - "file": "README.md", - "replace": "https://docs.rs/serde_with/{{version}}/", - "search": "https://docs\\.rs/serde_with/[\\d.]+/" - } - ] - } - }, - "publish": null, - "authors": [ - "Jonas Bushart", - "Marcin Kaźmierczak" - ], - "categories": [ - "encoding", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "serde", - "utilities", - "serialization", - "deserialization" - ], - "readme": "README.md", - "repository": "https://github.com/jonasbb/serde_with/", - "homepage": null, - "documentation": "https://docs.rs/serde_with/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "serde_with_macros", - "version": "3.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "proc-macro library for serde_with", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "darling", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.20.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra-traits", - "full", - "parsing" - ], - "target": null, - "registry": null - }, - { - "name": "expect-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pretty_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.25", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.80", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "version-sync", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "serde_with_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "apply", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/apply.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiler-messages", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/compiler-messages.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde_as_issue_267", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/serde_as_issue_267.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde_as_issue_538", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/serde_as_issue_538.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "skip_serializing_null", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/skip_serializing_null.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "version_numbers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/tests/version_numbers.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "schemars_0_8": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_with_macros-3.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - }, - "release": { - "tag": false, - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "[Unreleased]\n\n## [{{version}}] - {{date}}", - "search": "\\[Unreleased\\]" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/serde_with/{{version}}/", - "search": "https://docs\\.rs/serde_with/[\\d.]+/" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/serde_with_macros/{{version}}/", - "search": "https://docs\\.rs/serde_with_macros/[\\d.]+/" - } - ] - } - }, - "publish": null, - "authors": [ - "Jonas Bushart" - ], - "categories": [ - "encoding" - ], - "keywords": [ - "serde", - "utilities", - "serialization", - "deserialization" - ], - "readme": "README.md", - "repository": "https://github.com/jonasbb/serde_with/", - "homepage": null, - "documentation": "https://docs.rs/serde_with_macros/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "sha2", - "version": "0.10.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "digest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "dev" - ], - "target": null, - "registry": null - }, - { - "name": "hex-literal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cpufeatures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - }, - { - "name": "sha2-asm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sha2", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/benches/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "asm": [ - "sha2-asm" - ], - "asm-aarch64": [ - "asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "loongarch64_asm": [], - "oid": [ - "digest/oid" - ], - "sha2-asm": [ - "dep:sha2-asm" - ], - "std": [ - "digest/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sha2-0.10.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "crypto", - "sha2", - "hash", - "digest" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "homepage": null, - "documentation": "https://docs.rs/sha2", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "sharded-slab", - "version": "0.1.7", - "id": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "license": "MIT", - "license_file": null, - "description": "A lock-free concurrent slab.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memory-stats", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "checkpoint" - ], - "target": "cfg(loom)", - "registry": null - }, - { - "name": "loom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "checkpoint" - ], - "target": "cfg(loom)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "sharded_slab", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reserved_bits_leak", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/tests/reserved_bits_leak.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "loom": [ - "dep:loom" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Eliza Weisman " - ], - "categories": [ - "memory-management", - "data-structures", - "concurrency" - ], - "keywords": [ - "slab", - "allocator", - "lock-free", - "atomic" - ], - "readme": "README.md", - "repository": "https://github.com/hawkw/sharded-slab", - "homepage": "https://github.com/hawkw/sharded-slab", - "documentation": "https://docs.rs/sharded-slab/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.42.0" - }, - { - "name": "shellexpand", - "version": "3.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Shell-like expansions in strings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0-pre.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dirs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=4, <6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "os_str_bytes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=5, <7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "shellexpand", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shellexpand-3.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "base-0": [], - "bstr": [ - "dep:bstr" - ], - "default": [ - "base-0", - "tilde" - ], - "dirs": [ - "dep:dirs" - ], - "full": [ - "full-msrv-1-51" - ], - "full-msrv-1-31": [ - "base-0", - "tilde" - ], - "full-msrv-1-51": [ - "full-msrv-1-31", - "path" - ], - "os_str_bytes": [ - "dep:os_str_bytes" - ], - "path": [ - "bstr", - "os_str_bytes" - ], - "tilde": [ - "dirs" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shellexpand-3.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Vladimir Matveev ", - "Ian Jackson " - ], - "categories": [], - "keywords": [ - "strings", - "shell", - "variables" - ], - "readme": "README.md", - "repository": "https://gitlab.com/ijackson/rust-shellexpand", - "homepage": null, - "documentation": "http://docs.rs/shellexpand/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "similar", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "license": "Apache-2.0", - "license_file": null, - "description": "A diff library for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bstr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.14", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.130", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "unicode-segmentation", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.7.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.68", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "similar", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "close-matches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/close-matches.rs", - "edition": "2018", - "required-features": [ - "text" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "large", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/large.rs", - "edition": "2018", - "required-features": [ - "text" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "nonstring", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/nonstring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "original-slices", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/original-slices.rs", - "edition": "2018", - "required-features": [ - "text" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "patience", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/patience.rs", - "edition": "2018", - "required-features": [ - "text", - "inline" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/serde.rs", - "edition": "2018", - "required-features": [ - "text", - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "terminal", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/terminal.rs", - "edition": "2018", - "required-features": [ - "text" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "terminal-inline", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/terminal-inline.rs", - "edition": "2018", - "required-features": [ - "text", - "inline", - "bytes" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "udiff", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/examples/udiff.rs", - "edition": "2018", - "required-features": [ - "text", - "bytes" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bstr": [ - "dep:bstr" - ], - "bytes": [ - "bstr", - "text" - ], - "default": [ - "text" - ], - "inline": [ - "text" - ], - "serde": [ - "dep:serde" - ], - "text": [], - "unicode": [ - "text", - "unicode-segmentation", - "bstr?/unicode", - "bstr?/std" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/similar-2.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Armin Ronacher ", - "Pierre-Étienne Meunier ", - "Brandon Williams " - ], - "categories": [], - "keywords": [ - "diff", - "difference", - "patience", - "compare", - "changes" - ], - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/similar", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "siphasher", - "version": "0.3.11", - "id": "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "siphasher", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/siphasher-0.3.11/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "serde_no_std": [ - "serde/alloc" - ], - "serde_std": [ - "std", - "serde/std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/siphasher-0.3.11/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Frank Denis " - ], - "categories": [ - "algorithms", - "cryptography" - ], - "keywords": [ - "crypto", - "hash", - "siphash" - ], - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-siphash", - "homepage": "https://docs.rs/siphasher", - "documentation": "https://docs.rs/siphasher", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "smallvec", - "version": "1.13.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "debugger_test_parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "smallvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "debugger_visualizer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/tests/debugger_visualizer.rs", - "edition": "2018", - "required-features": [ - "debugger_visualizer" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/tests/macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "const_generics": [], - "const_new": [ - "const_generics" - ], - "debugger_visualizer": [], - "drain_filter": [], - "drain_keep_rest": [ - "drain_filter" - ], - "may_dangle": [], - "serde": [ - "dep:serde" - ], - "specialization": [], - "union": [], - "write": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ] - } - } - }, - "publish": null, - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "small", - "vec", - "vector", - "stack", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-smallvec", - "homepage": null, - "documentation": "https://docs.rs/smallvec/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "spin", - "version": "0.9.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", - "license": "MIT", - "license_file": null, - "description": "Spin-based synchronization primitives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lock_api", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": "lock_api_crate", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "portable-atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "spin", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "debug", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/examples/debug.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "mutex", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/benches/mutex.rs", - "edition": "2015", - "required-features": [ - "ticket_mutex" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "barrier": [ - "mutex" - ], - "default": [ - "lock_api", - "mutex", - "spin_mutex", - "rwlock", - "once", - "lazy", - "barrier" - ], - "fair_mutex": [ - "mutex" - ], - "lazy": [ - "once" - ], - "lock_api": [ - "lock_api_crate" - ], - "lock_api_crate": [ - "dep:lock_api_crate" - ], - "mutex": [], - "once": [], - "portable-atomic": [ - "dep:portable-atomic" - ], - "portable_atomic": [ - "portable-atomic" - ], - "rwlock": [], - "spin_mutex": [ - "mutex" - ], - "std": [], - "ticket_mutex": [ - "mutex" - ], - "use_ticket_mutex": [ - "mutex", - "ticket_mutex" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/spin-0.9.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Mathijs van de Nes ", - "John Ericson ", - "Joshua Barretto " - ], - "categories": [], - "keywords": [ - "spinlock", - "mutex", - "rwlock" - ], - "readme": "README.md", - "repository": "https://github.com/mvdnes/spin-rs.git", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.38" - }, - { - "name": "stable_deref_trait", - "version": "1.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "stable_deref_trait", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stable_deref_trait-1.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stable_deref_trait-1.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Robert Grosse " - ], - "categories": [ - "memory-management", - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/storyyeller/stable_deref_trait", - "homepage": null, - "documentation": "https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "static_assertions", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Compile-time assertions to ensure that invariants are met.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "static_assertions", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/static_assertions-1.1.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/static_assertions-1.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nikolai Vazquez" - ], - "categories": [ - "no-std", - "rust-patterns", - "development-tools::testing" - ], - "keywords": [ - "assert", - "static", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/nvzqz/static-assertions-rs", - "homepage": "https://github.com/nvzqz/static-assertions-rs", - "documentation": "https://docs.rs/static_assertions/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "strip-ansi-escapes", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", - "license": "Apache-2.0/MIT", - "license_file": null, - "description": "Strip ANSI escape sequences from byte streams.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "vte", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "strip_ansi_escapes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strip-ansi-escapes-0.2.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "strip-escapes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strip-ansi-escapes-0.2.0/examples/strip-escapes.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strip-ansi-escapes-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Ted Mielczarek " - ], - "categories": [], - "keywords": [ - "ansi", - "escape", - "terminal" - ], - "readme": "README.md", - "repository": "https://github.com/luser/strip-ansi-escapes", - "homepage": "https://github.com/luser/strip-ansi-escapes", - "documentation": "https://docs.rs/strip-ansi-escapes", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "strsim", - "version": "0.10.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", - "license": "MIT", - "license_file": null, - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "strsim", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/tests/lib.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/benches/benches.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.10.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Danny Guo " - ], - "categories": [], - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "readme": "README.md", - "repository": "https://github.com/dguo/strsim-rs", - "homepage": "https://github.com/dguo/strsim-rs", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "strsim", - "version": "0.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "license": "MIT", - "license_file": null, - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "strsim", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "lib", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/tests/lib.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/benches/benches.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strsim-0.11.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Danny Guo ", - "maxbachmann " - ], - "categories": [ - "text-processing" - ], - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "readme": "README.md", - "repository": "https://github.com/rapidfuzz/strsim-rs", - "homepage": "https://github.com/rapidfuzz/strsim-rs", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "strum", - "version": "0.26.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "license": "MIT", - "license_file": null, - "description": "Helpful macros for working with enums and strings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "phf", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "strum_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "strum_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "strum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum-0.26.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "std" - ], - "derive": [ - "strum_macros" - ], - "phf": [ - "dep:phf" - ], - "std": [], - "strum_macros": [ - "dep:strum_macros" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum-0.26.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Peter Glotfelty " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parsing" - ], - "keywords": [ - "enum", - "string", - "macros", - "proc-macros" - ], - "readme": "README.md", - "repository": "https://github.com/Peternator7/strum", - "homepage": "https://github.com/Peternator7/strum", - "documentation": "https://docs.rs/strum", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "strum_macros", - "version": "0.26.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", - "license": "MIT", - "license_file": null, - "description": "Helpful macros for working with enums and strings", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "heck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "parsing", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "strum", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "strum_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum_macros-0.26.4/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/strum_macros-0.26.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Peter Glotfelty " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parsing" - ], - "keywords": [ - "enum", - "string", - "macros", - "proc-macros" - ], - "readme": "README.md", - "repository": "https://github.com/Peternator7/strum", - "homepage": "https://github.com/Peternator7/strum", - "documentation": "https://docs.rs/strum", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "subtle", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", - "license": "BSD-3-Clause", - "license_file": null, - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "subtle", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/subtle-2.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "mod", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/subtle-2.5.0/tests/mod.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "const-generics": [], - "core_hint_black_box": [], - "default": [ - "std", - "i128" - ], - "i128": [], - "nightly": [], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/subtle-2.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "keywords": [ - "cryptography", - "crypto", - "constant-time", - "utilities" - ], - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/subtle", - "homepage": "https://dalek.rs/", - "documentation": "https://docs.rs/subtle", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "syn", - "version": "1.0.109", - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for Rust source code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.46", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking" - ], - "target": null, - "registry": null - }, - { - "name": "syn-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syn", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/regression.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_asyncness", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_asyncness.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attribute", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_attribute.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive_input", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_derive_input.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_expr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_generics.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_grouping", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_grouping.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ident", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_ident.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_item.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iterators", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_iterators.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_lit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_meta", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_meta.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_buffer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_parse_buffer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_parse_stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_pat", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_pat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_path.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_precedence.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_receiver", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_receiver.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_round_trip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_round_trip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_shebang", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_shebang.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_should_parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_should_parse.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_stmt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_stmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_token_trees", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_token_trees.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ty", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_ty.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_visibility", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/test_visibility.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zzz_stable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/tests/zzz_stable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/benches/file.rs", - "edition": "2018", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/benches/rust.rs", - "edition": "2018", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "homepage": null, - "documentation": "https://docs.rs/syn", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "syn", - "version": "2.0.87", - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Parser for Rust source code", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.83", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-ident", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn-test-suite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "termcolor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "reqwest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "blocking" - ], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "tar", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.16", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(miri))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "syn", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "regression", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/regression.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_asyncness", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_asyncness.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_attribute", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_attribute.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_derive_input", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_derive_input.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_grouping", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_grouping.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ident", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_ident.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_item", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_item.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_iterators", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_iterators.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_lit.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_meta", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_meta.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_buffer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_parse_buffer.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_quote", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_parse_quote.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_parse_stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_parse_stream.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_pat", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_pat.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_precedence", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_precedence.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_receiver", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_receiver.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_round_trip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_round_trip.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_shebang", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_shebang.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_stmt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_stmt.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_token_trees", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_token_trees.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_ty", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_ty.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_unparenthesize", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_unparenthesize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_visibility", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/test_visibility.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zzz_stable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/tests/zzz_stable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "file", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/benches/file.rs", - "edition": "2021", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "rust", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/benches/rust.rs", - "edition": "2021", - "required-features": [ - "full", - "parsing" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "dep:quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote?/proc-macro" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.87/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--generate-link-to-definition", - "--extend-css=src/gen/token.css" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "keywords": [ - "macros", - "syn" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "homepage": null, - "documentation": "https://docs.rs/syn", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "synstructure", - "version": "0.13.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "license": "MIT", - "license_file": null, - "description": "Helper methods and macros for custom derives", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive", - "parsing", - "printing", - "clone-impls", - "visit", - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure_test_traits", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "synstructure", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/synstructure-0.13.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "syn/proc-macro", - "quote/proc-macro" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/synstructure-0.13.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Nika Layzell " - ], - "categories": [], - "keywords": [ - "syn", - "macros", - "derive", - "expand_substructure", - "enum" - ], - "readme": "README.md", - "repository": "https://github.com/mystor/synstructure", - "homepage": null, - "documentation": "https://docs.rs/synstructure", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tempfile", - "version": "3.14.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A library for managing temporary files and directories.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fastrand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.19.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.38.39", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fs" - ], - "target": "cfg(any(unix, target_os = \"wasi\"))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.52, <=0.59", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tempfile", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "env", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/env.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "namedtempfile", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/namedtempfile.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "spooled", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/spooled.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tempdir", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/tempdir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tempfile", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/tests/tempfile.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tempfile-3.14.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "homepage": "https://stebalien.com/projects/tempfile-rs/", - "documentation": "https://docs.rs/tempfile", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "terminal_size", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Gets the size of your Linux or Windows terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.38.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "termios" - ], - "target": "cfg(not(windows))", - "registry": null - }, - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.59.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_System_Console" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "terminal_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminal_size-0.4.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "get_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminal_size-0.4.0/examples/get_size.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminal_size-0.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Chin " - ], - "categories": [], - "keywords": [ - "terminal", - "console", - "term", - "size", - "dimensions" - ], - "readme": "README.md", - "repository": "https://github.com/eminence/terminal-size", - "homepage": null, - "documentation": "https://docs.rs/terminal_size", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "terminfo", - "version": "0.8.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", - "license": "WTFPL", - "license_file": null, - "description": "Terminal information.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "dirs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fnv", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "phf", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "phf_codegen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "terminfo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/examples/parse.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "set_attributes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/examples/set_attributes.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "simple", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/examples/simple.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/terminfo-0.8.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "meh. " - ], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "terminal", - "terminfo", - "termcap", - "term" - ], - "readme": "README.md", - "repository": "https://github.com/meh/rust-terminfo", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "termtree", - "version": "0.4.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1", - "license": "MIT", - "license_file": null, - "description": "Visualize tree-like data on the command-line", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "termtree", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/termtree-0.4.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tree", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/termtree-0.4.1/examples/tree.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/termtree-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/rust-cli/termtree/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface", - "visualization" - ], - "keywords": [ - "cli", - "tree", - "dag" - ], - "readme": "README.md", - "repository": "https://github.com/rust-cli/termtree", - "homepage": "https://github.com/rust-cli/termtree", - "documentation": "https://docs.rs/termtree", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "test-case", - "version": "3.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "license": "MIT", - "license_file": null, - "description": "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "test-case-macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "insta", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "test_case", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-3.3.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "acceptance", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-3.3.1/tests/acceptance_tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "regex": [ - "dep:regex" - ], - "with-regex": [ - "regex", - "test-case-macros/with-regex" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-3.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marcin Sas-Szymanski ", - "Wojciech Polak ", - "Łukasz Biel " - ], - "categories": [ - "development-tools", - "development-tools::testing" - ], - "keywords": [ - "test", - "case", - "tests", - "unit", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/frondeus/test-case", - "homepage": null, - "documentation": "https://docs.rs/test-case", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "test-case-core", - "version": "3.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1", - "license": "MIT", - "license_file": null, - "description": "Provides core functionality for parsing #[test_case(...)] procedural macro attribute for generating parametrized test cases easily", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "test_case_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-core-3.3.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "with-regex": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-core-3.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marcin Sas-Szymanski ", - "Wojciech Polak ", - "Łukasz Biel " - ], - "categories": [ - "development-tools", - "development-tools::testing" - ], - "keywords": [ - "test", - "case", - "tests", - "unit", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/frondeus/test-case", - "homepage": null, - "documentation": "https://docs.rs/test-case", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "test-case-macros", - "version": "3.3.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1", - "license": "MIT", - "license_file": null, - "description": "Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full", - "extra-traits", - "parsing" - ], - "target": null, - "registry": null - }, - { - "name": "test-case-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "test_case_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-macros-3.3.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": true - } - ], - "features": { - "with-regex": [ - "test-case-core/with-regex" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/test-case-macros-3.3.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Marcin Sas-Szymanski ", - "Wojciech Polak ", - "Łukasz Biel " - ], - "categories": [ - "development-tools", - "development-tools::testing" - ], - "keywords": [ - "test", - "case", - "tests", - "unit", - "testing" - ], - "readme": "README.md", - "repository": "https://github.com/frondeus/test-case", - "homepage": null, - "documentation": "https://docs.rs/test-case", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "thiserror", - "version": "1.0.67", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "derive(Error)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.67", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.73", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thiserror", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_deprecated", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_deprecated.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_display", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_display.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_from", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_from.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lints", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_lints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_option", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_option.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_source.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_transparent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/tests/test_transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-1.0.67/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "error", - "error-handling", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": "https://docs.rs/thiserror", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror", - "version": "2.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "derive(Error)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "thiserror-impl", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=2.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.73", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ref-cast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.81", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thiserror", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compiletest", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/compiletest.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_backtrace", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_backtrace.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_deprecated", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_deprecated.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_display", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_display.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_error.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_expr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_expr.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_from", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_from.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_generics", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_generics.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_lints", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_lints.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_option", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_option.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_path", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_path.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_source", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_source.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test_transparent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/tests/test_transparent.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-2.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns" - ], - "keywords": [ - "error", - "error-handling", - "derive" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": "https://docs.rs/thiserror", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror-impl", - "version": "1.0.67", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Implementation detail of the `thiserror` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "thiserror_impl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-1.0.67/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-1.0.67/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thiserror-impl", - "version": "2.0.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Implementation detail of the `thiserror` crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.74", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.35", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.87", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "thiserror_impl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-2.0.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thiserror-impl-2.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/dtolnay/thiserror", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.61" - }, - { - "name": "thread_local", - "version": "1.1.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Per-object thread-local storage", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "thread_local", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thread_local-1.1.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "thread_local", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thread_local-1.1.8/benches/thread_local.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "nightly": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/thread_local-1.1.8/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Amanieu d'Antras " - ], - "categories": [], - "keywords": [ - "thread_local", - "concurrent", - "thread" - ], - "readme": "README.md", - "repository": "https://github.com/Amanieu/thread_local-rs", - "homepage": null, - "documentation": "https://docs.rs/thread_local/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.59" - }, - { - "name": "tikv-jemalloc-sys", - "version": "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", - "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Rust FFI bindings to jemalloc\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.13", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tikv_jemalloc_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "malloc_conf_empty", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/tests/malloc_conf_empty.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "malloc_conf_set", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/tests/malloc_conf_set.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unprefixed_malloc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/tests/unprefixed_malloc.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "background_threads": [ - "background_threads_runtime_support" - ], - "background_threads_runtime_support": [], - "debug": [], - "default": [ - "background_threads_runtime_support" - ], - "disable_cache_oblivious": [], - "disable_initial_exec_tls": [], - "profiling": [], - "stats": [], - "unprefixed_malloc_on_supported_platforms": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemalloc-sys-0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "jemallocator_docs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Gonzalo Brito Gadeschi ", - "The TiKV Project Developers" - ], - "categories": [], - "keywords": [ - "allocator", - "jemalloc" - ], - "readme": "README.md", - "repository": "https://github.com/tikv/jemallocator", - "homepage": "https://github.com/tikv/jemallocator", - "documentation": "https://docs.rs/tikv-jemallocator-sys", - "edition": "2018", - "links": "jemalloc", - "default_run": null, - "rust_version": "1.71.0" - }, - { - "name": "tikv-jemallocator", - "version": "0.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "A Rust allocator backed by jemalloc\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tikv-jemalloc-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "paste", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tikv_jemallocator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "background_thread_defaults", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/background_thread_defaults.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "background_thread_enabled", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/background_thread_enabled.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ffi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/ffi.rs", - "edition": "2018", - "required-features": [ - "stats" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "grow_in_place", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/grow_in_place.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "malloctl", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/malloctl.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "shrink_in_place", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/shrink_in_place.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/smoke.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "smoke_ffi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/smoke_ffi.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "usable_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/tests/usable_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "roundtrip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/benches/roundtrip.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc_trait": [], - "background_threads": [ - "tikv-jemalloc-sys/background_threads" - ], - "background_threads_runtime_support": [ - "tikv-jemalloc-sys/background_threads_runtime_support" - ], - "debug": [ - "tikv-jemalloc-sys/debug" - ], - "default": [ - "background_threads_runtime_support" - ], - "disable_initial_exec_tls": [ - "tikv-jemalloc-sys/disable_initial_exec_tls" - ], - "profiling": [ - "tikv-jemalloc-sys/profiling" - ], - "stats": [ - "tikv-jemalloc-sys/stats" - ], - "unprefixed_malloc_on_supported_platforms": [ - "tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tikv-jemallocator-0.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [], - "rustdoc-args": [ - "--cfg", - "jemallocator_docs" - ] - } - } - }, - "publish": null, - "authors": [ - "Alex Crichton ", - "Gonzalo Brito Gadeschi ", - "Simon Sapin ", - "Steven Fackler ", - "The TiKV Project Developers" - ], - "categories": [ - "memory-management", - "api-bindings" - ], - "keywords": [ - "allocator", - "jemalloc" - ], - "readme": "README.md", - "repository": "https://github.com/tikv/jemallocator", - "homepage": "https://github.com/tikv/jemallocator", - "documentation": "https://docs.rs/jemallocator", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tinystr", - "version": "0.7.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "license": "Unicode-3.0", - "license_file": null, - "description": "A small ASCII-only bounded length string representation.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "displaydoc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "zerovec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinystr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "construct", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/construct.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "overview", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/overview.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/read.rs", - "edition": "2021", - "required-features": [ - "bench" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/benches/serde.rs", - "edition": "2021", - "required-features": [ - "bench", - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "bench": [], - "databake": [ - "dep:databake" - ], - "default": [ - "alloc" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "zerovec": [ - "dep:zerovec" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinystr-0.7.6/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "data-structures" - ], - "keywords": [ - "string", - "str", - "small", - "tiny", - "no_std" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "tinytemplate", - "version": "1.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Simple, lightweight template engine", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinytemplate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinytemplate-1.2.1/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinytemplate-1.2.1/benches/benchmarks.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinytemplate-1.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brook Heisler " - ], - "categories": [ - "template-engine" - ], - "keywords": [ - "template", - "html" - ], - "readme": "README.md", - "repository": "https://github.com/bheisler/TinyTemplate", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tinyvec", - "version": "1.6.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0", - "license": "Zlib OR Apache-2.0 OR MIT", - "license_file": null, - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tinyvec_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinyvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "arrayvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/tests/arrayvec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tinyvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/tests/tinyvec.rs", - "edition": "2018", - "required-features": [ - "alloc", - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/benches/macros.rs", - "edition": "2018", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "smallvec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/benches/smallvec.rs", - "edition": "2018", - "required-features": [ - "alloc", - "real_blackbox" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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" - ] - } - }, - "publish": null, - "authors": [ - "Lokathor " - ], - "categories": [ - "data-structures", - "no-std" - ], - "keywords": [ - "vec", - "no_std", - "no-std" - ], - "readme": "README.md", - "repository": "https://github.com/Lokathor/tinyvec", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tinyvec_macros", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "license": "MIT OR Apache-2.0 OR Zlib", - "license_file": null, - "description": "Some macros for tiny containers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tinyvec_macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec_macros-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec_macros-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Soveu " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/Soveu/tinyvec_macros", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "toml", - "version": "0.8.19", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "license": "MIT OR Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.7", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_edit", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.199", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "decode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/examples/decode.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "enum_external", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/examples/enum_external.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "toml2json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/examples/toml2json.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/decoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/decoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/encoder.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/encoder_compliance.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/tests/testsuite/main.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit", - "toml_edit?/display" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit", - "toml_edit?/parse" - ], - "preserve_order": [ - "indexmap" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml-0.8.19/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": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "toml_datetime", - "version": "0.6.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A TOML-compatible datetime type", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_datetime", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_datetime-0.6.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_datetime-0.6.8/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": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": "https://github.com/toml-rs/toml", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "toml_edit", - "version": "0.22.20", - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Yet another format-preserving TOML parser.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indexmap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "kstring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "max_inline" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.145", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_spanned", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "serde" - ], - "target": null, - "registry": null - }, - { - "name": "toml_datetime", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winnow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.18", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "libtest-mimic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.116", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "toml-test-harness", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "toml_edit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "visit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/examples/visit.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "decoder_compliance", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/decoder_compliance.rs", - "edition": "2021", - "required-features": [ - "parse" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "encoder_compliance", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/encoder_compliance.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "invalid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/invalid.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "testsuite", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/tests/testsuite/main.rs", - "edition": "2021", - "required-features": [ - "parse", - "display" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "parse", - "display" - ], - "display": [], - "parse": [ - "dep:winnow" - ], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/toml_edit-0.22.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "tag-name": "v{{version}}", - "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": "" - } - ] - } - }, - "publish": null, - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "keywords": [ - "encoding", - "toml" - ], - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65" - }, - { - "name": "tracing", - "version": "0.1.40", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "license": "MIT", - "license_file": null, - "description": "Application-level tracing for Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "pin-project-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-attributes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.27", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.32", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.21", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enabled", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/enabled.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "event", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filter_caching_is_lexically_scoped", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filter_caching_is_lexically_scoped.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_are_not_reevaluated_for_the_same_span", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filters_are_not_reevaluated_for_the_same_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_are_reevaluated_for_different_call_sites", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filters_are_reevaluated_for_different_call_sites.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filters_dont_leak", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/filters_dont_leak.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "future_send", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/future_send.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instrument", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/instrument.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macro_imports", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/macro_imports.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros_incompatible_concat", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/macros_incompatible_concat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "max_level_hint", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/max_level_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple_max_level_hints", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/multiple_max_level_hints.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "no_subscriber", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/no_subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "register_callsite_deadlock", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/register_callsite_deadlock.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "scoped_clobbers_default", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/scoped_clobbers_default.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "span", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "subscriber", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/tests/subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "baseline", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/baseline.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch_get_clone", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/dispatch_get_clone.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch_get_ref", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/dispatch_get_ref.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "empty_span", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/empty_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "enter_span", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/enter_span.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "event", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "shared", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/shared.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_fields", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/span_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_no_fields", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/span_no_fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "span_repeated", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/benches/span_repeated.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "async-await": [], - "attributes": [ - "tracing-attributes" - ], - "default": [ - "std", - "attributes" - ], - "log": [ - "dep:log" - ], - "log-always": [ - "log" - ], - "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": [], - "std": [ - "tracing-core/std" - ], - "tracing-attributes": [ - "dep:tracing-attributes" - ], - "valuable": [ - "tracing-core/valuable" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-0.1.40/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tracing_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tracing_unstable" - ] - } - } - }, - "publish": null, - "authors": [ - "Eliza Weisman ", - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous", - "no-std" - ], - "keywords": [ - "logging", - "tracing", - "metrics", - "async" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "tracing-attributes", - "version": "0.1.27", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", - "license": "MIT", - "license_file": null, - "description": "Procedural macro attributes for automatically instrumenting functions.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.60", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "full", - "parsing", - "printing", - "visit-mut", - "clone-impls", - "extra-traits", - "proc-macro" - ], - "target": null, - "registry": null - }, - { - "name": "async-trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.67", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "env-filter" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.64", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "tracing_attributes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "async_fn", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/async_fn.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "destructuring", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/destructuring.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "err", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/err.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fields", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/fields.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "follows_from", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/follows_from.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "instrument", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/instrument.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "levels", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/levels.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "names", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/names.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "parents", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/parents.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ret", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/ret.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "targets", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/targets.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/tests/ui.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "async-await": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.27/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Tokio Contributors ", - "Eliza Weisman ", - "David Barsky " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "macro", - "instrument", - "log" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "tracing-core", - "version": "0.1.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "license": "MIT", - "license_file": null, - "description": "Core primitives for application-level tracing.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "valuable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(tracing_unstable)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "dispatch", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/dispatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "global_dispatch", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/global_dispatch.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "local_dispatch_before_init", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/local_dispatch_before_init.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "macros", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/tests/macros.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "std", - "valuable/std" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "once_cell" - ], - "valuable": [ - "dep:valuable" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-core-0.1.32/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustc-args": [ - "--cfg", - "tracing_unstable" - ], - "rustdoc-args": [ - "--cfg", - "docsrs", - "--cfg", - "tracing_unstable" - ] - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "profiling" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "tracing-flame", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", - "license": "MIT", - "license_file": null, - "description": "Tracing layer for creating flamegraphs from span timings\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "lazy_static", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "registry", - "fmt" - ], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_flame", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "collapsed", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/tests/collapsed.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "concurrent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/tests/concurrent.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "smallvec" - ], - "smallvec": [ - "tracing-subscriber/smallvec" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-flame-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jane Lusby ", - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "tracing", - "subscriber", - "flamegraph", - "profiling" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.42.0" - }, - { - "name": "tracing-indicatif", - "version": "0.3.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", - "license": "MIT", - "license_file": null, - "description": "Tracing layer that automatically creates and manages progress bars for active spans.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "indicatif", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "in_memory" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.37", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.30", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "console", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "dialoguer", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.26", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "std_rng" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.25.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_indicatif", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "build_console", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/build_console.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "child_spans", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/child_spans.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "dialoguer_suspend", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/dialoguer_suspend.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/filter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "multithread", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/multithread.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "per_span_style", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/per_span_style.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "progress_bar", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/progress_bar.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stdout_stderr_printing", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/examples/stdout_stderr_printing.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-indicatif-0.3.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "cli", - "progress", - "progressbar", - "progress-bar", - "tracing" - ], - "readme": "README.md", - "repository": "https://github.com/emersonford/tracing-indicatif", - "homepage": null, - "documentation": "https://docs.rs/tracing-indicatif", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "tracing-log", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "license": "MIT", - "license_file": null, - "description": "Provides compatibility between `tracing` and the `log` crate.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "ahash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lru", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "log_tracer", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/tests/log_tracer.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reexport_log_crate", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/tests/reexport_log_crate.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "logging", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/benches/logging.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ahash": [ - "dep:ahash" - ], - "default": [ - "log-tracer", - "std" - ], - "interest-cache": [ - "lru", - "ahash" - ], - "log-tracer": [], - "lru": [ - "dep:lru" - ], - "std": [ - "log/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "log" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "tracing-subscriber", - "version": "0.3.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "license": "MIT", - "license_file": null, - "description": "Utilities for implementing and composing `tracing` subscribers.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "chrono", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "clock", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "matchers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nu-ansi-term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.46.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "parking_lot", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.6.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "unicode-case", - "unicode-perl" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.140", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.82", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sharded-slab", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "thread_local", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "formatting" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.30", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "log-tracer", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.6", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "formatting", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "rt", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.35", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std-future", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "valuable-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(tracing_unstable)", - "registry": null - }, - { - "name": "valuable", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": "valuable_crate", - "optional": true, - "uses_default_features": false, - "features": [], - "target": "cfg(tracing_unstable)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_subscriber", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "cached_layer_filters_dont_break_other_layers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/cached_layer_filters_dont_break_other_layers.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "duplicate_spans", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/duplicate_spans.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "env_filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/env_filter/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "event_enabling", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/event_enabling.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "field_filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/field_filter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "filter_log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/filter_log.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "fmt_max_level_hint", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/fmt_max_level_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hinted_layer_filters_dont_break_other_layers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/hinted_layer_filters_dont_break_other_layers.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "layer_filter_interests_are_cached", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/layer_filter_interests_are_cached.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "layer_filters", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/layer_filters/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "multiple_layer_filter_interests_cached", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/multiple_layer_filter_interests_cached.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "option", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/option.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "option_filter_interest_caching", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/option_filter_interest_caching.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "registry_max_level_hint", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/registry_max_level_hint.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "registry_with_subscriber", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/registry_with_subscriber.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "reload", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/reload.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "same_len_filters", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/same_len_filters.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unhinted_layer_filters_dont_break_other_layers", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/unhinted_layer_filters_dont_break_other_layers.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utils", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/utils.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "vec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/vec.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "vec_subscriber_filter_interests_cached", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/tests/vec_subscriber_filter_interests_cached.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "enter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/enter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "filter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/filter.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "filter_log", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/filter_log.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "fmt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/benches/fmt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "ansi": [ - "fmt", - "nu-ansi-term" - ], - "chrono": [ - "dep:chrono" - ], - "default": [ - "smallvec", - "fmt", - "ansi", - "tracing-log", - "std" - ], - "env-filter": [ - "matchers", - "regex", - "once_cell", - "tracing", - "std", - "thread_local" - ], - "fmt": [ - "registry", - "std" - ], - "json": [ - "tracing-serde", - "serde", - "serde_json" - ], - "local-time": [ - "time/local-offset" - ], - "matchers": [ - "dep:matchers" - ], - "nu-ansi-term": [ - "dep:nu-ansi-term" - ], - "once_cell": [ - "dep:once_cell" - ], - "parking_lot": [ - "dep:parking_lot" - ], - "regex": [ - "dep:regex" - ], - "registry": [ - "sharded-slab", - "thread_local", - "std" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "sharded-slab": [ - "dep:sharded-slab" - ], - "smallvec": [ - "dep:smallvec" - ], - "std": [ - "alloc", - "tracing-core/std" - ], - "thread_local": [ - "dep:thread_local" - ], - "time": [ - "dep:time" - ], - "tracing": [ - "dep:tracing" - ], - "tracing-log": [ - "dep:tracing-log" - ], - "tracing-serde": [ - "dep:tracing-serde" - ], - "valuable": [ - "tracing-core/valuable", - "valuable_crate", - "valuable-serde", - "tracing-serde/valuable" - ], - "valuable-serde": [ - "dep:valuable-serde" - ], - "valuable_crate": [ - "dep:valuable_crate" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.18/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Eliza Weisman ", - "David Barsky ", - "Tokio Contributors " - ], - "categories": [ - "development-tools::debugging", - "development-tools::profiling", - "asynchronous" - ], - "keywords": [ - "logging", - "tracing", - "metrics", - "subscriber" - ], - "readme": "README.md", - "repository": "https://github.com/tokio-rs/tracing", - "homepage": "https://tokio.rs", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "tracing-tree", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A Tracing Layer which prints a tree of spans and events.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "nu-ansi-term", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.50.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.20", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "formatting", - "local-offset" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing-log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std", - "log-tracer" - ], - "target": null, - "registry": null - }, - { - "name": "tracing-subscriber", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "registry", - "fmt", - "std" - ], - "target": null, - "registry": null - }, - { - "name": "futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tracing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ui_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "tracing_tree", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic_non_verbose", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic_non_verbose.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic_verbose_entry", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic_verbose_entry.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic_verbose_exit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/basic_verbose_exit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "concurrent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/concurrent.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "concurrent_eager", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/concurrent_eager.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "concurrent_verbose", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/concurrent_verbose.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "deferred", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/deferred.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "no-indent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/no-indent.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "quiet", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/quiet.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stderr", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/stderr.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "wraparound", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/examples/wraparound.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "format_time", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/tests/format_time.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "recursive_event", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/tests/recursive_event.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "ui", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/tests/ui.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [ - "tracing-log" - ], - "time": [ - "dep:time" - ], - "tracing-log": [ - "dep:tracing-log" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tracing-tree-0.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "David Barsky ", - "Nathan Whitaker", - "Oli Scherer " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/davidbarsky/tracing-tree", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "typed-arena", - "version": "2.0.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", - "license": "MIT", - "license_file": null, - "description": "The arena, a fast but limited type of allocator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "typed_arena", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typed-arena-2.0.2/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typed-arena-2.0.2/benches/benches.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typed-arena-2.0.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The typed-arena developers" - ], - "categories": [ - "memory-management", - "no-std" - ], - "keywords": [ - "arena" - ], - "readme": "./README.md", - "repository": "https://github.com/SimonSapin/rust-typed-arena", - "homepage": null, - "documentation": "https://docs.rs/typed-arena", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "typenum", - "version": "1.17.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "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.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "scale-info", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "typenum", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/tests/test.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-main", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/build/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "const-generics": [], - "force_unix_path_separator": [], - "i128": [], - "no_std": [], - "scale-info": [ - "dep:scale-info" - ], - "scale_info": [ - "scale-info/derive" - ], - "strict": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/typenum-1.17.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "i128", - "const-generics" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "i128", - "const-generics" - ] - } - }, - "publish": null, - "authors": [ - "Paho Lurie-Gregg ", - "Andre Bogus " - ], - "categories": [ - "no-std" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/paholg/typenum", - "homepage": null, - "documentation": "https://docs.rs/typenum", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.37.0" - }, - { - "name": "ucd-trie", - "version": "0.1.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A trie for storing Unicode codepoint sets and maps.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ucd_trie", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.6/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "keywords": [ - "unicode", - "database", - "character", - "codepoint", - "trie" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ucd-generate", - "homepage": "https://github.com/BurntSushi/ucd-generate", - "documentation": "https://docs.rs/ucd-trie", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unic-char-property", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "UNIC — Unicode Character Tools — Character Property taxonomy, contracts and build macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unic-char-range", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unic_char_property", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bool_property_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/tests/bool_property_macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_property_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/tests/enum_property_macro.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tables_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/tests/tables_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The UNIC Project Developers" - ], - "categories": [ - "internationalization", - "text-processing", - "parsing" - ], - "keywords": [ - "text", - "unicode", - "character-property" - ], - "readme": null, - "repository": "https://github.com/open-i18n/rust-unic/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unic-char-range", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "UNIC — Unicode Character Tools — Character Range and Iteration", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rayon", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unic_char_range", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "macro_use_std_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/examples/macro_use_std_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "iter_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/tests/iter_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benchmarks", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/benches/benchmarks.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "exact-size-is-empty": [], - "fused": [], - "rayon": [ - "dep:rayon" - ], - "std": [], - "trusted-len": [], - "unstable": [ - "exact-size-is-empty", - "fused", - "trusted-len" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The UNIC Project Developers" - ], - "categories": [ - "internationalization", - "text-processing" - ], - "keywords": [ - "text", - "unicode", - "utilities", - "iteration" - ], - "readme": null, - "repository": "https://github.com/open-i18n/rust-unic/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unic-common", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "UNIC — Common Utilities", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unic_common", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-common-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-common-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The UNIC Project Developers" - ], - "categories": [ - "internationalization", - "text-processing" - ], - "keywords": [ - "unicode", - "version" - ], - "readme": "README.md", - "repository": "https://github.com/open-i18n/rust-unic/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unic-ucd-category", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "UNIC — Unicode Character Database — General Category", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unic-char-property", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unic-char-range", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unic-ucd-version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unic_ucd_category", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/tests/basic_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "major_category_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/tests/major_category_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unicode_version_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/tests/unicode_version_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-category-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The UNIC Project Developers" - ], - "categories": [ - "internationalization", - "text-processing", - "parsing", - "rendering" - ], - "keywords": [ - "text", - "unicode", - "character-property", - "category" - ], - "readme": null, - "repository": "https://github.com/open-i18n/rust-unic/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unic-ucd-version", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "UNIC — Unicode Character Database — Version", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "unic-common", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unic_ucd_version", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic_tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0/tests/basic_tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The UNIC Project Developers" - ], - "categories": [ - "internationalization", - "text-processing", - "parsing", - "rendering" - ], - "keywords": [ - "text", - "unicode", - "version" - ], - "readme": null, - "repository": "https://github.com/open-i18n/rust-unic/", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-ident", - "version": "1.0.13", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "fst", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "roaring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ucd-trie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-xid", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_ident", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "compare", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/tests/compare.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "static_size", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/tests/static_size.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "xid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/benches/xid.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.13/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std", - "no-std::no-alloc" - ], - "keywords": [ - "unicode", - "xid" - ], - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "homepage": null, - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.31" - }, - { - "name": "unicode-normalization", - "version": "0.1.24", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", - "license": "MIT/Apache-2.0", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "tinyvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_normalization", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24/benches/bench.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "std" - ], - "std": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "keywords": [ - "text", - "unicode", - "normalization", - "decomposition", - "recomposition" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-normalization", - "homepage": "https://github.com/unicode-rs/unicode-normalization", - "documentation": "https://docs.rs/unicode-normalization/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.36" - }, - { - "name": "unicode-width", - "version": "0.1.13", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "std", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_width", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/benches/benches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.1.13/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [ - "command-line-interface", - "internationalization", - "no-std::no-alloc", - "text-processing" - ], - "keywords": [ - "text", - "width", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "homepage": "https://github.com/unicode-rs/unicode-width", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode-width", - "version": "0.2.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-std", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "std", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_width", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/tests/tests.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "benches", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/benches/benches.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "cjk": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "cjk" - ], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [ - "command-line-interface", - "internationalization", - "no-std::no-alloc", - "text-processing" - ], - "keywords": [ - "text", - "width", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "homepage": "https://github.com/unicode-rs/unicode-width", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "unicode_names2", - "version": "1.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "description": "Map characters to and from their name given in the Unicode standard.\nThis goes to great lengths to be as efficient as possible in both time\nand space, with the full bidirectional tables weighing barely 500 KB\nbut still offering O(1)* look-up in both directions. (*more precisely,\nO(length of name).)\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "phf", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_xorshift", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode_names2_macros", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.3, <2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode_names2_generator", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.0", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_names2", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "character", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/examples/character.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "count", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/examples/count.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "name", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/examples/name.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [], - "generator-timing": [ - "unicode_names2_generator/timing" - ], - "no_std": [], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2-1.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Huon Wilson ", - "Kang Seonghoon ", - "Valentin Lorentz ", - "Jeong YunWon " - ], - "categories": [], - "keywords": [ - "text", - "unicode" - ], - "readme": "README.md", - "repository": "https://github.com/progval/unicode_names2", - "homepage": "https://github.com/progval/unicode_names2", - "documentation": "https://docs.rs/unicode_names2/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "unicode_names2_generator", - "version": "1.3.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Generates the perfect-hash function used by `unicode_names2`.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "getopts", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "phf_codegen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unicode_names2_generator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2_generator-1.3.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "time": [ - "dep:time" - ], - "timing": [ - "time" - ], - "unstable": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode_names2_generator-1.3.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Huon Wilson " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/progval/unicode_names2", - "homepage": "https://github.com/progval/unicode_names2", - "documentation": "https://docs.rs/unicode_names2/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63.0" - }, - { - "name": "unscanny", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Painless string scanning.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "unscanny", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unscanny-0.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unscanny-0.1.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Laurenz " - ], - "categories": [ - "parsing", - "text-processing" - ], - "keywords": [ - "scanning", - "tokenizing" - ], - "readme": "README.md", - "repository": "https://github.com/typst/unscanny", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "untrusted", - "version": "0.9.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "license": "ISC", - "license_file": null, - "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "untrusted", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/untrusted-0.9.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "tests", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/untrusted-0.9.0/tests/tests.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/untrusted-0.9.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Brian Smith " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/briansmith/untrusted", - "homepage": null, - "documentation": "https://briansmith.org/rustdoc/untrusted/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "ureq", - "version": "2.10.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Simple, safe HTTP client", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "base64", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "brotli-decompressor", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^4.0.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cookie", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.18", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "cookie_store", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.21", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "preserve_order" - ], - "target": null, - "registry": null - }, - { - "name": "encoding_rs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.22", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hootbin", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "http", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": "http-02", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "native-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "ring", - "logging", - "std", - "tls12" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-native-certs", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=1.0.97", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "socks", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "url", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "webpki-roots", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "env_logger", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "<=0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "humantime" - ], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.23.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std", - "ring" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-pemfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "ureq", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "count-bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/count-bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "cureq", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/cureq/main.rs", - "edition": "2018", - "required-features": [ - "charset", - "cookies", - "socks-proxy", - "native-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom-tls", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/custom-tls.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ipv6", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/ipv6.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "smoke-test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/smoke-test/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "tls_config", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/examples/tls_config.rs", - "edition": "2018", - "required-features": [ - "tls", - "native-tls" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "https-agent", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/tests/https-agent.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "brotli": [ - "dep:brotli-decompressor" - ], - "charset": [ - "dep:encoding_rs" - ], - "cookies": [ - "dep:cookie", - "dep:cookie_store" - ], - "default": [ - "tls", - "gzip" - ], - "gzip": [ - "dep:flate2" - ], - "http-crate": [ - "dep:http" - ], - "http-interop": [ - "dep:http-02" - ], - "json": [ - "dep:serde", - "dep:serde_json" - ], - "native-certs": [ - "dep:rustls-native-certs" - ], - "native-tls": [ - "dep:native-tls" - ], - "proxy-from-env": [], - "socks-proxy": [ - "dep:socks" - ], - "testdeps": [ - "dep:hootbin" - ], - "tls": [ - "dep:webpki-roots", - "dep:rustls", - "dep:rustls-pki-types" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ureq-2.10.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "tls", - "native-tls", - "json", - "charset", - "cookies", - "socks-proxy", - "gzip", - "brotli", - "http-interop", - "http-crate" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "Martin Algesten ", - "Jacob Hoffman-Andrews " - ], - "categories": [ - "web-programming::http-client" - ], - "keywords": [ - "web", - "request", - "https", - "http", - "client" - ], - "readme": "README.md", - "repository": "https://github.com/algesten/ureq", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "url", - "version": "2.5.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "URL library for Rust, based on the WHATWG URL Standard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "form_urlencoded", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "idna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc", - "compiled_data" - ], - "target": null, - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "url", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "unit", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/tests/unit.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "url_wpt", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/tests/wpt.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "debugger_visualizer": [], - "default": [ - "std" - ], - "expose_internals": [], - "serde": [ - "dep:serde" - ], - "std": [ - "idna/std", - "percent-encoding/std", - "form_urlencoded/std" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/url-2.5.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "serde" - ] - } - }, - "publish": null, - "authors": [ - "The rust-url developers" - ], - "categories": [ - "parser-implementations", - "web-programming", - "encoding", - "no-std" - ], - "keywords": [ - "url", - "parser" - ], - "readme": "README.md", - "repository": "https://github.com/servo/rust-url", - "homepage": null, - "documentation": "https://docs.rs/url", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "urlencoding", - "version": "2.1.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", - "license": "MIT", - "license_file": null, - "description": "A Rust library for doing URL percentage encoding.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "urlencoding", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/urlencoding-2.1.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "bench", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/urlencoding-2.1.3/benches/bench.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/urlencoding-2.1.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Kornel ", - "Bertram Truong " - ], - "categories": [ - "encoding", - "web-programming" - ], - "keywords": [ - "url", - "percent", - "escape", - "urlencode", - "urldecode" - ], - "readme": "README.md", - "repository": "https://github.com/kornelski/rust_urlencoding", - "homepage": "https://lib.rs/urlencoding", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf16_iter", - "version": "1.0.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Iterator by char over potentially-invalid UTF-16 in &[u16]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf16_iter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf16_iter-1.0.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf16_iter-1.0.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "internationalization" - ], - "keywords": [ - "encoding", - "UTF-16", - "unicode", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/utf16_iter", - "homepage": "https://docs.rs/utf16_iter/", - "documentation": "https://docs.rs/utf16_iter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf8_iter", - "version": "1.0.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf8_iter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8_iter-1.0.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8_iter-1.0.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Henri Sivonen " - ], - "categories": [ - "text-processing", - "encoding", - "internationalization" - ], - "keywords": [ - "encoding", - "UTF-8", - "unicode", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/utf8_iter", - "homepage": "https://docs.rs/utf8_iter/", - "documentation": "https://docs.rs/utf8_iter/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "utf8parse", - "version": "0.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Table-driven UTF-8 parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "utf8parse", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8parse-0.2.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "utf-8-demo", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8parse-0.2.1/tests/utf-8-demo.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "default": [], - "nightly": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/utf8parse-0.2.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "utf8", - "parse", - "table" - ], - "readme": null, - "repository": "https://github.com/alacritty/vte", - "homepage": null, - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "uuid", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A library to generate and parse UUIDs.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arbitrary", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "atomic", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "borsh-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bytemuck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.14.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "md-5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1_smol", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "slog", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "uuid-macro-internal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.79", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.56", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.52", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target = \"wasm32-unknown-unknown\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "uuid", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-1.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "atomic": [ - "dep:atomic" - ], - "borsh": [ - "dep:borsh", - "dep:borsh-derive" - ], - "bytemuck": [ - "dep:bytemuck" - ], - "default": [ - "std" - ], - "fast-rng": [ - "rng", - "dep:rand" - ], - "js": [ - "dep:wasm-bindgen", - "getrandom?/js" - ], - "macro-diagnostics": [ - "dep:uuid-macro-internal" - ], - "md5": [ - "dep:md-5" - ], - "rng": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "sha1": [ - "dep:sha1_smol" - ], - "slog": [ - "dep:slog" - ], - "std": [], - "v1": [ - "atomic" - ], - "v3": [ - "md5" - ], - "v4": [ - "rng" - ], - "v5": [ - "sha1" - ], - "v6": [ - "atomic" - ], - "v7": [ - "rng" - ], - "v8": [], - "zerocopy": [ - "dep:zerocopy" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-1.11.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "arbitrary", - "slog", - "borsh", - "v1", - "v3", - "v4", - "v5", - "v6", - "v7", - "v8" - ], - "rustc-args": [ - "--cfg", - "uuid_unstable" - ], - "rustdoc-args": [ - "--cfg", - "uuid_unstable" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "serde", - "v1", - "v3", - "v4", - "v5", - "v6", - "v7", - "v8" - ] - } - }, - "publish": null, - "authors": [ - "Ashley Mannix", - "Dylan DPC", - "Hunar Roop Kahlon" - ], - "categories": [ - "data-structures", - "no-std", - "parser-implementations", - "wasm" - ], - "keywords": [ - "guid", - "unique", - "uuid" - ], - "readme": "README.md", - "repository": "https://github.com/uuid-rs/uuid", - "homepage": "https://github.com/uuid-rs/uuid", - "documentation": "https://docs.rs/uuid", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "uuid-macro-internal", - "version": "1.11.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Private implementation details of the uuid! macro.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.29", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "span-locations" - ], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "uuid_macro_internal", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-macro-internal-1.11.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/uuid-macro-internal-1.11.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "QnnOkabayashi" - ], - "categories": [ - "data-structures", - "no-std", - "parser-implementations", - "wasm" - ], - "keywords": [], - "readme": null, - "repository": "https://github.com/uuid-rs/uuid", - "homepage": null, - "documentation": "https://docs.rs/uuid", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "valuable", - "version": "0.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0", - "license": "MIT", - "license_file": null, - "description": "Object-safe value inspection, used to pass un-typed structured data across trait-object boundaries.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "valuable-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "valuable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/examples/derive.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "hello_world", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/examples/hello_world.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "print", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/examples/print.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "structable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/benches/structable.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "valuable-derive" - ], - "std": [ - "alloc" - ], - "valuable-derive": [ - "dep:valuable-derive" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/valuable-0.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "development-tools::debugging", - "encoding" - ], - "keywords": [ - "valuable", - "serialization", - "debugging", - "no_std" - ], - "readme": "../README.md", - "repository": "https://github.com/tokio-rs/valuable", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.51.0" - }, - { - "name": "version-ranges", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", - "license": "MPL-2.0", - "license_file": null, - "description": "Performance-optimized type for generic version ranges and operations on them.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.214", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.13.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "union" - ], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ron", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.9.0-alpha.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "version_ranges", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version-ranges-0.1.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "proptest": [ - "dep:proptest" - ], - "serde": [ - "dep:serde", - "smallvec/serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version-ranges-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [ - "version", - "pubgrub", - "selector", - "ranges" - ], - "readme": "README.md", - "repository": "https://github.com/pubgrub-rs/pubgrub", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "version_check", - "version": "0.9.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Tiny crate to check the version of the installed/running rustc.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "version_check", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version_check-0.9.4/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version_check-0.9.4/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Sergio Benitez " - ], - "categories": [], - "keywords": [ - "version", - "rustc", - "minimum", - "check" - ], - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/version_check", - "homepage": null, - "documentation": "https://docs.rs/version_check/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vt100", - "version": "0.15.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", - "license": "MIT", - "license_file": null, - "description": "Library for parsing terminal data", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "itoa", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "unicode-width", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vte", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "nix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.26.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quickcheck", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.9", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.152", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.92", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vte", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vt100", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vt100-0.15.2/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vt100-0.15.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Jesse Luehrs " - ], - "categories": [ - "command-line-interface", - "encoding" - ], - "keywords": [ - "terminal", - "vt100" - ], - "readme": "README.md", - "repository": "https://github.com/doy/vt100-rust", - "homepage": "https://github.com/doy/vt100-rust", - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "vte", - "version": "0.11.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Parser for implementing terminal emulators", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.17", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.160", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "utf8parse", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "vte_generate_state_changes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "vte", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte-0.11.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "parselog", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte-0.11.1/examples/parselog.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "ansi": [ - "log" - ], - "arrayvec": [ - "dep:arrayvec" - ], - "default": [ - "no_std" - ], - "log": [ - "dep:log" - ], - "nightly": [ - "utf8parse/nightly" - ], - "no_std": [ - "arrayvec" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte-0.11.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "keywords": [ - "ansi", - "vte", - "parser", - "terminal" - ], - "readme": "README.md", - "repository": "https://github.com/alacritty/vte", - "homepage": null, - "documentation": "https://docs.rs/vte/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56.0" - }, - { - "name": "vte_generate_state_changes", - "version": "0.1.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#vte_generate_state_changes@0.1.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Proc macro for generating VTE state changes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "vte_generate_state_changes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte_generate_state_changes-0.1.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/vte_generate_state_changes-0.1.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Christian Duerr " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/jwilm/vte", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "walkdir", - "version": "2.5.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "license": "Unlicense/MIT", - "license_file": null, - "description": "Recursively walk a directory.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "same-file", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "walkdir", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/walkdir-2.5.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/walkdir-2.5.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "homepage": "https://github.com/BurntSushi/walkdir", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasi", - "version": "0.11.0+wasi-snapshot-preview1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Experimental WASI API bindings for Rust", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "compiler_builtins", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": "core", - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-std-workspace-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The Cranelift Project Developers" - ], - "categories": [ - "no-std", - "wasm" - ], - "keywords": [ - "webassembly", - "wasm" - ], - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasi", - "homepage": null, - "documentation": "https://docs.rs/wasi", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "wasm-bindgen", - "version": "0.2.95", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Easy support for interacting between JS and Rust.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.95/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": false - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.95/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "default": [ - "spans", - "std" - ], - "enable-interning": [ - "std" - ], - "gg-alloc": [], - "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" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.95/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-serialize" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "homepage": "https://rustwasm.github.io/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-backend", - "version": "0.2.95", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Backend code generation of the wasm-bindgen tool\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bumpalo", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "log", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "once_cell", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.12", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "full" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_backend", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-backend-0.2.95/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-backend-0.2.95/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-backend", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-futures", - "version": "0.4.45", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bridging the gap between Rust Futures and JavaScript Promises", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "cfg-if", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-core", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.72", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel-preview", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0-alpha.18", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "futures-lite", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.11.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.24", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "MessageEvent", - "Worker" - ], - "target": "cfg(target_feature = \"atomics\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_futures", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-futures-0.4.45/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "futures-core": [ - "dep:futures-core" - ], - "futures-core-03-stream": [ - "futures-core" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-futures-0.4.45/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-futures", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-macro", - "version": "0.2.95", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-macro-support", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasm_bindgen_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-0.2.95/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "spans": [ - "wasm-bindgen-macro-support/spans" - ], - "strict-macro": [ - "wasm-bindgen-macro-support/strict-macro" - ], - "xxx_debug_only_print_generated_code": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-0.2.95/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-macro-support", - "version": "0.2.95", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "visit", - "visit-mut", - "full" - ], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-backend", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-shared", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_macro_support", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-support-0.2.95/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [ - "wasm-bindgen-backend/spans" - ], - "strict-macro": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-support-0.2.95/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-shared", - "version": "0.2.95", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_shared", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.95/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.95/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.95/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "documentation": "https://docs.rs/wasm-bindgen-shared", - "edition": "2021", - "links": "wasm_bindgen", - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-test", - "version": "0.3.45", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Internal testing crate for wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "console_error_panic_hook", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "gg-alloc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.72", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "scoped-tls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.95", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.45", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-test-macro", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.3.45", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "minicov", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"wasm32\", wasm_bindgen_unstable_test_coverage))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wasm_bindgen_test", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-0.3.45/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": false - } - ], - "features": { - "gg-alloc": [ - "dep:gg-alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-0.3.45/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "wasm-bindgen-test-macro", - "version": "0.3.45", - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Internal testing macro for wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "parsing", - "proc-macro", - "derive", - "printing" - ], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "wasm_bindgen_test_macro", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-macro-0.3.45/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wasm-bindgen-test-macro-0.3.45/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "web-sys", - "version": "0.3.69", - "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Bindings for all Web APIs, a procedurally generated crate from WebIDL\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.69", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.92", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.42", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_arch = \"wasm32\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "web_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-sys-0.3.69/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "wasm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-sys-0.3.69/tests/wasm/main.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "AbortController": [], - "AbortSignal": [ - "EventTarget" - ], - "AddEventListenerOptions": [], - "AesCbcParams": [], - "AesCtrParams": [], - "AesDerivedKeyParams": [], - "AesGcmParams": [], - "AesKeyAlgorithm": [], - "AesKeyGenParams": [], - "Algorithm": [], - "AlignSetting": [], - "AllowedBluetoothDevice": [], - "AllowedUsbDevice": [], - "AlphaOption": [], - "AnalyserNode": [ - "AudioNode", - "EventTarget" - ], - "AnalyserOptions": [], - "AngleInstancedArrays": [], - "Animation": [ - "EventTarget" - ], - "AnimationEffect": [], - "AnimationEvent": [ - "Event" - ], - "AnimationEventInit": [], - "AnimationPlayState": [], - "AnimationPlaybackEvent": [ - "Event" - ], - "AnimationPlaybackEventInit": [], - "AnimationPropertyDetails": [], - "AnimationPropertyValueDetails": [], - "AnimationTimeline": [], - "AssignedNodesOptions": [], - "AttestationConveyancePreference": [], - "Attr": [ - "EventTarget", - "Node" - ], - "AttributeNameValue": [], - "AudioBuffer": [], - "AudioBufferOptions": [], - "AudioBufferSourceNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "AudioBufferSourceOptions": [], - "AudioConfiguration": [], - "AudioContext": [ - "BaseAudioContext", - "EventTarget" - ], - "AudioContextLatencyCategory": [], - "AudioContextOptions": [], - "AudioContextState": [], - "AudioData": [], - "AudioDataCopyToOptions": [], - "AudioDataInit": [], - "AudioDecoder": [], - "AudioDecoderConfig": [], - "AudioDecoderInit": [], - "AudioDecoderSupport": [], - "AudioDestinationNode": [ - "AudioNode", - "EventTarget" - ], - "AudioEncoder": [], - "AudioEncoderConfig": [], - "AudioEncoderInit": [], - "AudioEncoderSupport": [], - "AudioListener": [], - "AudioNode": [ - "EventTarget" - ], - "AudioNodeOptions": [], - "AudioParam": [], - "AudioParamMap": [], - "AudioProcessingEvent": [ - "Event" - ], - "AudioSampleFormat": [], - "AudioScheduledSourceNode": [ - "AudioNode", - "EventTarget" - ], - "AudioSinkInfo": [], - "AudioSinkOptions": [], - "AudioSinkType": [], - "AudioStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "AudioTrack": [], - "AudioTrackList": [ - "EventTarget" - ], - "AudioWorklet": [ - "Worklet" - ], - "AudioWorkletGlobalScope": [ - "WorkletGlobalScope" - ], - "AudioWorkletNode": [ - "AudioNode", - "EventTarget" - ], - "AudioWorkletNodeOptions": [], - "AudioWorkletProcessor": [], - "AuthenticationExtensionsClientInputs": [], - "AuthenticationExtensionsClientOutputs": [], - "AuthenticatorAssertionResponse": [ - "AuthenticatorResponse" - ], - "AuthenticatorAttachment": [], - "AuthenticatorAttestationResponse": [ - "AuthenticatorResponse" - ], - "AuthenticatorResponse": [], - "AuthenticatorSelectionCriteria": [], - "AuthenticatorTransport": [], - "AutoKeyword": [], - "AutocompleteInfo": [], - "BarProp": [], - "BaseAudioContext": [ - "EventTarget" - ], - "BaseComputedKeyframe": [], - "BaseKeyframe": [], - "BasePropertyIndexedKeyframe": [], - "BasicCardRequest": [], - "BasicCardResponse": [], - "BasicCardType": [], - "BatteryManager": [ - "EventTarget" - ], - "BeforeUnloadEvent": [ - "Event" - ], - "BinaryType": [], - "BiquadFilterNode": [ - "AudioNode", - "EventTarget" - ], - "BiquadFilterOptions": [], - "BiquadFilterType": [], - "Blob": [], - "BlobEvent": [ - "Event" - ], - "BlobEventInit": [], - "BlobPropertyBag": [], - "BlockParsingOptions": [], - "Bluetooth": [ - "EventTarget" - ], - "BluetoothAdvertisingEvent": [ - "Event" - ], - "BluetoothAdvertisingEventInit": [], - "BluetoothCharacteristicProperties": [], - "BluetoothDataFilterInit": [], - "BluetoothDevice": [ - "EventTarget" - ], - "BluetoothLeScanFilterInit": [], - "BluetoothManufacturerDataMap": [], - "BluetoothPermissionDescriptor": [], - "BluetoothPermissionResult": [ - "EventTarget", - "PermissionStatus" - ], - "BluetoothPermissionStorage": [], - "BluetoothRemoteGattCharacteristic": [ - "EventTarget" - ], - "BluetoothRemoteGattDescriptor": [], - "BluetoothRemoteGattServer": [], - "BluetoothRemoteGattService": [ - "EventTarget" - ], - "BluetoothServiceDataMap": [], - "BluetoothUuid": [], - "BoxQuadOptions": [], - "BroadcastChannel": [ - "EventTarget" - ], - "BrowserElementDownloadOptions": [], - "BrowserElementExecuteScriptOptions": [], - "BrowserFeedWriter": [], - "BrowserFindCaseSensitivity": [], - "BrowserFindDirection": [], - "ByteLengthQueuingStrategy": [], - "Cache": [], - "CacheBatchOperation": [], - "CacheQueryOptions": [], - "CacheStorage": [], - "CacheStorageNamespace": [], - "CanvasCaptureMediaStream": [ - "EventTarget", - "MediaStream" - ], - "CanvasCaptureMediaStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "CanvasGradient": [], - "CanvasPattern": [], - "CanvasRenderingContext2d": [], - "CanvasWindingRule": [], - "CaretChangedReason": [], - "CaretPosition": [], - "CaretStateChangedEventInit": [], - "CdataSection": [ - "CharacterData", - "EventTarget", - "Node", - "Text" - ], - "ChannelCountMode": [], - "ChannelInterpretation": [], - "ChannelMergerNode": [ - "AudioNode", - "EventTarget" - ], - "ChannelMergerOptions": [], - "ChannelSplitterNode": [ - "AudioNode", - "EventTarget" - ], - "ChannelSplitterOptions": [], - "CharacterData": [ - "EventTarget", - "Node" - ], - "CheckerboardReason": [], - "CheckerboardReport": [], - "CheckerboardReportService": [], - "ChromeFilePropertyBag": [], - "ChromeWorker": [ - "EventTarget", - "Worker" - ], - "Client": [], - "ClientQueryOptions": [], - "ClientRectsAndTexts": [], - "ClientType": [], - "Clients": [], - "Clipboard": [ - "EventTarget" - ], - "ClipboardEvent": [ - "Event" - ], - "ClipboardEventInit": [], - "ClipboardItem": [], - "ClipboardItemOptions": [], - "ClipboardPermissionDescriptor": [], - "CloseEvent": [ - "Event" - ], - "CloseEventInit": [], - "CodecState": [], - "CollectedClientData": [], - "ColorSpaceConversion": [], - "Comment": [ - "CharacterData", - "EventTarget", - "Node" - ], - "CompositeOperation": [], - "CompositionEvent": [ - "Event", - "UiEvent" - ], - "CompositionEventInit": [], - "CompressionFormat": [], - "CompressionStream": [], - "ComputedEffectTiming": [], - "ConnStatusDict": [], - "ConnectionType": [], - "ConsoleCounter": [], - "ConsoleCounterError": [], - "ConsoleEvent": [], - "ConsoleInstance": [], - "ConsoleInstanceOptions": [], - "ConsoleLevel": [], - "ConsoleLogLevel": [], - "ConsoleProfileEvent": [], - "ConsoleStackEntry": [], - "ConsoleTimerError": [], - "ConsoleTimerLogOrEnd": [], - "ConsoleTimerStart": [], - "ConstantSourceNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "ConstantSourceOptions": [], - "ConstrainBooleanParameters": [], - "ConstrainDomStringParameters": [], - "ConstrainDoubleRange": [], - "ConstrainLongRange": [], - "ContextAttributes2d": [], - "ConvertCoordinateOptions": [], - "ConvolverNode": [ - "AudioNode", - "EventTarget" - ], - "ConvolverOptions": [], - "Coordinates": [], - "CountQueuingStrategy": [], - "Credential": [], - "CredentialCreationOptions": [], - "CredentialRequestOptions": [], - "CredentialsContainer": [], - "Crypto": [], - "CryptoKey": [], - "CryptoKeyPair": [], - "CssAnimation": [ - "Animation", - "EventTarget" - ], - "CssBoxType": [], - "CssConditionRule": [ - "CssGroupingRule", - "CssRule" - ], - "CssCounterStyleRule": [ - "CssRule" - ], - "CssFontFaceRule": [ - "CssRule" - ], - "CssFontFeatureValuesRule": [ - "CssRule" - ], - "CssGroupingRule": [ - "CssRule" - ], - "CssImportRule": [ - "CssRule" - ], - "CssKeyframeRule": [ - "CssRule" - ], - "CssKeyframesRule": [ - "CssRule" - ], - "CssMediaRule": [ - "CssConditionRule", - "CssGroupingRule", - "CssRule" - ], - "CssNamespaceRule": [ - "CssRule" - ], - "CssPageRule": [ - "CssRule" - ], - "CssPseudoElement": [], - "CssRule": [], - "CssRuleList": [], - "CssStyleDeclaration": [], - "CssStyleRule": [ - "CssRule" - ], - "CssStyleSheet": [ - "StyleSheet" - ], - "CssStyleSheetParsingMode": [], - "CssSupportsRule": [ - "CssConditionRule", - "CssGroupingRule", - "CssRule" - ], - "CssTransition": [ - "Animation", - "EventTarget" - ], - "CustomElementRegistry": [], - "CustomEvent": [ - "Event" - ], - "CustomEventInit": [], - "DataTransfer": [], - "DataTransferItem": [], - "DataTransferItemList": [], - "DateTimeValue": [], - "DecoderDoctorNotification": [], - "DecoderDoctorNotificationType": [], - "DecompressionStream": [], - "DedicatedWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "DelayNode": [ - "AudioNode", - "EventTarget" - ], - "DelayOptions": [], - "DeviceAcceleration": [], - "DeviceAccelerationInit": [], - "DeviceLightEvent": [ - "Event" - ], - "DeviceLightEventInit": [], - "DeviceMotionEvent": [ - "Event" - ], - "DeviceMotionEventInit": [], - "DeviceOrientationEvent": [ - "Event" - ], - "DeviceOrientationEventInit": [], - "DeviceProximityEvent": [ - "Event" - ], - "DeviceProximityEventInit": [], - "DeviceRotationRate": [], - "DeviceRotationRateInit": [], - "DhKeyDeriveParams": [], - "DirectionSetting": [], - "Directory": [], - "DirectoryPickerOptions": [], - "DisplayMediaStreamConstraints": [], - "DisplayNameOptions": [], - "DisplayNameResult": [], - "DistanceModelType": [], - "DnsCacheDict": [], - "DnsCacheEntry": [], - "DnsLookupDict": [], - "Document": [ - "EventTarget", - "Node" - ], - "DocumentFragment": [ - "EventTarget", - "Node" - ], - "DocumentTimeline": [ - "AnimationTimeline" - ], - "DocumentTimelineOptions": [], - "DocumentType": [ - "EventTarget", - "Node" - ], - "DomError": [], - "DomException": [], - "DomImplementation": [], - "DomMatrix": [ - "DomMatrixReadOnly" - ], - "DomMatrix2dInit": [], - "DomMatrixInit": [], - "DomMatrixReadOnly": [], - "DomParser": [], - "DomPoint": [ - "DomPointReadOnly" - ], - "DomPointInit": [], - "DomPointReadOnly": [], - "DomQuad": [], - "DomQuadInit": [], - "DomQuadJson": [], - "DomRect": [ - "DomRectReadOnly" - ], - "DomRectInit": [], - "DomRectList": [], - "DomRectReadOnly": [], - "DomRequest": [ - "EventTarget" - ], - "DomRequestReadyState": [], - "DomStringList": [], - "DomStringMap": [], - "DomTokenList": [], - "DomWindowResizeEventDetail": [], - "DragEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "DragEventInit": [], - "DynamicsCompressorNode": [ - "AudioNode", - "EventTarget" - ], - "DynamicsCompressorOptions": [], - "EcKeyAlgorithm": [], - "EcKeyGenParams": [], - "EcKeyImportParams": [], - "EcdhKeyDeriveParams": [], - "EcdsaParams": [], - "EffectTiming": [], - "Element": [ - "EventTarget", - "Node" - ], - "ElementCreationOptions": [], - "ElementDefinitionOptions": [], - "EncodedAudioChunk": [], - "EncodedAudioChunkInit": [], - "EncodedAudioChunkMetadata": [], - "EncodedAudioChunkType": [], - "EncodedVideoChunk": [], - "EncodedVideoChunkInit": [], - "EncodedVideoChunkMetadata": [], - "EncodedVideoChunkType": [], - "EndingTypes": [], - "ErrorCallback": [], - "ErrorEvent": [ - "Event" - ], - "ErrorEventInit": [], - "Event": [], - "EventInit": [], - "EventListener": [], - "EventListenerOptions": [], - "EventModifierInit": [], - "EventSource": [ - "EventTarget" - ], - "EventSourceInit": [], - "EventTarget": [], - "Exception": [], - "ExtBlendMinmax": [], - "ExtColorBufferFloat": [], - "ExtColorBufferHalfFloat": [], - "ExtDisjointTimerQuery": [], - "ExtFragDepth": [], - "ExtSRgb": [], - "ExtShaderTextureLod": [], - "ExtTextureFilterAnisotropic": [], - "ExtTextureNorm16": [], - "ExtendableEvent": [ - "Event" - ], - "ExtendableEventInit": [], - "ExtendableMessageEvent": [ - "Event", - "ExtendableEvent" - ], - "ExtendableMessageEventInit": [], - "External": [], - "FakePluginMimeEntry": [], - "FakePluginTagInit": [], - "FetchEvent": [ - "Event", - "ExtendableEvent" - ], - "FetchEventInit": [], - "FetchObserver": [ - "EventTarget" - ], - "FetchReadableStreamReadDataArray": [], - "FetchReadableStreamReadDataDone": [], - "FetchState": [], - "File": [ - "Blob" - ], - "FileCallback": [], - "FileList": [], - "FilePickerAcceptType": [], - "FilePickerOptions": [], - "FilePropertyBag": [], - "FileReader": [ - "EventTarget" - ], - "FileReaderSync": [], - "FileSystem": [], - "FileSystemCreateWritableOptions": [], - "FileSystemDirectoryEntry": [ - "FileSystemEntry" - ], - "FileSystemDirectoryHandle": [ - "FileSystemHandle" - ], - "FileSystemDirectoryReader": [], - "FileSystemEntriesCallback": [], - "FileSystemEntry": [], - "FileSystemEntryCallback": [], - "FileSystemFileEntry": [ - "FileSystemEntry" - ], - "FileSystemFileHandle": [ - "FileSystemHandle" - ], - "FileSystemFlags": [], - "FileSystemGetDirectoryOptions": [], - "FileSystemGetFileOptions": [], - "FileSystemHandle": [], - "FileSystemHandleKind": [], - "FileSystemHandlePermissionDescriptor": [], - "FileSystemPermissionDescriptor": [], - "FileSystemPermissionMode": [], - "FileSystemReadWriteOptions": [], - "FileSystemRemoveOptions": [], - "FileSystemSyncAccessHandle": [], - "FileSystemWritableFileStream": [ - "WritableStream" - ], - "FillMode": [], - "FlashClassification": [], - "FlowControlType": [], - "FocusEvent": [ - "Event", - "UiEvent" - ], - "FocusEventInit": [], - "FontData": [], - "FontFace": [], - "FontFaceDescriptors": [], - "FontFaceLoadStatus": [], - "FontFaceSet": [ - "EventTarget" - ], - "FontFaceSetIterator": [], - "FontFaceSetIteratorResult": [], - "FontFaceSetLoadEvent": [ - "Event" - ], - "FontFaceSetLoadEventInit": [], - "FontFaceSetLoadStatus": [], - "FormData": [], - "FrameType": [], - "FuzzingFunctions": [], - "GainNode": [ - "AudioNode", - "EventTarget" - ], - "GainOptions": [], - "Gamepad": [], - "GamepadAxisMoveEvent": [ - "Event", - "GamepadEvent" - ], - "GamepadAxisMoveEventInit": [], - "GamepadButton": [], - "GamepadButtonEvent": [ - "Event", - "GamepadEvent" - ], - "GamepadButtonEventInit": [], - "GamepadEvent": [ - "Event" - ], - "GamepadEventInit": [], - "GamepadHand": [], - "GamepadHapticActuator": [], - "GamepadHapticActuatorType": [], - "GamepadMappingType": [], - "GamepadPose": [], - "GamepadServiceTest": [], - "Geolocation": [], - "GetAnimationsOptions": [], - "GetRootNodeOptions": [], - "GetUserMediaRequest": [], - "Gpu": [], - "GpuAdapter": [], - "GpuAdapterInfo": [], - "GpuAddressMode": [], - "GpuAutoLayoutMode": [], - "GpuBindGroup": [], - "GpuBindGroupDescriptor": [], - "GpuBindGroupEntry": [], - "GpuBindGroupLayout": [], - "GpuBindGroupLayoutDescriptor": [], - "GpuBindGroupLayoutEntry": [], - "GpuBlendComponent": [], - "GpuBlendFactor": [], - "GpuBlendOperation": [], - "GpuBlendState": [], - "GpuBuffer": [], - "GpuBufferBinding": [], - "GpuBufferBindingLayout": [], - "GpuBufferBindingType": [], - "GpuBufferDescriptor": [], - "GpuBufferMapState": [], - "GpuCanvasAlphaMode": [], - "GpuCanvasConfiguration": [], - "GpuCanvasContext": [], - "GpuColorDict": [], - "GpuColorTargetState": [], - "GpuCommandBuffer": [], - "GpuCommandBufferDescriptor": [], - "GpuCommandEncoder": [], - "GpuCommandEncoderDescriptor": [], - "GpuCompareFunction": [], - "GpuCompilationInfo": [], - "GpuCompilationMessage": [], - "GpuCompilationMessageType": [], - "GpuComputePassDescriptor": [], - "GpuComputePassEncoder": [], - "GpuComputePassTimestampWrites": [], - "GpuComputePipeline": [], - "GpuComputePipelineDescriptor": [], - "GpuCullMode": [], - "GpuDepthStencilState": [], - "GpuDevice": [ - "EventTarget" - ], - "GpuDeviceDescriptor": [], - "GpuDeviceLostInfo": [], - "GpuDeviceLostReason": [], - "GpuError": [], - "GpuErrorFilter": [], - "GpuExtent3dDict": [], - "GpuExternalTexture": [], - "GpuExternalTextureBindingLayout": [], - "GpuExternalTextureDescriptor": [], - "GpuFeatureName": [], - "GpuFilterMode": [], - "GpuFragmentState": [], - "GpuFrontFace": [], - "GpuImageCopyBuffer": [], - "GpuImageCopyExternalImage": [], - "GpuImageCopyTexture": [], - "GpuImageCopyTextureTagged": [], - "GpuImageDataLayout": [], - "GpuIndexFormat": [], - "GpuInternalError": [ - "GpuError" - ], - "GpuLoadOp": [], - "GpuMipmapFilterMode": [], - "GpuMultisampleState": [], - "GpuObjectDescriptorBase": [], - "GpuOrigin2dDict": [], - "GpuOrigin3dDict": [], - "GpuOutOfMemoryError": [ - "GpuError" - ], - "GpuPipelineDescriptorBase": [], - "GpuPipelineError": [ - "DomException" - ], - "GpuPipelineErrorInit": [], - "GpuPipelineErrorReason": [], - "GpuPipelineLayout": [], - "GpuPipelineLayoutDescriptor": [], - "GpuPowerPreference": [], - "GpuPrimitiveState": [], - "GpuPrimitiveTopology": [], - "GpuProgrammableStage": [], - "GpuQuerySet": [], - "GpuQuerySetDescriptor": [], - "GpuQueryType": [], - "GpuQueue": [], - "GpuQueueDescriptor": [], - "GpuRenderBundle": [], - "GpuRenderBundleDescriptor": [], - "GpuRenderBundleEncoder": [], - "GpuRenderBundleEncoderDescriptor": [], - "GpuRenderPassColorAttachment": [], - "GpuRenderPassDepthStencilAttachment": [], - "GpuRenderPassDescriptor": [], - "GpuRenderPassEncoder": [], - "GpuRenderPassLayout": [], - "GpuRenderPassTimestampWrites": [], - "GpuRenderPipeline": [], - "GpuRenderPipelineDescriptor": [], - "GpuRequestAdapterOptions": [], - "GpuSampler": [], - "GpuSamplerBindingLayout": [], - "GpuSamplerBindingType": [], - "GpuSamplerDescriptor": [], - "GpuShaderModule": [], - "GpuShaderModuleCompilationHint": [], - "GpuShaderModuleDescriptor": [], - "GpuStencilFaceState": [], - "GpuStencilOperation": [], - "GpuStorageTextureAccess": [], - "GpuStorageTextureBindingLayout": [], - "GpuStoreOp": [], - "GpuSupportedFeatures": [], - "GpuSupportedLimits": [], - "GpuTexture": [], - "GpuTextureAspect": [], - "GpuTextureBindingLayout": [], - "GpuTextureDescriptor": [], - "GpuTextureDimension": [], - "GpuTextureFormat": [], - "GpuTextureSampleType": [], - "GpuTextureView": [], - "GpuTextureViewDescriptor": [], - "GpuTextureViewDimension": [], - "GpuUncapturedErrorEvent": [ - "Event" - ], - "GpuUncapturedErrorEventInit": [], - "GpuValidationError": [ - "GpuError" - ], - "GpuVertexAttribute": [], - "GpuVertexBufferLayout": [], - "GpuVertexFormat": [], - "GpuVertexState": [], - "GpuVertexStepMode": [], - "GroupedHistoryEventInit": [], - "HalfOpenInfoDict": [], - "HardwareAcceleration": [], - "HashChangeEvent": [ - "Event" - ], - "HashChangeEventInit": [], - "Headers": [], - "HeadersGuardEnum": [], - "Hid": [ - "EventTarget" - ], - "HidCollectionInfo": [], - "HidConnectionEvent": [ - "Event" - ], - "HidConnectionEventInit": [], - "HidDevice": [ - "EventTarget" - ], - "HidDeviceFilter": [], - "HidDeviceRequestOptions": [], - "HidInputReportEvent": [ - "Event" - ], - "HidInputReportEventInit": [], - "HidReportInfo": [], - "HidReportItem": [], - "HidUnitSystem": [], - "HiddenPluginEventInit": [], - "History": [], - "HitRegionOptions": [], - "HkdfParams": [], - "HmacDerivedKeyParams": [], - "HmacImportParams": [], - "HmacKeyAlgorithm": [], - "HmacKeyGenParams": [], - "HtmlAllCollection": [], - "HtmlAnchorElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlAreaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlAudioElement": [ - "Element", - "EventTarget", - "HtmlElement", - "HtmlMediaElement", - "Node" - ], - "HtmlBaseElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlBodyElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlBrElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlButtonElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlCanvasElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlCollection": [], - "HtmlDListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDataElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDataListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDetailsElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDialogElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDirectoryElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDivElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlDocument": [ - "Document", - "EventTarget", - "Node" - ], - "HtmlElement": [ - "Element", - "EventTarget", - "Node" - ], - "HtmlEmbedElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFieldSetElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFontElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFormControlsCollection": [ - "HtmlCollection" - ], - "HtmlFormElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFrameElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlFrameSetElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHeadElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHeadingElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHrElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlHtmlElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlIFrameElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlImageElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlInputElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLabelElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLegendElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLiElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlLinkElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMapElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMediaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMenuElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMenuItemElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMetaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlMeterElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlModElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlObjectElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptGroupElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlOptionsCollection": [ - "HtmlCollection" - ], - "HtmlOutputElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlParagraphElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlParamElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlPictureElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlPreElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlProgressElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlQuoteElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlScriptElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSelectElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSlotElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSourceElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlSpanElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlStyleElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableCaptionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableCellElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableColElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableRowElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTableSectionElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTemplateElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTextAreaElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTimeElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTitleElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlTrackElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlUListElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlUnknownElement": [ - "Element", - "EventTarget", - "HtmlElement", - "Node" - ], - "HtmlVideoElement": [ - "Element", - "EventTarget", - "HtmlElement", - "HtmlMediaElement", - "Node" - ], - "HttpConnDict": [], - "HttpConnInfo": [], - "HttpConnectionElement": [], - "IdbCursor": [], - "IdbCursorDirection": [], - "IdbCursorWithValue": [ - "IdbCursor" - ], - "IdbDatabase": [ - "EventTarget" - ], - "IdbFactory": [], - "IdbFileHandle": [ - "EventTarget" - ], - "IdbFileMetadataParameters": [], - "IdbFileRequest": [ - "DomRequest", - "EventTarget" - ], - "IdbIndex": [], - "IdbIndexParameters": [], - "IdbKeyRange": [], - "IdbLocaleAwareKeyRange": [ - "IdbKeyRange" - ], - "IdbMutableFile": [ - "EventTarget" - ], - "IdbObjectStore": [], - "IdbObjectStoreParameters": [], - "IdbOpenDbOptions": [], - "IdbOpenDbRequest": [ - "EventTarget", - "IdbRequest" - ], - "IdbRequest": [ - "EventTarget" - ], - "IdbRequestReadyState": [], - "IdbTransaction": [ - "EventTarget" - ], - "IdbTransactionMode": [], - "IdbVersionChangeEvent": [ - "Event" - ], - "IdbVersionChangeEventInit": [], - "IdleDeadline": [], - "IdleRequestOptions": [], - "IirFilterNode": [ - "AudioNode", - "EventTarget" - ], - "IirFilterOptions": [], - "ImageBitmap": [], - "ImageBitmapOptions": [], - "ImageBitmapRenderingContext": [], - "ImageCapture": [], - "ImageCaptureError": [], - "ImageCaptureErrorEvent": [ - "Event" - ], - "ImageCaptureErrorEventInit": [], - "ImageData": [], - "ImageDecodeOptions": [], - "ImageDecodeResult": [], - "ImageDecoder": [], - "ImageDecoderInit": [], - "ImageEncodeOptions": [], - "ImageOrientation": [], - "ImageTrack": [ - "EventTarget" - ], - "ImageTrackList": [], - "InputEvent": [ - "Event", - "UiEvent" - ], - "InputEventInit": [], - "IntersectionObserver": [], - "IntersectionObserverEntry": [], - "IntersectionObserverEntryInit": [], - "IntersectionObserverInit": [], - "IntlUtils": [], - "IsInputPendingOptions": [], - "IterableKeyAndValueResult": [], - "IterableKeyOrValueResult": [], - "IterationCompositeOperation": [], - "JsonWebKey": [], - "KeyAlgorithm": [], - "KeyEvent": [], - "KeyIdsInitData": [], - "KeyboardEvent": [ - "Event", - "UiEvent" - ], - "KeyboardEventInit": [], - "KeyframeAnimationOptions": [], - "KeyframeEffect": [ - "AnimationEffect" - ], - "KeyframeEffectOptions": [], - "L10nElement": [], - "L10nValue": [], - "LatencyMode": [], - "LifecycleCallbacks": [], - "LineAlignSetting": [], - "ListBoxObject": [], - "LocalMediaStream": [ - "EventTarget", - "MediaStream" - ], - "LocaleInfo": [], - "Location": [], - "Lock": [], - "LockInfo": [], - "LockManager": [], - "LockManagerSnapshot": [], - "LockMode": [], - "LockOptions": [], - "MediaCapabilities": [], - "MediaCapabilitiesInfo": [], - "MediaConfiguration": [], - "MediaDecodingConfiguration": [], - "MediaDecodingType": [], - "MediaDeviceInfo": [], - "MediaDeviceKind": [], - "MediaDevices": [ - "EventTarget" - ], - "MediaElementAudioSourceNode": [ - "AudioNode", - "EventTarget" - ], - "MediaElementAudioSourceOptions": [], - "MediaEncodingConfiguration": [], - "MediaEncodingType": [], - "MediaEncryptedEvent": [ - "Event" - ], - "MediaError": [], - "MediaImage": [], - "MediaKeyError": [ - "Event" - ], - "MediaKeyMessageEvent": [ - "Event" - ], - "MediaKeyMessageEventInit": [], - "MediaKeyMessageType": [], - "MediaKeyNeededEventInit": [], - "MediaKeySession": [ - "EventTarget" - ], - "MediaKeySessionType": [], - "MediaKeyStatus": [], - "MediaKeyStatusMap": [], - "MediaKeySystemAccess": [], - "MediaKeySystemConfiguration": [], - "MediaKeySystemMediaCapability": [], - "MediaKeySystemStatus": [], - "MediaKeys": [], - "MediaKeysPolicy": [], - "MediaKeysRequirement": [], - "MediaList": [], - "MediaMetadata": [], - "MediaMetadataInit": [], - "MediaPositionState": [], - "MediaQueryList": [ - "EventTarget" - ], - "MediaQueryListEvent": [ - "Event" - ], - "MediaQueryListEventInit": [], - "MediaRecorder": [ - "EventTarget" - ], - "MediaRecorderErrorEvent": [ - "Event" - ], - "MediaRecorderErrorEventInit": [], - "MediaRecorderOptions": [], - "MediaSession": [], - "MediaSessionAction": [], - "MediaSessionActionDetails": [], - "MediaSessionPlaybackState": [], - "MediaSource": [ - "EventTarget" - ], - "MediaSourceEndOfStreamError": [], - "MediaSourceEnum": [], - "MediaSourceReadyState": [], - "MediaStream": [ - "EventTarget" - ], - "MediaStreamAudioDestinationNode": [ - "AudioNode", - "EventTarget" - ], - "MediaStreamAudioSourceNode": [ - "AudioNode", - "EventTarget" - ], - "MediaStreamAudioSourceOptions": [], - "MediaStreamConstraints": [], - "MediaStreamError": [], - "MediaStreamEvent": [ - "Event" - ], - "MediaStreamEventInit": [], - "MediaStreamTrack": [ - "EventTarget" - ], - "MediaStreamTrackEvent": [ - "Event" - ], - "MediaStreamTrackEventInit": [], - "MediaStreamTrackGenerator": [ - "EventTarget", - "MediaStreamTrack" - ], - "MediaStreamTrackGeneratorInit": [], - "MediaStreamTrackProcessor": [], - "MediaStreamTrackProcessorInit": [], - "MediaStreamTrackState": [], - "MediaTrackConstraintSet": [], - "MediaTrackConstraints": [], - "MediaTrackSettings": [], - "MediaTrackSupportedConstraints": [], - "MemoryAttribution": [], - "MemoryAttributionContainer": [], - "MemoryBreakdownEntry": [], - "MemoryMeasurement": [], - "MessageChannel": [], - "MessageEvent": [ - "Event" - ], - "MessageEventInit": [], - "MessagePort": [ - "EventTarget" - ], - "MidiAccess": [ - "EventTarget" - ], - "MidiConnectionEvent": [ - "Event" - ], - "MidiConnectionEventInit": [], - "MidiInput": [ - "EventTarget", - "MidiPort" - ], - "MidiInputMap": [], - "MidiMessageEvent": [ - "Event" - ], - "MidiMessageEventInit": [], - "MidiOptions": [], - "MidiOutput": [ - "EventTarget", - "MidiPort" - ], - "MidiOutputMap": [], - "MidiPort": [ - "EventTarget" - ], - "MidiPortConnectionState": [], - "MidiPortDeviceState": [], - "MidiPortType": [], - "MimeType": [], - "MimeTypeArray": [], - "MouseEvent": [ - "Event", - "UiEvent" - ], - "MouseEventInit": [], - "MouseScrollEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "MozDebug": [], - "MutationEvent": [ - "Event" - ], - "MutationObserver": [], - "MutationObserverInit": [], - "MutationObservingInfo": [], - "MutationRecord": [], - "NamedNodeMap": [], - "NativeOsFileReadOptions": [], - "NativeOsFileWriteAtomicOptions": [], - "NavigationType": [], - "Navigator": [], - "NavigatorAutomationInformation": [], - "NetworkCommandOptions": [], - "NetworkInformation": [ - "EventTarget" - ], - "NetworkResultOptions": [], - "Node": [ - "EventTarget" - ], - "NodeFilter": [], - "NodeIterator": [], - "NodeList": [], - "Notification": [ - "EventTarget" - ], - "NotificationAction": [], - "NotificationDirection": [], - "NotificationEvent": [ - "Event", - "ExtendableEvent" - ], - "NotificationEventInit": [], - "NotificationOptions": [], - "NotificationPermission": [], - "ObserverCallback": [], - "OesElementIndexUint": [], - "OesStandardDerivatives": [], - "OesTextureFloat": [], - "OesTextureFloatLinear": [], - "OesTextureHalfFloat": [], - "OesTextureHalfFloatLinear": [], - "OesVertexArrayObject": [], - "OfflineAudioCompletionEvent": [ - "Event" - ], - "OfflineAudioCompletionEventInit": [], - "OfflineAudioContext": [ - "BaseAudioContext", - "EventTarget" - ], - "OfflineAudioContextOptions": [], - "OfflineResourceList": [ - "EventTarget" - ], - "OffscreenCanvas": [ - "EventTarget" - ], - "OffscreenCanvasRenderingContext2d": [], - "OpenFilePickerOptions": [], - "OpenWindowEventDetail": [], - "OptionalEffectTiming": [], - "OrientationLockType": [], - "OrientationType": [], - "OscillatorNode": [ - "AudioNode", - "AudioScheduledSourceNode", - "EventTarget" - ], - "OscillatorOptions": [], - "OscillatorType": [], - "OverSampleType": [], - "OvrMultiview2": [], - "PageTransitionEvent": [ - "Event" - ], - "PageTransitionEventInit": [], - "PaintRequest": [], - "PaintRequestList": [], - "PaintWorkletGlobalScope": [ - "WorkletGlobalScope" - ], - "PannerNode": [ - "AudioNode", - "EventTarget" - ], - "PannerOptions": [], - "PanningModelType": [], - "ParityType": [], - "Path2d": [], - "PaymentAddress": [], - "PaymentComplete": [], - "PaymentMethodChangeEvent": [ - "Event", - "PaymentRequestUpdateEvent" - ], - "PaymentMethodChangeEventInit": [], - "PaymentRequestUpdateEvent": [ - "Event" - ], - "PaymentRequestUpdateEventInit": [], - "PaymentResponse": [], - "Pbkdf2Params": [], - "PcImplIceConnectionState": [], - "PcImplIceGatheringState": [], - "PcImplSignalingState": [], - "PcObserverStateType": [], - "Performance": [ - "EventTarget" - ], - "PerformanceEntry": [], - "PerformanceEntryEventInit": [], - "PerformanceEntryFilterOptions": [], - "PerformanceMark": [ - "PerformanceEntry" - ], - "PerformanceMeasure": [ - "PerformanceEntry" - ], - "PerformanceNavigation": [], - "PerformanceNavigationTiming": [ - "PerformanceEntry", - "PerformanceResourceTiming" - ], - "PerformanceObserver": [], - "PerformanceObserverEntryList": [], - "PerformanceObserverInit": [], - "PerformanceResourceTiming": [ - "PerformanceEntry" - ], - "PerformanceServerTiming": [], - "PerformanceTiming": [], - "PeriodicWave": [], - "PeriodicWaveConstraints": [], - "PeriodicWaveOptions": [], - "PermissionDescriptor": [], - "PermissionName": [], - "PermissionState": [], - "PermissionStatus": [ - "EventTarget" - ], - "Permissions": [], - "PlaneLayout": [], - "PlaybackDirection": [], - "Plugin": [], - "PluginArray": [], - "PluginCrashedEventInit": [], - "PointerEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "PointerEventInit": [], - "PopStateEvent": [ - "Event" - ], - "PopStateEventInit": [], - "PopupBlockedEvent": [ - "Event" - ], - "PopupBlockedEventInit": [], - "Position": [], - "PositionAlignSetting": [], - "PositionError": [], - "PositionOptions": [], - "PremultiplyAlpha": [], - "Presentation": [], - "PresentationAvailability": [ - "EventTarget" - ], - "PresentationConnection": [ - "EventTarget" - ], - "PresentationConnectionAvailableEvent": [ - "Event" - ], - "PresentationConnectionAvailableEventInit": [], - "PresentationConnectionBinaryType": [], - "PresentationConnectionCloseEvent": [ - "Event" - ], - "PresentationConnectionCloseEventInit": [], - "PresentationConnectionClosedReason": [], - "PresentationConnectionList": [ - "EventTarget" - ], - "PresentationConnectionState": [], - "PresentationReceiver": [], - "PresentationRequest": [ - "EventTarget" - ], - "PresentationStyle": [], - "ProcessingInstruction": [ - "CharacterData", - "EventTarget", - "Node" - ], - "ProfileTimelineLayerRect": [], - "ProfileTimelineMarker": [], - "ProfileTimelineMessagePortOperationType": [], - "ProfileTimelineStackFrame": [], - "ProfileTimelineWorkerOperationType": [], - "ProgressEvent": [ - "Event" - ], - "ProgressEventInit": [], - "PromiseNativeHandler": [], - "PromiseRejectionEvent": [ - "Event" - ], - "PromiseRejectionEventInit": [], - "PublicKeyCredential": [ - "Credential" - ], - "PublicKeyCredentialCreationOptions": [], - "PublicKeyCredentialDescriptor": [], - "PublicKeyCredentialEntity": [], - "PublicKeyCredentialParameters": [], - "PublicKeyCredentialRequestOptions": [], - "PublicKeyCredentialRpEntity": [], - "PublicKeyCredentialType": [], - "PublicKeyCredentialUserEntity": [], - "PushEncryptionKeyName": [], - "PushEvent": [ - "Event", - "ExtendableEvent" - ], - "PushEventInit": [], - "PushManager": [], - "PushMessageData": [], - "PushPermissionState": [], - "PushSubscription": [], - "PushSubscriptionInit": [], - "PushSubscriptionJson": [], - "PushSubscriptionKeys": [], - "PushSubscriptionOptions": [], - "PushSubscriptionOptionsInit": [], - "QueryOptions": [], - "QueuingStrategy": [], - "QueuingStrategyInit": [], - "RadioNodeList": [ - "NodeList" - ], - "Range": [], - "RcwnPerfStats": [], - "RcwnStatus": [], - "ReadableByteStreamController": [], - "ReadableStream": [], - "ReadableStreamByobReader": [], - "ReadableStreamByobRequest": [], - "ReadableStreamDefaultController": [], - "ReadableStreamDefaultReader": [], - "ReadableStreamGetReaderOptions": [], - "ReadableStreamIteratorOptions": [], - "ReadableStreamReadResult": [], - "ReadableStreamReaderMode": [], - "ReadableStreamType": [], - "ReadableWritablePair": [], - "RecordingState": [], - "ReferrerPolicy": [], - "RegisterRequest": [], - "RegisterResponse": [], - "RegisteredKey": [], - "RegistrationOptions": [], - "Request": [], - "RequestCache": [], - "RequestCredentials": [], - "RequestDestination": [], - "RequestDeviceOptions": [], - "RequestInit": [], - "RequestMediaKeySystemAccessNotification": [], - "RequestMode": [], - "RequestRedirect": [], - "ResizeObserver": [], - "ResizeObserverBoxOptions": [], - "ResizeObserverEntry": [], - "ResizeObserverOptions": [], - "ResizeObserverSize": [], - "ResizeQuality": [], - "Response": [], - "ResponseInit": [], - "ResponseType": [], - "RsaHashedImportParams": [], - "RsaOaepParams": [], - "RsaOtherPrimesInfo": [], - "RsaPssParams": [], - "RtcAnswerOptions": [], - "RtcBundlePolicy": [], - "RtcCertificate": [], - "RtcCertificateExpiration": [], - "RtcCodecStats": [], - "RtcConfiguration": [], - "RtcDataChannel": [ - "EventTarget" - ], - "RtcDataChannelEvent": [ - "Event" - ], - "RtcDataChannelEventInit": [], - "RtcDataChannelInit": [], - "RtcDataChannelState": [], - "RtcDataChannelType": [], - "RtcDegradationPreference": [], - "RtcFecParameters": [], - "RtcIceCandidate": [], - "RtcIceCandidateInit": [], - "RtcIceCandidatePairStats": [], - "RtcIceCandidateStats": [], - "RtcIceComponentStats": [], - "RtcIceConnectionState": [], - "RtcIceCredentialType": [], - "RtcIceGatheringState": [], - "RtcIceServer": [], - "RtcIceTransportPolicy": [], - "RtcIdentityAssertion": [], - "RtcIdentityAssertionResult": [], - "RtcIdentityProvider": [], - "RtcIdentityProviderDetails": [], - "RtcIdentityProviderOptions": [], - "RtcIdentityProviderRegistrar": [], - "RtcIdentityValidationResult": [], - "RtcInboundRtpStreamStats": [], - "RtcMediaStreamStats": [], - "RtcMediaStreamTrackStats": [], - "RtcOfferAnswerOptions": [], - "RtcOfferOptions": [], - "RtcOutboundRtpStreamStats": [], - "RtcPeerConnection": [ - "EventTarget" - ], - "RtcPeerConnectionIceErrorEvent": [ - "Event" - ], - "RtcPeerConnectionIceEvent": [ - "Event" - ], - "RtcPeerConnectionIceEventInit": [], - "RtcPeerConnectionState": [], - "RtcPriorityType": [], - "RtcRtcpParameters": [], - "RtcRtpCapabilities": [], - "RtcRtpCodecCapability": [], - "RtcRtpCodecParameters": [], - "RtcRtpContributingSource": [], - "RtcRtpEncodingParameters": [], - "RtcRtpHeaderExtensionCapability": [], - "RtcRtpHeaderExtensionParameters": [], - "RtcRtpParameters": [], - "RtcRtpReceiver": [], - "RtcRtpSender": [], - "RtcRtpSourceEntry": [], - "RtcRtpSourceEntryType": [], - "RtcRtpSynchronizationSource": [], - "RtcRtpTransceiver": [], - "RtcRtpTransceiverDirection": [], - "RtcRtpTransceiverInit": [], - "RtcRtxParameters": [], - "RtcSdpType": [], - "RtcSessionDescription": [], - "RtcSessionDescriptionInit": [], - "RtcSignalingState": [], - "RtcStats": [], - "RtcStatsIceCandidatePairState": [], - "RtcStatsIceCandidateType": [], - "RtcStatsReport": [], - "RtcStatsReportInternal": [], - "RtcStatsType": [], - "RtcTrackEvent": [ - "Event" - ], - "RtcTrackEventInit": [], - "RtcTransportStats": [], - "RtcdtmfSender": [ - "EventTarget" - ], - "RtcdtmfToneChangeEvent": [ - "Event" - ], - "RtcdtmfToneChangeEventInit": [], - "RtcrtpContributingSourceStats": [], - "RtcrtpStreamStats": [], - "SaveFilePickerOptions": [], - "Scheduler": [], - "SchedulerPostTaskOptions": [], - "Scheduling": [], - "Screen": [ - "EventTarget" - ], - "ScreenColorGamut": [], - "ScreenLuminance": [], - "ScreenOrientation": [ - "EventTarget" - ], - "ScriptProcessorNode": [ - "AudioNode", - "EventTarget" - ], - "ScrollAreaEvent": [ - "Event", - "UiEvent" - ], - "ScrollBehavior": [], - "ScrollBoxObject": [], - "ScrollIntoViewOptions": [], - "ScrollLogicalPosition": [], - "ScrollOptions": [], - "ScrollRestoration": [], - "ScrollSetting": [], - "ScrollState": [], - "ScrollToOptions": [], - "ScrollViewChangeEventInit": [], - "SecurityPolicyViolationEvent": [ - "Event" - ], - "SecurityPolicyViolationEventDisposition": [], - "SecurityPolicyViolationEventInit": [], - "Selection": [], - "SelectionMode": [], - "Serial": [ - "EventTarget" - ], - "SerialInputSignals": [], - "SerialOptions": [], - "SerialOutputSignals": [], - "SerialPort": [ - "EventTarget" - ], - "SerialPortFilter": [], - "SerialPortInfo": [], - "SerialPortRequestOptions": [], - "ServerSocketOptions": [], - "ServiceWorker": [ - "EventTarget" - ], - "ServiceWorkerContainer": [ - "EventTarget" - ], - "ServiceWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "ServiceWorkerRegistration": [ - "EventTarget" - ], - "ServiceWorkerState": [], - "ServiceWorkerUpdateViaCache": [], - "ShadowRoot": [ - "DocumentFragment", - "EventTarget", - "Node" - ], - "ShadowRootInit": [], - "ShadowRootMode": [], - "ShareData": [], - "SharedWorker": [ - "EventTarget" - ], - "SharedWorkerGlobalScope": [ - "EventTarget", - "WorkerGlobalScope" - ], - "SignResponse": [], - "SocketElement": [], - "SocketOptions": [], - "SocketReadyState": [], - "SocketsDict": [], - "SourceBuffer": [ - "EventTarget" - ], - "SourceBufferAppendMode": [], - "SourceBufferList": [ - "EventTarget" - ], - "SpeechGrammar": [], - "SpeechGrammarList": [], - "SpeechRecognition": [ - "EventTarget" - ], - "SpeechRecognitionAlternative": [], - "SpeechRecognitionError": [ - "Event" - ], - "SpeechRecognitionErrorCode": [], - "SpeechRecognitionErrorInit": [], - "SpeechRecognitionEvent": [ - "Event" - ], - "SpeechRecognitionEventInit": [], - "SpeechRecognitionResult": [], - "SpeechRecognitionResultList": [], - "SpeechSynthesis": [ - "EventTarget" - ], - "SpeechSynthesisErrorCode": [], - "SpeechSynthesisErrorEvent": [ - "Event", - "SpeechSynthesisEvent" - ], - "SpeechSynthesisErrorEventInit": [], - "SpeechSynthesisEvent": [ - "Event" - ], - "SpeechSynthesisEventInit": [], - "SpeechSynthesisUtterance": [ - "EventTarget" - ], - "SpeechSynthesisVoice": [], - "StereoPannerNode": [ - "AudioNode", - "EventTarget" - ], - "StereoPannerOptions": [], - "Storage": [], - "StorageEstimate": [], - "StorageEvent": [ - "Event" - ], - "StorageEventInit": [], - "StorageManager": [], - "StorageType": [], - "StreamPipeOptions": [], - "StyleRuleChangeEventInit": [], - "StyleSheet": [], - "StyleSheetApplicableStateChangeEventInit": [], - "StyleSheetChangeEventInit": [], - "StyleSheetList": [], - "SubmitEvent": [ - "Event" - ], - "SubmitEventInit": [], - "SubtleCrypto": [], - "SupportedType": [], - "SvcOutputMetadata": [], - "SvgAngle": [], - "SvgAnimateElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimateMotionElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimateTransformElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgAnimatedAngle": [], - "SvgAnimatedBoolean": [], - "SvgAnimatedEnumeration": [], - "SvgAnimatedInteger": [], - "SvgAnimatedLength": [], - "SvgAnimatedLengthList": [], - "SvgAnimatedNumber": [], - "SvgAnimatedNumberList": [], - "SvgAnimatedPreserveAspectRatio": [], - "SvgAnimatedRect": [], - "SvgAnimatedString": [], - "SvgAnimatedTransformList": [], - "SvgAnimationElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgBoundingBoxOptions": [], - "SvgCircleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgClipPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgComponentTransferFunctionElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgDefsElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgDescElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgElement": [ - "Element", - "EventTarget", - "Node" - ], - "SvgEllipseElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgFilterElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgForeignObjectElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgGeometryElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgGraphicsElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgImageElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgLength": [], - "SvgLengthList": [], - "SvgLineElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgLinearGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGradientElement" - ], - "SvgMarkerElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgMaskElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgMatrix": [], - "SvgMetadataElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgNumber": [], - "SvgNumberList": [], - "SvgPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPathSeg": [], - "SvgPathSegArcAbs": [ - "SvgPathSeg" - ], - "SvgPathSegArcRel": [ - "SvgPathSeg" - ], - "SvgPathSegClosePath": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicSmoothAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoCubicSmoothRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticRel": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticSmoothAbs": [ - "SvgPathSeg" - ], - "SvgPathSegCurvetoQuadraticSmoothRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoHorizontalAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoHorizontalRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoRel": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoVerticalAbs": [ - "SvgPathSeg" - ], - "SvgPathSegLinetoVerticalRel": [ - "SvgPathSeg" - ], - "SvgPathSegList": [], - "SvgPathSegMovetoAbs": [ - "SvgPathSeg" - ], - "SvgPathSegMovetoRel": [ - "SvgPathSeg" - ], - "SvgPatternElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgPoint": [], - "SvgPointList": [], - "SvgPolygonElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPolylineElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgPreserveAspectRatio": [], - "SvgRadialGradientElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGradientElement" - ], - "SvgRect": [], - "SvgRectElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGeometryElement", - "SvgGraphicsElement" - ], - "SvgScriptElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgSetElement": [ - "Element", - "EventTarget", - "Node", - "SvgAnimationElement", - "SvgElement" - ], - "SvgStopElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgStringList": [], - "SvgStyleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgSwitchElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgSymbolElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgTextContentElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgTextElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement", - "SvgTextPositioningElement" - ], - "SvgTextPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement" - ], - "SvgTextPositioningElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement" - ], - "SvgTitleElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgTransform": [], - "SvgTransformList": [], - "SvgUnitTypes": [], - "SvgUseElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgViewElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgZoomAndPan": [], - "SvgaElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgfeBlendElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeColorMatrixElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeComponentTransferElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeCompositeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeConvolveMatrixElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDiffuseLightingElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDisplacementMapElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDistantLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeDropShadowElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeFloodElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeFuncAElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncBElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncGElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeFuncRElement": [ - "Element", - "EventTarget", - "Node", - "SvgComponentTransferFunctionElement", - "SvgElement" - ], - "SvgfeGaussianBlurElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeImageElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMergeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMergeNodeElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeMorphologyElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeOffsetElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfePointLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeSpecularLightingElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeSpotLightElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeTileElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgfeTurbulenceElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvggElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgmPathElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement" - ], - "SvgsvgElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement" - ], - "SvgtSpanElement": [ - "Element", - "EventTarget", - "Node", - "SvgElement", - "SvgGraphicsElement", - "SvgTextContentElement", - "SvgTextPositioningElement" - ], - "TaskController": [ - "AbortController" - ], - "TaskControllerInit": [], - "TaskPriority": [], - "TaskPriorityChangeEvent": [ - "Event" - ], - "TaskPriorityChangeEventInit": [], - "TaskSignal": [ - "AbortSignal", - "EventTarget" - ], - "TaskSignalAnyInit": [], - "TcpReadyState": [], - "TcpServerSocket": [ - "EventTarget" - ], - "TcpServerSocketEvent": [ - "Event" - ], - "TcpServerSocketEventInit": [], - "TcpSocket": [ - "EventTarget" - ], - "TcpSocketBinaryType": [], - "TcpSocketErrorEvent": [ - "Event" - ], - "TcpSocketErrorEventInit": [], - "TcpSocketEvent": [ - "Event" - ], - "TcpSocketEventInit": [], - "Text": [ - "CharacterData", - "EventTarget", - "Node" - ], - "TextDecodeOptions": [], - "TextDecoder": [], - "TextDecoderOptions": [], - "TextEncoder": [], - "TextMetrics": [], - "TextTrack": [ - "EventTarget" - ], - "TextTrackCue": [ - "EventTarget" - ], - "TextTrackCueList": [], - "TextTrackKind": [], - "TextTrackList": [ - "EventTarget" - ], - "TextTrackMode": [], - "TimeEvent": [ - "Event" - ], - "TimeRanges": [], - "Touch": [], - "TouchEvent": [ - "Event", - "UiEvent" - ], - "TouchEventInit": [], - "TouchInit": [], - "TouchList": [], - "TrackEvent": [ - "Event" - ], - "TrackEventInit": [], - "TransformStream": [], - "TransformStreamDefaultController": [], - "Transformer": [], - "TransitionEvent": [ - "Event" - ], - "TransitionEventInit": [], - "Transport": [], - "TreeBoxObject": [], - "TreeCellInfo": [], - "TreeView": [], - "TreeWalker": [], - "U2f": [], - "U2fClientData": [], - "UdpMessageEventInit": [], - "UdpOptions": [], - "UiEvent": [ - "Event" - ], - "UiEventInit": [], - "UnderlyingSink": [], - "UnderlyingSource": [], - "Url": [], - "UrlSearchParams": [], - "Usb": [ - "EventTarget" - ], - "UsbAlternateInterface": [], - "UsbConfiguration": [], - "UsbConnectionEvent": [ - "Event" - ], - "UsbConnectionEventInit": [], - "UsbControlTransferParameters": [], - "UsbDevice": [], - "UsbDeviceFilter": [], - "UsbDeviceRequestOptions": [], - "UsbDirection": [], - "UsbEndpoint": [], - "UsbEndpointType": [], - "UsbInTransferResult": [], - "UsbInterface": [], - "UsbIsochronousInTransferPacket": [], - "UsbIsochronousInTransferResult": [], - "UsbIsochronousOutTransferPacket": [], - "UsbIsochronousOutTransferResult": [], - "UsbOutTransferResult": [], - "UsbPermissionDescriptor": [], - "UsbPermissionResult": [ - "EventTarget", - "PermissionStatus" - ], - "UsbPermissionStorage": [], - "UsbRecipient": [], - "UsbRequestType": [], - "UsbTransferStatus": [], - "UserActivation": [], - "UserProximityEvent": [ - "Event" - ], - "UserProximityEventInit": [], - "UserVerificationRequirement": [], - "ValidityState": [], - "ValueEvent": [ - "Event" - ], - "ValueEventInit": [], - "VideoColorPrimaries": [], - "VideoColorSpace": [], - "VideoColorSpaceInit": [], - "VideoConfiguration": [], - "VideoDecoder": [], - "VideoDecoderConfig": [], - "VideoDecoderInit": [], - "VideoDecoderSupport": [], - "VideoEncoder": [], - "VideoEncoderConfig": [], - "VideoEncoderEncodeOptions": [], - "VideoEncoderInit": [], - "VideoEncoderSupport": [], - "VideoFacingModeEnum": [], - "VideoFrame": [], - "VideoFrameBufferInit": [], - "VideoFrameCopyToOptions": [], - "VideoFrameInit": [], - "VideoMatrixCoefficients": [], - "VideoPixelFormat": [], - "VideoPlaybackQuality": [], - "VideoStreamTrack": [ - "EventTarget", - "MediaStreamTrack" - ], - "VideoTrack": [], - "VideoTrackList": [ - "EventTarget" - ], - "VideoTransferCharacteristics": [], - "ViewTransition": [], - "VisibilityState": [], - "VoidCallback": [], - "VrDisplay": [ - "EventTarget" - ], - "VrDisplayCapabilities": [], - "VrEye": [], - "VrEyeParameters": [], - "VrFieldOfView": [], - "VrFrameData": [], - "VrLayer": [], - "VrMockController": [], - "VrMockDisplay": [], - "VrPose": [], - "VrServiceTest": [], - "VrStageParameters": [], - "VrSubmitFrameResult": [], - "VttCue": [ - "EventTarget", - "TextTrackCue" - ], - "VttRegion": [], - "WakeLock": [], - "WakeLockSentinel": [ - "EventTarget" - ], - "WakeLockType": [], - "WatchAdvertisementsOptions": [], - "WaveShaperNode": [ - "AudioNode", - "EventTarget" - ], - "WaveShaperOptions": [], - "WebGl2RenderingContext": [], - "WebGlActiveInfo": [], - "WebGlBuffer": [], - "WebGlContextAttributes": [], - "WebGlContextEvent": [ - "Event" - ], - "WebGlContextEventInit": [], - "WebGlFramebuffer": [], - "WebGlPowerPreference": [], - "WebGlProgram": [], - "WebGlQuery": [], - "WebGlRenderbuffer": [], - "WebGlRenderingContext": [], - "WebGlSampler": [], - "WebGlShader": [], - "WebGlShaderPrecisionFormat": [], - "WebGlSync": [], - "WebGlTexture": [], - "WebGlTransformFeedback": [], - "WebGlUniformLocation": [], - "WebGlVertexArrayObject": [], - "WebKitCssMatrix": [ - "DomMatrix", - "DomMatrixReadOnly" - ], - "WebSocket": [ - "EventTarget" - ], - "WebSocketDict": [], - "WebSocketElement": [], - "WebTransport": [], - "WebTransportBidirectionalStream": [], - "WebTransportCloseInfo": [], - "WebTransportCongestionControl": [], - "WebTransportDatagramDuplexStream": [], - "WebTransportDatagramStats": [], - "WebTransportError": [ - "DomException" - ], - "WebTransportErrorOptions": [], - "WebTransportErrorSource": [], - "WebTransportHash": [], - "WebTransportOptions": [], - "WebTransportReceiveStream": [ - "ReadableStream" - ], - "WebTransportReceiveStreamStats": [], - "WebTransportReliabilityMode": [], - "WebTransportSendStream": [ - "WritableStream" - ], - "WebTransportSendStreamOptions": [], - "WebTransportSendStreamStats": [], - "WebTransportStats": [], - "WebglColorBufferFloat": [], - "WebglCompressedTextureAstc": [], - "WebglCompressedTextureAtc": [], - "WebglCompressedTextureEtc": [], - "WebglCompressedTextureEtc1": [], - "WebglCompressedTexturePvrtc": [], - "WebglCompressedTextureS3tc": [], - "WebglCompressedTextureS3tcSrgb": [], - "WebglDebugRendererInfo": [], - "WebglDebugShaders": [], - "WebglDepthTexture": [], - "WebglDrawBuffers": [], - "WebglLoseContext": [], - "WebglMultiDraw": [], - "WellKnownDirectory": [], - "WgslLanguageFeatures": [], - "WheelEvent": [ - "Event", - "MouseEvent", - "UiEvent" - ], - "WheelEventInit": [], - "WidevineCdmManifest": [], - "Window": [ - "EventTarget" - ], - "WindowClient": [ - "Client" - ], - "Worker": [ - "EventTarget" - ], - "WorkerDebuggerGlobalScope": [ - "EventTarget" - ], - "WorkerGlobalScope": [ - "EventTarget" - ], - "WorkerLocation": [], - "WorkerNavigator": [], - "WorkerOptions": [], - "WorkerType": [], - "Worklet": [], - "WorkletGlobalScope": [], - "WorkletOptions": [], - "WritableStream": [], - "WritableStreamDefaultController": [], - "WritableStreamDefaultWriter": [], - "WriteCommandType": [], - "WriteParams": [], - "XPathExpression": [], - "XPathNsResolver": [], - "XPathResult": [], - "XmlDocument": [ - "Document", - "EventTarget", - "Node" - ], - "XmlHttpRequest": [ - "EventTarget", - "XmlHttpRequestEventTarget" - ], - "XmlHttpRequestEventTarget": [ - "EventTarget" - ], - "XmlHttpRequestResponseType": [], - "XmlHttpRequestUpload": [ - "EventTarget", - "XmlHttpRequestEventTarget" - ], - "XmlSerializer": [], - "XrBoundedReferenceSpace": [ - "EventTarget", - "XrReferenceSpace", - "XrSpace" - ], - "XrEye": [], - "XrFrame": [], - "XrHand": [], - "XrHandJoint": [], - "XrHandedness": [], - "XrInputSource": [], - "XrInputSourceArray": [], - "XrInputSourceEvent": [ - "Event" - ], - "XrInputSourceEventInit": [], - "XrInputSourcesChangeEvent": [ - "Event" - ], - "XrInputSourcesChangeEventInit": [], - "XrJointPose": [ - "XrPose" - ], - "XrJointSpace": [ - "EventTarget", - "XrSpace" - ], - "XrLayer": [ - "EventTarget" - ], - "XrPermissionDescriptor": [], - "XrPermissionStatus": [ - "EventTarget", - "PermissionStatus" - ], - "XrPose": [], - "XrReferenceSpace": [ - "EventTarget", - "XrSpace" - ], - "XrReferenceSpaceEvent": [ - "Event" - ], - "XrReferenceSpaceEventInit": [], - "XrReferenceSpaceType": [], - "XrRenderState": [], - "XrRenderStateInit": [], - "XrRigidTransform": [], - "XrSession": [ - "EventTarget" - ], - "XrSessionEvent": [ - "Event" - ], - "XrSessionEventInit": [], - "XrSessionInit": [], - "XrSessionMode": [], - "XrSessionSupportedPermissionDescriptor": [], - "XrSpace": [ - "EventTarget" - ], - "XrSystem": [ - "EventTarget" - ], - "XrTargetRayMode": [], - "XrView": [], - "XrViewerPose": [ - "XrPose" - ], - "XrViewport": [], - "XrVisibilityState": [], - "XrWebGlLayer": [ - "EventTarget", - "XrLayer" - ], - "XrWebGlLayerInit": [], - "XsltProcessor": [], - "console": [], - "css": [], - "gpu_buffer_usage": [], - "gpu_color_write": [], - "gpu_map_mode": [], - "gpu_shader_stage": [], - "gpu_texture_usage": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-sys-0.3.69/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=web_sys_unstable_apis" - ] - } - } - }, - "publish": null, - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "keywords": [], - "readme": "./README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", - "homepage": "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html", - "documentation": "https://rustwasm.github.io/wasm-bindgen/api/web_sys/", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.57" - }, - { - "name": "web-time", - "version": "1.1.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Drop-in replacement for std::time for Wasm in browsers", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "futures-channel", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": "cfg(all(target_family = \"wasm\", target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "futures-util", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "WorkerGlobalScope" - ], - "target": "cfg(all(target_family = \"wasm\", target_feature = \"atomics\"))", - "registry": null - }, - { - "name": "js-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.20", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "wasm-bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.70", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))", - "registry": null - }, - { - "name": "pollster", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macro" - ], - "target": "cfg(not(target_family = \"wasm\"))", - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": "cfg(target_family = \"wasm\")", - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_family = \"wasm\")", - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_family = \"wasm\")", - "registry": null - }, - { - "name": "wasm-bindgen-futures", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_family = \"wasm\")", - "registry": null - }, - { - "name": "wasm-bindgen-test", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(target_family = \"wasm\")", - "registry": null - }, - { - "name": "web-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "CssStyleDeclaration", - "Document", - "Element", - "HtmlTableElement", - "HtmlTableRowElement", - "Performance", - "Window" - ], - "target": "cfg(target_family = \"wasm\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "web_time", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/benches/benchmark.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/tests/serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/web-time-1.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg=docsrs" - ], - "targets": [ - "wasm32-unknown-unknown" - ] - } - } - }, - "publish": null, - "authors": [], - "categories": [ - "api-bindings", - "date-and-time", - "wasm" - ], - "keywords": [ - "instant", - "wasm", - "web", - "systemtime", - "time" - ], - "readme": "README.md", - "repository": "https://github.com/daxpedda/web-time", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "webpki-roots", - "version": "0.26.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1", - "license": "MPL-2.0", - "license_file": null, - "description": "Mozilla's CA root certificates for use with webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "rustls-pki-types", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": null, - "rename": "pki-types", - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "percent-encoding", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rcgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "ring", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.17.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustls", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.22", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tokio", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "macros", - "rt-multi-thread" - ], - "target": null, - "registry": null - }, - { - "name": "rustls-webpki", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.102", - "kind": "dev", - "rename": "webpki", - "optional": false, - "uses_default_features": true, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "x509-parser", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.15.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yasna", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "webpki_roots", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "codegen", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/tests/codegen.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "verify", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/tests/verify.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/webpki-roots-0.26.1/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/rustls/webpki-roots", - "homepage": "https://github.com/rustls/webpki-roots", - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "which", - "version": "6.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", - "license": "MIT", - "license_file": null, - "description": "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "tempfile", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.9.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustix", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.38.30", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "fs", - "std" - ], - "target": "cfg(any(unix, target_os = \"wasi\", target_os = \"redox\"))", - "registry": null - }, - { - "name": "home", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.9", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(windows, unix, target_os = \"redox\"))", - "registry": null - }, - { - "name": "winsafe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.0.19", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "kernel" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "which", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/which-6.0.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/which-6.0.1/tests/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "regex": [ - "dep:regex" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/which-6.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Harry Fei " - ], - "categories": [ - "os", - "filesystem" - ], - "keywords": [ - "which", - "which-rs", - "unix", - "command" - ], - "readme": "README.md", - "repository": "https://github.com/harryfei/which-rs.git", - "homepage": null, - "documentation": "https://docs.rs/which/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.70" - }, - { - "name": "wild", - "version": "2.2.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "Glob (wildcard) expanded command-line arguments on Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "glob", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "wild", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wild-2.2.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "glob-quoted-on-windows": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wild-2.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs", - "--generate-link-to-definition" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "publish": null, - "authors": [ - "Kornel " - ], - "categories": [ - "command-line-interface", - "os::windows-apis" - ], - "keywords": [ - "wildcards", - "glob", - "windows", - "shell", - "CommandLineToArgvW" - ], - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/wild", - "homepage": "https://lib.rs/crates/wild", - "documentation": "https://docs.rs/wild", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "winapi", - "version": "0.3.9", - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Raw FFI bindings for all of Windows API.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "winapi-i686-pc-windows-gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "i686-pc-windows-gnu", - "registry": null - }, - { - "name": "winapi-x86_64-pc-windows-gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "x86_64-pc-windows-gnu", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winapi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-0.3.9/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-0.3.9/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/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" - ] - } - } - }, - "publish": null, - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "homepage": null, - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "winapi-i686-pc-windows-gnu", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-i686-pc-windows-gnu@0.4.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winapi_i686_pc_windows_gnu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Peter Atashian " - ], - "categories": [], - "keywords": [ - "windows" - ], - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "winapi-util", - "version": "0.1.8", - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", - "license": "Unlicense OR MIT", - "license_file": null, - "description": "A dumping ground for high level safe wrappers over windows-sys.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console", - "Win32_System_SystemInformation" - ], - "target": "cfg(windows)", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winapi_util", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-util-0.1.8/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-util-0.1.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "publish": null, - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "keywords": [ - "windows", - "windows-sys", - "util", - "win" - ], - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "homepage": "https://github.com/BurntSushi/winapi-util", - "documentation": "https://docs.rs/winapi-util", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "winapi-x86_64-pc-windows-gnu", - "version": "0.4.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-x86_64-pc-windows-gnu@0.4.0", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winapi_x86_64_pc_windows_gnu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "edition": "2015", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "edition": "2015", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Peter Atashian " - ], - "categories": [], - "keywords": [ - "windows" - ], - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "homepage": null, - "documentation": null, - "edition": "2015", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows-core", - "version": "0.52.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Rust for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_core", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-core-0.52.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "default": [], - "implement": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-core-0.52.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows-sys", - "version": "0.48.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Rust for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.48.0/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "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": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.48" - }, - { - "name": "windows-sys", - "version": "0.52.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Rust for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.52.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "Wdk": [], - "Wdk_Foundation": [ - "Wdk" - ], - "Wdk_Graphics": [ - "Wdk" - ], - "Wdk_Graphics_Direct3D": [ - "Wdk_Graphics" - ], - "Wdk_Storage": [ - "Wdk" - ], - "Wdk_Storage_FileSystem": [ - "Wdk_Storage" - ], - "Wdk_Storage_FileSystem_Minifilters": [ - "Wdk_Storage_FileSystem" - ], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_IO": [ - "Wdk_System" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Wdk_System_Registry": [ - "Wdk_System" - ], - "Wdk_System_SystemInformation": [ - "Wdk_System" - ], - "Wdk_System_SystemServices": [ - "Wdk_System" - ], - "Wdk_System_Threading": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "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_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_HumanInterfaceDevice": [ - "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_GdiPlus": [ - "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_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "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_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_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_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_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "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_Authorization": [ - "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_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_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "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_Nvme": [ - "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_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "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_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "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_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_Ole": [ - "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_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "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_Services": [ - "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_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_Variant": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [], - "docs": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.52.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows-sys", - "version": "0.59.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Rust for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows-targets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.59.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": false, - "test": false - } - ], - "features": { - "Wdk": [ - "Win32_Foundation" - ], - "Wdk_Devices": [ - "Wdk" - ], - "Wdk_Devices_Bluetooth": [ - "Wdk_Devices" - ], - "Wdk_Devices_HumanInterfaceDevice": [ - "Wdk_Devices" - ], - "Wdk_Foundation": [ - "Wdk" - ], - "Wdk_Graphics": [ - "Wdk" - ], - "Wdk_Graphics_Direct3D": [ - "Wdk_Graphics" - ], - "Wdk_NetworkManagement": [ - "Wdk" - ], - "Wdk_NetworkManagement_Ndis": [ - "Wdk_NetworkManagement" - ], - "Wdk_NetworkManagement_WindowsFilteringPlatform": [ - "Wdk_NetworkManagement" - ], - "Wdk_Storage": [ - "Wdk" - ], - "Wdk_Storage_FileSystem": [ - "Wdk_Storage" - ], - "Wdk_Storage_FileSystem_Minifilters": [ - "Wdk_Storage_FileSystem" - ], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_IO": [ - "Wdk_System" - ], - "Wdk_System_Memory": [ - "Wdk_System" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Wdk_System_Registry": [ - "Wdk_System" - ], - "Wdk_System_SystemInformation": [ - "Wdk_System" - ], - "Wdk_System_SystemServices": [ - "Wdk_System" - ], - "Wdk_System_Threading": [ - "Wdk_System" - ], - "Win32": [ - "Win32_Foundation" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "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_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_HumanInterfaceDevice": [ - "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_GdiPlus": [ - "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_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "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_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_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_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_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "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_Authorization": [ - "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_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_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "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_Nvme": [ - "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_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "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_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "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_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_Diagnostics_TraceLogging": [ - "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_Ole": [ - "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_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "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_Services": [ - "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_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_Variant": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "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_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [], - "docs": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-sys-0.59.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "windows-targets", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import libs for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows_aarch64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "aarch64-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_aarch64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_x86_64_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_x86_64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_x86_64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.48.5", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "x86_64-pc-windows-gnullvm", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_targets", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.48.5/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows-targets", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import libs for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "windows_aarch64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "aarch64-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_x86_64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_aarch64_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_msvc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_x86_64_gnu", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "registry": null - }, - { - "name": "windows_i686_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "i686-pc-windows-gnullvm", - "registry": null - }, - { - "name": "windows_x86_64_gnullvm", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.52.6", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "x86_64-pc-windows-gnullvm", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_targets", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows-targets-0.52.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_aarch64_gnullvm", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_aarch64_gnullvm", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_aarch64_msvc", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_aarch64_msvc", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_i686_gnu", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_i686_gnu", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_i686_gnullvm", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_gnullvm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_i686_msvc", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_i686_msvc", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_x86_64_gnu", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_x86_64_gnu", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_x86_64_gnullvm", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_x86_64_gnullvm", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "windows_x86_64_msvc", - "version": "0.48.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "windows_x86_64_msvc", - "version": "0.52.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "Import lib for Windows", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6/build.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "publish": null, - "authors": [ - "Microsoft" - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.56" - }, - { - "name": "winnow", - "version": "0.6.18", - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18", - "license": "MIT", - "license_file": null, - "description": "A byte-oriented, zero-copy, parser combinators library", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "anstream", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anstyle", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.9", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "memchr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "terminal_size", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.6", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "annotate-snippets", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "anyhow", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.86", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "automod", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.14", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "circular", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "lexopt", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "proptest", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rustc-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "snapbox", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.6.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "examples" - ], - "target": null, - "registry": null - }, - { - "name": "term-transcript", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winnow", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/arithmetic/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "css", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/css/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "custom_error", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/custom_error.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/http/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/ini/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "iterator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/iterator.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/json/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "json_iterator", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/json_iterator.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "ndjson", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/ndjson/main.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "s_expression", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/s_expression/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "string", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/string/main.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "arithmetic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/arithmetic/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "contains_token", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/contains_token.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "find_slice", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/find_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "http", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/http/bench.rs", - "edition": "2021", - "required-features": [ - "alloc" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "ini", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/ini/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "iter", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/iter.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "json", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/examples/json/bench.rs", - "edition": "2021", - "required-features": [ - "std" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "next_slice", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/next_slice.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "number", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/benches/number.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "alloc": [], - "debug": [ - "std", - "dep:anstream", - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd", - "unstable-recover" - ], - "unstable-recover": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winnow-0.6.18/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": "" - }, - { - "exactly": 1, - "file": "src/lib.rs", - "replace": "blob/v{{version}}/CHANGELOG.md", - "search": "blob/v.+\\..+\\..+/CHANGELOG.md" - } - ] - } - }, - "publish": null, - "authors": [], - "categories": [ - "parsing" - ], - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.65.0" - }, - { - "name": "winsafe", - "version": "0.0.19", - "id": "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19", - "license": "MIT", - "license_file": null, - "description": "Windows API and GUI in safe, idiomatic Rust.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "winsafe", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winsafe-0.0.19/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "comctl": [ - "ole" - ], - "dshow": [ - "oleaut" - ], - "dwm": [ - "uxtheme" - ], - "dxgi": [ - "ole" - ], - "gdi": [ - "user" - ], - "gui": [ - "comctl", - "shell", - "uxtheme" - ], - "kernel": [], - "mf": [ - "oleaut" - ], - "ole": [ - "user" - ], - "oleaut": [ - "ole" - ], - "shell": [ - "oleaut" - ], - "taskschd": [ - "oleaut" - ], - "user": [ - "kernel" - ], - "uxtheme": [ - "gdi", - "ole" - ], - "version": [ - "kernel" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winsafe-0.0.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "publish": null, - "authors": [ - "Rodrigo Cesar de Freitas Dias " - ], - "categories": [ - "api-bindings", - "gui", - "os::windows-apis" - ], - "keywords": [ - "com", - "ffi", - "gui", - "win32", - "windows" - ], - "readme": "README.md", - "repository": "https://github.com/rodrigocfd/winsafe", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "write16", - "version": "1.0.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "description": "A UTF-16 analog of the Write trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "arrayvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "smallvec", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "write16", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/write16-1.0.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "arrayvec": [ - "dep:arrayvec" - ], - "smallvec": [ - "dep:smallvec" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/write16-1.0.0/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [], - "categories": [ - "text-processing", - "internationalization" - ], - "keywords": [ - "unicode", - "utf-16" - ], - "readme": "README.md", - "repository": "https://github.com/hsivonen/write16", - "homepage": "https://docs.rs/write16/", - "documentation": "https://docs.rs/write16/", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "writeable", - "version": "0.5.5", - "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "license": "Unicode-3.0", - "license_file": null, - "description": "A more efficient alternative to fmt::Display", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "either", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.9.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "writeable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "writeable_message", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/examples/writeable_message.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "writeable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/tests/writeable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "writeable", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/benches/writeable.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [], - "either": [ - "dep:either" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/writeable-0.5.5/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ] - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "yansi", - "version": "1.0.1", - "id": "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1", - "license": "MIT OR Apache-2.0", - "license_file": null, - "description": "A dead simple ANSI terminal color painting library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "is-terminal", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.11", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yansi", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-1.0.1/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "basic", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-1.0.1/tests/basic.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "_nightly": [], - "alloc": [], - "default": [ - "std" - ], - "detect-env": [ - "std" - ], - "detect-tty": [ - "is-terminal", - "std" - ], - "hyperlink": [ - "std" - ], - "is-terminal": [ - "dep:is-terminal" - ], - "std": [ - "alloc" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "publish": null, - "authors": [ - "Sergio Benitez " - ], - "categories": [ - "command-line-interface" - ], - "keywords": [ - "ansi", - "terminal", - "color", - "format", - "paint" - ], - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/yansi", - "homepage": null, - "documentation": "https://docs.rs/yansi", - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.63" - }, - { - "name": "yansi-term", - "version": "0.1.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2", - "license": "MIT", - "license_file": null, - "description": "Library for ANSI terminal colours and styles (bold, underline)", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "doc-comment", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "regex", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "winapi", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.4", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "processenv" - ], - "target": "cfg(target_os = \"windows\")", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yansi_term", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "256_colours", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/256_colours.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "basic_colours", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/basic_colours.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "overwrite", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/overwrite.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "rgb_colours", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/examples/rgb_colours.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "derive_serde_style": [ - "serde" - ], - "serde": [ - "dep:serde" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yansi-term-0.1.2/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "ogham@bsago.me", - "Ryan Scheel (Havvy) ", - "Josh Triplett ", - "Juan Aguilar Santillana " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/botika/yansi-term", - "homepage": "https://github.com/botika/yansi-term", - "documentation": "https://docs.rs/yansi-term", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "yoke", - "version": "0.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "stable_deref_trait", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.7.4", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "yoke", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "bincode", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/tests/bincode.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "miri", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/tests/miri.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "alloc": [ - "stable_deref_trait/alloc", - "serde?/alloc", - "zerofrom/alloc" - ], - "default": [ - "alloc", - "zerofrom" - ], - "derive": [ - "dep:yoke-derive", - "zerofrom/derive" - ], - "serde": [ - "dep:serde" - ], - "zerofrom": [ - "dep:zerofrom" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-0.7.4/Cargo.toml", - "metadata": { - "cargo-all-features": { - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow", - "self-referential" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "yoke-derive", - "version": "0.7.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the yoke crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "yoke_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "yoke_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.4/examples/yoke_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.4/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow", - "self-referential" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zerocopy", - "version": "0.7.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Utilities for zero-copy parsing and serialization", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.32", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "assert_matches", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "elain", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "itertools", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "small_rng" - ], - "target": null, - "registry": null - }, - { - "name": "rustversion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.85", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.32", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerocopy-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=0.7.32", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any())", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerocopy", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.7.32/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.7.32/tests/trybuild.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "__internal_use_only_features_that_work_on_stable": [ - "alloc", - "derive", - "simd" - ], - "alloc": [], - "byteorder": [ - "dep:byteorder" - ], - "default": [ - "byteorder" - ], - "derive": [ - "zerocopy-derive" - ], - "simd": [], - "simd-nightly": [ - "simd" - ], - "zerocopy-derive": [ - "dep:zerocopy-derive" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-0.7.32/Cargo.toml", - "metadata": { - "ci": { - "pinned-nightly": "nightly-2023-12-05", - "pinned-stable": "1.74.0" - }, - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg", - "--generate-link-to-definition" - ] - } - }, - "playground": { - "features": [ - "__internal_use_only_features_that_work_on_stable" - ] - } - }, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser " - ], - "categories": [], - "keywords": [], - "readme": "README.md", - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "zerocopy-derive", - "version": "0.7.32", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32", - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_file": null, - "description": "Custom derive for traits from the zerocopy crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.10", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.31", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "static_assertions", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "trybuild", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "=1.0.85", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "diff" - ], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerocopy_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_as_bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_as_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_from_zeroes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_from_zeroes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_known_layout", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_known_layout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "enum_unaligned", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/enum_unaligned.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "hygiene", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/hygiene.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "paths_and_modules", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/paths_and_modules.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "priv_in_pub", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/priv_in_pub.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_as_bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_as_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_from_bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_from_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_from_zeroes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_from_zeroes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_known_layout", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_known_layout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "struct_unaligned", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/struct_unaligned.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "trybuild", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/trybuild.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_as_bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_as_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_from_bytes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_from_bytes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_from_zeroes", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_from_zeroes.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_known_layout", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_known_layout.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "union_unaligned", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/union_unaligned.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "util", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/tests/util.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.32/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Joshua Liebow-Feeser " - ], - "categories": [], - "keywords": [], - "readme": null, - "repository": "https://github.com/google/zerocopy", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": "1.60.0" - }, - { - "name": "zerofrom", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "ZeroFrom trait for constructing", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zerofrom-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerofrom", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-0.1.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - } - ], - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "dep:zerofrom-derive" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-0.1.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "zerofrom-derive", - "version": "0.1.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the zerofrom crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "fold" - ], - "target": null, - "registry": null - }, - { - "name": "synstructure", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.13.0", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerofrom_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zf_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.4/examples/zf_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.4/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "data-structures", - "memory-management", - "caching", - "no-std" - ], - "keywords": [ - "zerocopy", - "serialization", - "lifetime", - "borrow" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zeroize", - "version": "1.7.0", - "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0", - "license": "Apache-2.0 OR MIT", - "license_file": null, - "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", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zeroize_derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zeroize", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zeroize", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/tests/zeroize.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zeroize_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/tests/zeroize_derive.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - } - ], - "features": { - "aarch64": [], - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "zeroize_derive" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "zeroize_derive": [ - "dep:zeroize_derive" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zeroize-1.7.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "publish": null, - "authors": [ - "The RustCrypto Project Developers" - ], - "categories": [ - "cryptography", - "memory-management", - "no-std", - "os" - ], - "keywords": [ - "memory", - "memset", - "secure", - "volatile", - "zero" - ], - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.60" - }, - { - "name": "zerovec", - "version": "0.10.4", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "license": "Unicode-3.0", - "license_file": null, - "description": "Zero-copy vector backed by a byte array", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "databake", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.8", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "alloc" - ], - "target": null, - "registry": null - }, - { - "name": "twox-hash", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "yoke", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": ">=0.6.0, <0.8.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerofrom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zerovec-derive", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "js" - ], - "target": null, - "registry": null - }, - { - "name": "iai", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "postcard", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "use-std" - ], - "target": null, - "registry": null - }, - { - "name": "rand", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_distr", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rand_pcg", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "rmp-serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.2.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "criterion", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(not(target_arch = \"wasm32\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zerovec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zv_serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/examples/zv_serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "vzv", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/vzv.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zeromap", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zeromap.rs", - "edition": "2021", - "required-features": [ - "serde", - "hashmap", - "derive" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zerovec.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec_iai", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zerovec_iai.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "zerovec_serde", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/benches/zerovec_serde.rs", - "edition": "2021", - "required-features": [ - "serde" - ], - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bench": [ - "serde", - "databake" - ], - "databake": [ - "dep:databake" - ], - "derive": [ - "dep:zerovec-derive" - ], - "hashmap": [ - "dep:twox-hash" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "yoke": [ - "dep:yoke" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-0.10.4/Cargo.toml", - "metadata": { - "cargo-all-features": { - "denylist": [ - "bench" - ], - "max_combination_size": 3 - }, - "docs": { - "rs": { - "all-features": true - } - }, - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "The ICU4X Project Developers" - ], - "categories": [ - "rust-patterns", - "memory-management", - "caching", - "no-std", - "data-structures" - ], - "keywords": [ - "zerocopy", - "serialization", - "zero-copy", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.67" - }, - { - "name": "zerovec-derive", - "version": "0.10.3", - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "license": "Unicode-3.0", - "license_file": null, - "description": "Custom derive for the zerovec crate", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "proc-macro2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.61", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "quote", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.28", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "syn", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "extra-traits" - ], - "target": null, - "registry": null - }, - { - "name": "bincode", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.1", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "serde", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.110", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "derive" - ], - "target": null, - "registry": null - }, - { - "name": "serde_json", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "proc-macro" - ], - "crate_types": [ - "proc-macro" - ], - "name": "zerovec_derive", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "derives", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/examples/derives.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/examples/make.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "make_var", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/examples/make_var.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": {}, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3/Cargo.toml", - "metadata": { - "workspaces": { - "independent": true - } - }, - "publish": null, - "authors": [ - "Manish Goregaokar " - ], - "categories": [ - "rust-patterns", - "memory-management", - "caching", - "no-std", - "data-structures" - ], - "keywords": [ - "zerocopy", - "serialization", - "zero-copy", - "serde" - ], - "readme": "README.md", - "repository": "https://github.com/unicode-org/icu4x", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zip", - "version": "0.6.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", - "license": "MIT", - "license_file": null, - "description": "Library to support the reading and writing of zip files.\n", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "aes", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "byteorder", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.4.3", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bzip2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.4.3", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "constant_time_eq", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crc32fast", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.3.2", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "flate2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.23", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - }, - { - "name": "hmac", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.12.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [ - "reset" - ], - "target": null, - "registry": null - }, - { - "name": "pbkdf2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.0", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "sha1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.10.1", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "zstd", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.11.2", - "kind": null, - "rename": null, - "optional": true, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "bencher", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.1.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "getrandom", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "time", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3.7", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "formatting", - "macros" - ], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.3.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "crossbeam-utils", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.8.8", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))", - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zip", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/src/lib.rs", - "edition": "2021", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "extract", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/extract.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "extract_lorem", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/extract_lorem.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "file_info", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/file_info.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stdin_info", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/stdin_info.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "write_dir", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/write_dir.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "write_sample", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/examples/write_sample.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "aes_encryption", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/aes_encryption.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "end_to_end", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/end_to_end.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "invalid_date", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/invalid_date.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "issue_234", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/issue_234.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip64_large", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/zip64_large.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip_comment_garbage", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/zip_comment_garbage.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "test" - ], - "crate_types": [ - "bin" - ], - "name": "zip_crypto", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/tests/zip_crypto.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": true - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read_entry", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/benches/read_entry.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "bench" - ], - "crate_types": [ - "bin" - ], - "name": "read_metadata", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/benches/read_metadata.rs", - "edition": "2021", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "aes": [ - "dep:aes" - ], - "aes-crypto": [ - "aes", - "constant_time_eq", - "hmac", - "pbkdf2", - "sha1" - ], - "bzip2": [ - "dep:bzip2" - ], - "constant_time_eq": [ - "dep:constant_time_eq" - ], - "default": [ - "aes-crypto", - "bzip2", - "deflate", - "time", - "zstd" - ], - "deflate": [ - "flate2/rust_backend" - ], - "deflate-miniz": [ - "flate2/default" - ], - "deflate-zlib": [ - "flate2/zlib" - ], - "flate2": [ - "dep:flate2" - ], - "hmac": [ - "dep:hmac" - ], - "pbkdf2": [ - "dep:pbkdf2" - ], - "sha1": [ - "dep:sha1" - ], - "time": [ - "dep:time" - ], - "unreserved": [], - "zstd": [ - "dep:zstd" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zip-0.6.6/Cargo.toml", - "metadata": null, - "publish": null, - "authors": [ - "Mathijs van de Nes ", - "Marli Frost ", - "Ryan Levick " - ], - "categories": [], - "keywords": [ - "zip", - "archive" - ], - "readme": "README.md", - "repository": "https://github.com/zip-rs/zip.git", - "homepage": null, - "documentation": null, - "edition": "2021", - "links": null, - "default_run": null, - "rust_version": "1.59.0" - }, - { - "name": "zstd", - "version": "0.11.2+zstd.1.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2", - "license": "MIT", - "license_file": null, - "description": "Binding for the zstd compression library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "zstd-safe", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^5.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [ - "std" - ], - "target": null, - "registry": null - }, - { - "name": "clap", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^3.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "humansize", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "partial-io", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.5", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "walkdir", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.2", - "kind": "dev", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zstd", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "benchmark", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/benchmark.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "stream", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/stream.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "train", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/train.rs", - "edition": "2018", - "required-features": [ - "zdict_builder" - ], - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zstd", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/zstd.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - }, - { - "kind": [ - "example" - ], - "crate_types": [ - "bin" - ], - "name": "zstdcat", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/examples/zstdcat.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arrays": [ - "zstd-safe/arrays" - ], - "bindgen": [ - "zstd-safe/bindgen" - ], - "debug": [ - "zstd-safe/debug" - ], - "default": [ - "legacy", - "arrays", - "zdict_builder" - ], - "doc-cfg": [], - "experimental": [ - "zstd-safe/experimental" - ], - "legacy": [ - "zstd-safe/legacy" - ], - "no_asm": [ - "zstd-safe/no_asm" - ], - "pkg-config": [ - "zstd-safe/pkg-config" - ], - "thin": [ - "zstd-safe/thin" - ], - "wasm": [], - "zdict_builder": [ - "zstd-safe/zdict_builder" - ], - "zstdmt": [ - "zstd-safe/zstdmt" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-0.11.2+zstd.1.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "experimental", - "zstdmt", - "zdict_builder", - "doc-cfg" - ] - } - } - }, - "publish": null, - "authors": [ - "Alexandre Bury " - ], - "categories": [ - "compression", - "api-bindings" - ], - "keywords": [ - "zstd", - "zstandard", - "compression" - ], - "readme": "Readme.md", - "repository": "https://github.com/gyscos/zstd-rs", - "homepage": null, - "documentation": "https://docs.rs/zstd", - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zstd-safe", - "version": "5.0.2+zstd.1.5.2", - "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Safe low-level bindings for the zstd compression library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "libc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.2.21", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - }, - { - "name": "zstd-sys", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^2.0.1", - "kind": null, - "rename": null, - "optional": false, - "uses_default_features": false, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zstd_safe", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-5.0.2+zstd.1.5.2/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": true, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-5.0.2+zstd.1.5.2/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "arrays": [], - "bindgen": [ - "zstd-sys/bindgen" - ], - "debug": [ - "zstd-sys/debug" - ], - "default": [ - "legacy", - "arrays", - "zdict_builder" - ], - "doc-cfg": [], - "experimental": [ - "zstd-sys/experimental" - ], - "legacy": [ - "zstd-sys/legacy" - ], - "no_asm": [ - "zstd-sys/no_asm" - ], - "pkg-config": [ - "zstd-sys/pkg-config" - ], - "std": [ - "zstd-sys/std" - ], - "thin": [ - "zstd-sys/thin" - ], - "zdict_builder": [ - "zstd-sys/zdict_builder" - ], - "zstdmt": [ - "zstd-sys/zstdmt" - ] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-5.0.2+zstd.1.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "experimental", - "arrays", - "std", - "zdict_builder", - "doc-cfg" - ] - } - } - }, - "publish": null, - "authors": [ - "Alexandre Bury " - ], - "categories": [ - "api-bindings", - "compression" - ], - "keywords": [ - "zstd", - "zstandard", - "compression" - ], - "readme": "Readme.md", - "repository": "https://github.com/gyscos/zstd-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": null, - "default_run": null, - "rust_version": null - }, - { - "name": "zstd-sys", - "version": "2.0.11+zstd.1.5.6", - "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6", - "license": "MIT/Apache-2.0", - "license_file": null, - "description": "Low-level bindings for the zstd compression library.", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "dependencies": [ - { - "name": "bindgen", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.69", - "kind": "build", - "rename": null, - "optional": true, - "uses_default_features": false, - "features": [ - "runtime", - "which-rustfmt" - ], - "target": null, - "registry": null - }, - { - "name": "cc", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^1.0.45", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [ - "parallel" - ], - "target": null, - "registry": null - }, - { - "name": "pkg-config", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "req": "^0.3", - "kind": "build", - "rename": null, - "optional": false, - "uses_default_features": true, - "features": [], - "target": null, - "registry": null - } - ], - "targets": [ - { - "kind": [ - "lib" - ], - "crate_types": [ - "lib" - ], - "name": "zstd_sys", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-sys-2.0.11+zstd.1.5.6/src/lib.rs", - "edition": "2018", - "doc": true, - "doctest": false, - "test": true - }, - { - "kind": [ - "custom-build" - ], - "crate_types": [ - "bin" - ], - "name": "build-script-build", - "src_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-sys-2.0.11+zstd.1.5.6/build.rs", - "edition": "2018", - "doc": false, - "doctest": false, - "test": false - } - ], - "features": { - "bindgen": [ - "dep:bindgen" - ], - "debug": [], - "default": [ - "legacy", - "zdict_builder" - ], - "experimental": [], - "fat-lto": [], - "legacy": [], - "no_asm": [], - "no_wasm_shim": [], - "non-cargo": [], - "pkg-config": [], - "std": [], - "thin": [], - "thin-lto": [], - "zdict_builder": [], - "zstdmt": [] - }, - "manifest_path": "/home/micha/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-sys-2.0.11+zstd.1.5.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "experimental" - ] - } - } - }, - "publish": null, - "authors": [ - "Alexandre Bury " - ], - "categories": [ - "api-bindings", - "compression" - ], - "keywords": [ - "zstd", - "zstandard", - "compression" - ], - "readme": "Readme.md", - "repository": "https://github.com/gyscos/zstd-rs", - "homepage": null, - "documentation": null, - "edition": "2018", - "links": "zstd", - "default_run": null, - "rust_version": "1.64" - } - ], - "workspace_members": [ - "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", - "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4" - ], - "workspace_default_members": [ - "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", - "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4" - ], - "resolve": { - "nodes": [ - { - "id": "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(all(target_arch = \"arm\", target_os = \"none\")))" - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "zerocopy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "getrandom", - "runtime-rng", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "perf-literal", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2" - ], - "deps": [ - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yansi_term", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "default", - "yansi-term" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", - "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_query", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle_wincon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "colorchoice", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "auto", - "default", - "wincon" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1" - ], - "deps": [ - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "utf8" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anstyle-wincon@3.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0" - ], - "deps": [ - { - "name": "fs_err", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "os_str_bytes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", - "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "doc_comment", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globwalk", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "predicates", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "predicates_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "predicates_tree", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std", - "unicode" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0" - ], - "deps": [ - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde", - "serde1" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15" - ], - "deps": [ - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" - ], - "deps": [ - { - "name": "jobserver", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "jobserver", - "libc", - "once_cell", - "parallel" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1" - ], - "deps": [ - { - "name": "annotate_snippets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "android_tzdata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#android-tzdata@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"android\")" - } - ] - }, - { - "name": "iana_time_zone", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "alloc", - "android-tzdata", - "clock", - "iana-time-zone", - "now", - "std", - "winapi", - "windows-targets" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "ciborium_io", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ciborium_ll", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1" - ], - "deps": [ - { - "name": "ciborium_io", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "half", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18" - ], - "deps": [ - { - "name": "clap_builder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "default", - "derive", - "env", - "error-context", - "help", - "std", - "string", - "suggestions", - "usage", - "wrap_help" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0" - ], - "deps": [ - { - "name": "anstream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_lex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strsim", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "terminal_size", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "color", - "env", - "error-context", - "help", - "std", - "string", - "suggestions", - "usage", - "wrap_help" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", - "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_complete", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_complete_nushell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "nushell" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_nushell@4.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2" - ], - "deps": [ - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_complete", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "heck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", - "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", - "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" - ], - "deps": [ - { - "name": "nix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "terminfo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "which", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winapi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "no-color" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" - ], - "deps": [ - { - "name": "castaway", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#castaway@0.2.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ryu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "encode_unicode", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "ansi-parsing", - "unicode-width" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", - "dependencies": [], - "deps": [], - "features": [ - "default", - "link" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0" - ], - "deps": [ - { - "name": "dashmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "dashmap", - "enable", - "once_cell", - "rustc-hash" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "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\"))" - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "anes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anes@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ciborium", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "criterion_plot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_terminal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "num_traits", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "oorandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinytemplate", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#criterion-plot@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5" - ], - "deps": [ - { - "name": "cast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cast@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" - ], - "deps": [ - { - "name": "crossbeam_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_epoch", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_queue", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "crossbeam-channel", - "crossbeam-deque", - "crossbeam-epoch", - "crossbeam-queue", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" - ], - "deps": [ - { - "name": "crossbeam_epoch", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" - ], - "deps": [ - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2", - "dependencies": [], - "deps": [], - "features": [ - "default", - "limit_128" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0" - ], - "deps": [ - { - "name": "generic_array", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "nix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", - "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8" - ], - "deps": [ - { - "name": "darling_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "darling_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "suggestions" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ident_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strsim", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "strsim", - "suggestions" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.20.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "darling_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling_core@0.20.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@5.5.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dependencies": [ - "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.19", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "raw-api" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6" - ], - "deps": [ - { - "name": "block_buffer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crypto_common", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "block-buffer", - "core-api", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0" - ], - "deps": [ - { - "name": "dir_test_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dir-test-macros@0.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109" - ], - "deps": [ - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7" - ], - "deps": [ - { - "name": "dirs_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1" - ], - "deps": [ - { - "name": "dirs_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", - "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "redox_users", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ] - }, - { - "name": "winapi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "option_ext", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "redox_users", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#doc-comment@0.3.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#encode_unicode@0.3.6", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "regex" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22" - ], - "deps": [ - { - "name": "anstream", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "env_filter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_filter@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "humantime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "auto-color", - "color", - "default", - "humantime", - "regex" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "home", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "libredox", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2" - ], - "deps": [ - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "miniz_oxide", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" - } - ] - } - ], - "features": [ - "any_impl", - "default", - "miniz_oxide", - "rust_backend" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1" - ], - "deps": [ - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fs-err@2.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4" - ], - "deps": [ - { - "name": "typenum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_check", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "more_lengths" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13" - ], - "deps": [ - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "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.95" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "wasi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" - } - ] - } - ], - "features": [ - "js", - "js-sys", - "std", - "wasm-bindgen" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bstr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "log" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#half@2.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crunchy", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crunchy@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"spirv\")" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11" - ], - "deps": [ - { - "name": "ahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "ahash", - "inline-more", - "raw" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", - "dependencies": [], - "deps": [], - "features": [ - "inline-more", - "raw-entry" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5" - ], - "deps": [ - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#humantime@2.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.60", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0" - ], - "deps": [ - { - "name": "android_system_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#android_system_properties@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"android\")" - } - ] - }, - { - "name": "core_foundation_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#core-foundation-sys@0.8.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" - } - ] - }, - { - "name": "iana_time_zone_haiku", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"haiku\")" - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "windows_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - } - ], - "features": [ - "fallback" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone-haiku@0.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "litemap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "writeable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "zerovec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid_transform_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform_data@1.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_collections", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_normalizer_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf16_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "write16", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@1.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_collections", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid_transform", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid_transform@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties_data", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@1.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_locid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_locid@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_provider_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tinystr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "writeable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#icu_provider_macros@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ident_case@1.0.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" - ], - "deps": [ - { - "name": "idna_adapter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8_iter", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "compiled_data", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1" - ], - "deps": [ - { - "name": "icu_normalizer", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "icu_properties", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@1.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "compiled_data" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8" - ], - "deps": [ - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "same_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5" - ], - "deps": [ - { - "name": "ahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "unified_diff" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0" - ], - "deps": [ - { - "name": "phf", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rust_stemmers", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "equivalent", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", - "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", - "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0" - ], - "deps": [ - { - "name": "console", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "number_prefix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "portable_atomic", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vt100", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_time", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - } - ], - "features": [ - "default", - "in_memory", - "unicode-width", - "vt100" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "inotify_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#inotify-sys@0.1.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", - "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "console", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console@0.15.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "linked_hash_map", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pest_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ron", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "similar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "colors", - "console", - "default", - "filters", - "glob", - "globset", - "json", - "pest", - "pest_derive", - "redactions", - "regex", - "ron", - "serde", - "walkdir" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" - ], - "deps": [ - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "heck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#is-terminal@0.4.12", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "hermit_abi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\"))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" - ], - "deps": [ - { - "name": "is_docker", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.10.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "use_alloc", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "use_alloc", - "use_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" - ], - "deps": [ - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "kqueue_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#kqueue-sys@1.0.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dependencies": [], - "deps": [], - "features": [ - "default", - "extra_traits", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67" - ], - "deps": [ - { - "name": "chic", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chic@1.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libcst_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "paste", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "peg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libcst_derive@1.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syscall", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "call", - "default", - "redox_syscall", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#linked-hash-map@0.5.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", - "dependencies": [], - "deps": [], - "features": [ - "elf", - "errno", - "general", - "ioctl", - "no_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.7.3", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "scopeguard", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "atomic_usize", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" - ], - "deps": [ - { - "name": "crossbeam_channel", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_repr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proposed" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10" - ], - "deps": [ - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39" - ], - "deps": [ - { - "name": "libmimalloc_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libmimalloc-sys@0.1.39", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.7.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2" - ], - "deps": [ - { - "name": "adler", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#adler@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "with-alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "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#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hermit-abi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "default", - "log", - "os-ext", - "os-poll" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0" - ], - "deps": [ - { - "name": "uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.28.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_aliases", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.1.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "fs", - "term" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cfg_aliases", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "fs", - "process", - "signal" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "minimal_lexical", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", - "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", - "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"macos\")" - } - ] - }, - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fsevent_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fsevent-sys@4.1.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"macos\")" - } - ] - }, - { - "name": "inotify", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#inotify@0.10.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))" - } - ] - }, - { - "name": "kqueue", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#kqueue@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "mio", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mio@1.0.2", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))" - }, - { - "kind": null, - "target": "cfg(any(target_os = \"linux\", target_os = \"android\"))" - } - ] - }, - { - "name": "notify_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "default", - "fsevent-sys", - "macos_fsevent" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#notify-types@1.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12" - ], - "deps": [ - { - "name": "instant", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.12", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" - ], - "deps": [ - { - "name": "overload", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winapi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "windows", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0" - ], - "deps": [ - { - "name": "autocfg", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.2.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#number_prefix@0.4.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "race", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#oorandom@11.1.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#os_str_bytes@7.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "memchr", - "raw_os_str" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#overload@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9" - ], - "deps": [ - { - "name": "lock_api", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "syscall", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1" - ], - "deps": [ - { - "name": "path_dedot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "once_cell_cache", - "use_unix_paths_on_wasm" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#path-dedot@3.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "once_cell_cache", - "use_unix_paths_on_wasm" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#peg@0.8.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3" - ], - "deps": [ - { - "name": "peg_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "peg_runtime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#peg-macros@0.8.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37" - ], - "deps": [ - { - "name": "peg_runtime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#peg-runtime@0.8.3", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unscanny", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_ranges", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "version-ranges" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", - "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1" - ], - "deps": [ - { - "name": "boxcar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#boxcar@0.2.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pep440_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "urlencoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "version_ranges", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ucd_trie", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "memchr", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pest_derive@2.7.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11" - ], - "deps": [ - { - "name": "pest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pest_generator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pest_generator@2.7.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "pest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pest_meta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pest_meta@2.7.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pest@2.7.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sha2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2" - ], - "deps": [ - { - "name": "phf_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2" - ], - "deps": [ - { - "name": "phf_generator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "phf_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" - ], - "deps": [ - { - "name": "phf_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11" - ], - "deps": [ - { - "name": "siphasher", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.6.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "fallback" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", - "dependencies": [], - "deps": [], - "features": [ - "simd", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#predicates@3.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", - "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8" - ], - "deps": [ - { - "name": "anstyle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "difflib", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#difflib@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "predicates_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "diff" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#predicates-tree@1.0.11", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1" - ], - "deps": [ - { - "name": "predicates_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#predicates-core@1.0.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "termtree", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", - "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1" - ], - "deps": [ - { - "name": "diff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#diff@0.1.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yansi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" - ], - "deps": [ - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro", - "span-locations" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pep440_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pep508_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep508_rs@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", - "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0" - ], - "deps": [ - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "newtype_uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#newtype-uuid@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quick_xml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strip_ansi_escapes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.36.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ] - }, - { - "name": "rand_chacha", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "small_rng", - "std", - "std_rng" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4" - ], - "deps": [ - { - "name": "ppv_lite86", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.17", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "getrandom", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.12.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19" - ], - "deps": [ - { - "name": "crossbeam_deque", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "countme", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ctrlc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ctrlc@3.4.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_server", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "salsa", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_flame", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_tree", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", - "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "camino", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "compact_str", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "countme", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dir_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dir-test@0.3.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "hashbrown", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ordermap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ordermap@0.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_test", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "red_knot_vendored", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_index", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_literal", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_stdlib", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "test_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_server#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", - "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", - "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "jod_thread", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "lsp_server", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lsp_types", - "pkg": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shellexpand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_test#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_vendored", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_index", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6" - ], - "deps": [ - { - "name": "path_slash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - }, - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "zip", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "deflate", - "zstd" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_wasm#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45" - ], - "deps": [ - { - "name": "console_error_panic_hook", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "console_log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "console_error_panic_hook", - "default" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", - "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "notify", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pep440_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "red_knot_vendored", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_vendored#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "deflate", - "zstd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.4.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_syscall@0.5.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#redox_users@0.4.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libredox", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libredox@0.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_automata", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "perf", - "perf-backtrack", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "perf-onepass", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.1.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29" - ], - "deps": [ - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "regex-syntax", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex_syntax", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "dfa-onepass", - "dfa-search", - "hybrid", - "meta", - "nfa", - "nfa-backtrack", - "nfa-pikevm", - "nfa-thompson", - "perf", - "perf-inline", - "perf-literal", - "perf-literal-multisubstring", - "perf-literal-substring", - "std", - "syntax", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.6.29", - "dependencies": [], - "deps": [], - "features": [ - "default", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.5", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))" - } - ] - }, - { - "name": "spin", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"x86_64\"))" - } - ] - }, - { - "name": "untrusted", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))" - } - ] - } - ], - "features": [ - "alloc", - "default", - "dev_urandom_fallback" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ron@0.7.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", - "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", - "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", - "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "argfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#argfile@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "assert_fs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#assert_fs@1.1.2", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "bincode", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bincode@1.3.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cachedir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cachedir@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap_complete_command", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap_complete_command@0.6.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clearscreen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clearscreen@3.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globwalk", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globwalk@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "insta_cmd", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta-cmd@0.6.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "is_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "mimalloc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - }, - { - "name": "notify", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#notify@7.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "path_absolutize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_diagnostics", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_graph", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_server", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shellexpand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "test_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tikv_jemallocator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), not(target_os = \"aix\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))" - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wild", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_benchmark#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", - "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", - "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3" - ], - "deps": [ - { - "name": "criterion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#criterion@0.5.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "mimalloc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#mimalloc@0.1.43", - "dep_kinds": [ - { - "kind": "dev", - "target": "cfg(target_os = \"windows\")" - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "red_knot_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_workspace#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tikv_jemallocator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", - "dep_kinds": [ - { - "kind": "dev", - "target": "cfg(all(not(target_os = \"windows\"), not(target_os = \"openbsd\"), any(target_arch = \"x86_64\", target_arch = \"aarch64\", target_arch = \"powerpc64\")))" - } - ] - }, - { - "name": "ureq", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0" - ], - "deps": [ - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "seahash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", - "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6" - ], - "deps": [ - { - "name": "camino", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#camino@1.1.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "countme", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dashmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dunce", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "filetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.25", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "matchit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "path_slash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_tree", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_time", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ] - }, - { - "name": "zip", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "cache", - "default", - "ignore", - "os", - "ruff_cache", - "serde", - "testing", - "tracing-subscriber", - "tracing-tree" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_dev#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", - "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", - "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "imara_diff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#imara-diff@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indicatif", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.5", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libcst_native", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pretty_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pretty_assertions@1.4.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rayon", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rayon@1.10.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_diagnostics", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_codegen", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "similar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_indicatif", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0" - ], - "deps": [ - { - "name": "drop_bomb", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#drop_bomb@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "schemars", - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "red_knot_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/red_knot_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_db", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_db#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zip", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clap", - "schemars", - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "dependencies": [ - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" - ], - "deps": [ - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", - "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", - "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", - "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "annotate_snippets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "chrono", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.38", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "fern", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fern@0.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "imperative", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#imperative@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "is_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_wsl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libcst_native", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libcst@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "natord", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#natord@1.0.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "path_absolutize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pathdiff", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pep440_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pyproject_toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pyproject-toml@0.13.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quick_junit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quick-junit@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_diagnostics", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_codegen", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_index", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_literal", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_stdlib", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "similar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strum_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "test_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "typed_arena", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_normalization", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_names2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clap", - "default", - "schemars", - "test-rules" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", - "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_diagnostics", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_with", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "test_case", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "aho_corasick", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "compact_str", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "cache", - "schemars", - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast_integration_tests#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" - ], - "deps": [ - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "dependencies": [ - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" - ], - "deps": [ - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_literal", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "clap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "countme", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#countme@3.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "similar", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "schemars", - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "dependencies": [ - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" - ], - "deps": [ - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_literal#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unic_ucd_category", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", - "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ], - "deps": [ - { - "name": "annotate_snippets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#annotate-snippets@0.9.2", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "bstr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bstr@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "compact_str", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#compact_str@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_normalization", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_names2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "walkdir", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_resolver#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0" - ], - "deps": [ - { - "name": "env_logger", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#env_logger@0.11.5", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_index", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_index#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_stdlib", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "schemars", - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_stdlib#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" - ], - "deps": [ - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia_integration_tests#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0" - ], - "deps": [ - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_server#0.2.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", - "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "insta", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#insta@1.41.1", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "jod_thread", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#jod-thread@0.1.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_vendor = \"apple\")" - } - ] - }, - { - "name": "lsp_server", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lsp-server@0.7.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lsp_types", - "pkg": "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#lsp-types@0.95.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_diagnostics", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_diagnostics#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_notebook", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_notebook#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_codegen", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_index", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shellexpand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thiserror", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", - "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0" - ], - "deps": [ - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "static_assertions", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "schemars", - "serde" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_wasm#0.7.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45" - ], - "deps": [ - { - "name": "console_error_panic_hook", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "console_log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_log@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_codegen", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_codegen#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_index", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_index#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_parser", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_parser#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_trivia", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_trivia#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_text_size", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_text_size#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_workspace", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_test", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - } - ], - "features": [ - "console_error_panic_hook", - "default" - ] - }, - { - "id": "path+file:///home/micha/astral/ruff/crates/ruff_workspace#0.0.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19" - ], - "deps": [ - { - "name": "anyhow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.93", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "colored", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#colored@2.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "etcetera", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(target_arch = \"wasm32\"))" - } - ] - }, - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "globset", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#globset@0.4.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ignore", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ignore@0.4.23", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "is_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#is-macro@0.3.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "itertools", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itertools@0.13.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "matchit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "path_absolutize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-absolutize@3.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "path_slash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#path-slash@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pep440_rs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pep440_rs@0.7.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_cache", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_cache#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_graph", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_graph#0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_linter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_linter#0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "ruff_macros", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_macros#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_ast", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_ast#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_formatter", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_formatter#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_python_semantic", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_python_semantic#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ruff_source_file", - "pkg": "path+file:///home/micha/astral/ruff/crates/ruff_source_file#0.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "shellexpand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "strum", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tempfile", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ] - }, - { - "name": "toml", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "schemars" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rust-stemmers@1.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "bitflags", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "libc_errno", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - }, - { - "kind": null, - "target": "cfg(windows)" - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - }, - { - "name": "linux_raw_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.14", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))" - }, - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [ - "alloc", - "default", - "fs", - "libc-extra-traits", - "std", - "termios", - "use-libc-auxv" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "subtle", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zeroize", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "log", - "logging", - "ring", - "std", - "tls12" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.102.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ], - "deps": [ - { - "name": "ring", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "untrusted", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "ring", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa@0.18.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", - "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", - "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40" - ], - "deps": [ - { - "name": "append_only_vec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#append-only-vec@0.1.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "arc_swap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.7.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam@0.8.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "dashmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "hashlink", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#hashlink@0.9.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "parking_lot", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustc_hash", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa_macro_rules", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "salsa_macros", - "pkg": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macro-rules@0.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "git+https://github.com/salsa-rs/salsa.git?rev=254c749b02cde2fd29852a7463a33e800b771758#salsa-macros@0.18.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "heck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8" - ], - "deps": [ - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" - ], - "deps": [ - { - "name": "dyn_clone", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.17", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "schemars_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "derive", - "schemars_derive" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.21", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_derive_internals", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215" - ], - "deps": [ - { - "name": "serde_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": null, - "target": "cfg(any())" - } - ] - } - ], - "features": [ - "alloc", - "default", - "derive", - "rc", - "serde_derive", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde-wasm-bindgen@0.6.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "ryu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.17", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.19", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_test@1.0.177", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with@3.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_with_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "darling", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#darling@0.20.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "cpufeatures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.13", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" - } - ] - }, - { - "name": "digest", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#shellexpand@3.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1" - ], - "deps": [ - { - "name": "dirs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "base-0", - "default", - "dirs", - "tilde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#similar@2.5.0", - "dependencies": [], - "deps": [], - "features": [ - "default", - "inline", - "text" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dependencies": [], - "deps": [], - "features": [ - "const_generics", - "union" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8", - "dependencies": [], - "deps": [], - "features": [ - "once" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strip-ansi-escapes@0.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1" - ], - "deps": [ - { - "name": "vte", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.10.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4" - ], - "deps": [ - { - "name": "strum_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std", - "strum_macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "heck", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustversion", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.15", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.5.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "full", - "parsing", - "printing", - "proc-macro", - "quote" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_ident", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "fold", - "full", - "parsing", - "printing", - "proc-macro", - "visit", - "visit-mut" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "proc-macro" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tempfile@3.14.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fastrand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\"))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#terminal_size@0.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0" - ], - "deps": [ - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ] - }, - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#terminfo@0.8.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2" - ], - "deps": [ - { - "name": "dirs", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "fnv", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "phf", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "phf_codegen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#termtree@0.4.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#test-case@3.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1" - ], - "deps": [ - { - "name": "test_case_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#test-case-macros@3.3.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "test_case_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#test-case-core@3.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.67", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67" - ], - "deps": [ - { - "name": "thiserror_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3" - ], - "deps": [ - { - "name": "thiserror_impl", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.67", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "background_threads_runtime_support" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemallocator@0.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tikv_jemalloc_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tikv-jemalloc-sys@0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "background_threads_runtime_support", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.7.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4" - ], - "deps": [ - { - "name": "displaydoc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "zerovec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinytemplate@1.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_json", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.133", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" - ], - "deps": [ - { - "name": "tinyvec_macros", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "tinyvec_macros" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml@0.8.19", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_edit", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "display", - "parse" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.22.20", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18" - ], - "deps": [ - { - "name": "indexmap", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde_spanned", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@0.6.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "toml_datetime", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.6.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winnow", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "display", - "parse", - "serde" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "pin_project_lite", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_attributes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "attributes", - "default", - "log", - "release_max_level_debug", - "std", - "tracing-attributes" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.27", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0" - ], - "deps": [ - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "valuable", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(tracing_unstable)" - } - ] - } - ], - "features": [ - "default", - "once_cell", - "std", - "valuable" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-flame@0.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" - ], - "deps": [ - { - "name": "lazy_static", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "smallvec" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-indicatif@0.3.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" - ], - "deps": [ - { - "name": "indicatif", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.17.9", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32" - ], - "deps": [ - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "log-tracer", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0" - ], - "deps": [ - { - "name": "matchers", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.1.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "nu_ansi_term", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.46.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "regex", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#regex@1.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "sharded_slab", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "thread_local", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.8", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.40", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "ansi", - "default", - "env-filter", - "fmt", - "matchers", - "nu-ansi-term", - "once_cell", - "regex", - "registry", - "sharded-slab", - "smallvec", - "std", - "thread_local", - "tracing", - "tracing-log" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#tracing-tree@0.4.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18" - ], - "deps": [ - { - "name": "nu_ansi_term", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_core", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.32", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "tracing_subscriber", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.18", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "tracing-log" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#typed-arena@2.0.2", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.17.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ucd-trie@0.1.6", - "dependencies": [], - "deps": [], - "features": [ - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0" - ], - "deps": [ - { - "name": "unic_char_range", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-category@0.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", - "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0" - ], - "deps": [ - { - "name": "matches", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unic_char_property", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unic_char_range", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unic_ucd_version", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0" - ], - "deps": [ - { - "name": "unic_common", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.13", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.24", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0" - ], - "deps": [ - { - "name": "tinyvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.6.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.0", - "dependencies": [], - "deps": [], - "features": [ - "cjk", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2@1.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0" - ], - "deps": [ - { - "name": "phf", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_names2_generator", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unicode_names2_generator@1.3.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5" - ], - "deps": [ - { - "name": "getopts", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getopts@0.2.21", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "phf_codegen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#unscanny@0.1.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#ureq@2.10.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1" - ], - "deps": [ - { - "name": "base64", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.10", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rustls_pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "url", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "webpki_roots", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "gzip", - "tls" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215" - ], - "deps": [ - { - "name": "form_urlencoded", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "idna", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#idna@1.0.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "percent_encoding", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "serde", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf16_iter@1.0.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", - "dependencies": [], - "deps": [], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" - ], - "deps": [ - { - "name": "getrandom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.14", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "rand", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "uuid_macro_internal", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))" - } - ] - } - ], - "features": [ - "default", - "fast-rng", - "js", - "macro-diagnostics", - "rng", - "std", - "v4" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#uuid-macro-internal@1.11.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#valuable@0.1.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#version-ranges@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2" - ], - "deps": [ - { - "name": "smallvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.13.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.4", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#vt100@0.15.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1" - ], - "deps": [ - { - "name": "itoa", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.11", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "unicode_width", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.1.13", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vte", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#vte@0.11.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", - "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" - ], - "deps": [ - { - "name": "arrayvec", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "utf8parse", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "vte_generate_state_changes", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#vte_generate_state_changes@0.1.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "arrayvec", - "default", - "no_std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#vte_generate_state_changes@0.1.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8" - ], - "deps": [ - { - "name": "same_file", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "winapi_util", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasi@0.11.0+wasi-snapshot-preview1", - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default", - "spans", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95" - ], - "deps": [ - { - "name": "bumpalo", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.16.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "log", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.22", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "once_cell", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.20.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "spans" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69" - ], - "deps": [ - { - "name": "cfg_if", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "web_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_feature = \"atomics\")" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro@0.2.95", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95" - ], - "deps": [ - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_macro_support", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "spans" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-macro-support@0.2.95", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_backend", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-backend@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_shared", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "spans" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-shared@0.2.95", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test@0.3.45", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", - "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45" - ], - "deps": [ - { - "name": "console_error_panic_hook", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#console_error_panic_hook@0.1.7", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "minicov", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#minicov@0.3.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", wasm_bindgen_unstable_test_coverage))" - } - ] - }, - { - "name": "scoped_tls", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_futures", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-futures@0.4.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen_test_macro", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen-test-macro@0.3.45", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#web-sys@0.3.69", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "Event", - "EventTarget", - "MessageEvent", - "Worker", - "console" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95" - ], - "deps": [ - { - "name": "js_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#js-sys@0.3.72", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))" - } - ] - }, - { - "name": "wasm_bindgen", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#wasm-bindgen@0.2.95", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@0.26.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0" - ], - "deps": [ - { - "name": "pki_types", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.7.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#which@6.0.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", - "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19" - ], - "deps": [ - { - "name": "either", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#either@1.11.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "home", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#home@0.5.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(windows, unix, target_os = \"redox\"))" - } - ] - }, - { - "name": "rustix", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.40", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\", target_os = \"redox\"))" - } - ] - }, - { - "name": "winsafe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#wild@2.2.1", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1" - ], - "deps": [ - { - "name": "glob", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#glob@0.3.1", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#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" - ], - "deps": [ - { - "name": "winapi_i686_pc_windows_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-i686-pc-windows-gnu@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - } - ] - }, - { - "name": "winapi_x86_64_pc_windows_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi-x86_64-pc-windows-gnu@0.4.0", - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - } - ] - } - ], - "features": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "impl-default", - "knownfolders", - "lmapibuf", - "lmserver", - "lmwksta", - "objbase", - "processenv", - "shlobj", - "winbase", - "wincon", - "winerror" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-i686-pc-windows-gnu@0.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.8", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0" - ], - "deps": [ - { - "name": "windows_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winapi-x86_64-pc-windows-gnu@0.4.0", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-core@0.52.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5" - ], - "deps": [ - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_Globalization", - "Win32_System", - "Win32_System_Com", - "Win32_System_Console", - "Win32_UI", - "Win32_UI_Shell", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.52.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "Wdk", - "Wdk_Foundation", - "Wdk_Storage", - "Wdk_Storage_FileSystem", - "Wdk_System", - "Wdk_System_IO", - "Win32", - "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Com", - "Win32_System_Console", - "Win32_System_Diagnostics", - "Win32_System_Diagnostics_Debug", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_SystemInformation", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "Win32_UI", - "Win32_UI_Input", - "Win32_UI_Input_KeyboardAndMouse", - "Win32_UI_Shell", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6" - ], - "deps": [ - { - "name": "windows_targets", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_Threading", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5" - ], - "deps": [ - { - "name": "windows_aarch64_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_aarch64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_x86_64_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", - "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_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_x86_64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6" - ], - "deps": [ - { - "name": "windows_aarch64_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_aarch64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_i686_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_i686_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - }, - { - "name": "windows_x86_64_gnu", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "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_gnullvm", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ] - }, - { - "name": "windows_x86_64_msvc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_gnullvm@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_aarch64_msvc@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnu@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_gnullvm@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_i686_msvc@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnu@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_gnullvm@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.6.18", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4" - ], - "deps": [ - { - "name": "memchr", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#winsafe@0.0.19", - "dependencies": [], - "deps": [], - "features": [ - "kernel" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#write16@1.0.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.5.5", - "dependencies": [], - "deps": [], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yansi@1.0.1", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yansi-term@0.1.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9" - ], - "deps": [ - { - "name": "winapi", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.9", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4" - ], - "deps": [ - { - "name": "serde", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.215", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "stable_deref_trait", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "yoke_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "default", - "derive", - "zerofrom" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.7.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.7.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32" - ], - "deps": [ - { - "name": "zerocopy_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any())" - } - ] - } - ], - "features": [ - "simd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.7.32", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4" - ], - "deps": [ - { - "name": "zerofrom_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "alloc", - "derive" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "synstructure", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.1", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.7.0", - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.10.4", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3" - ], - "deps": [ - { - "name": "yoke", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.7.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerofrom", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.4", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zerovec_derive", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "derive", - "yoke" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.10.3", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87" - ], - "deps": [ - { - "name": "proc_macro2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.89", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "quote", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.37", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "syn", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.87", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zip@0.6.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", - "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2" - ], - "deps": [ - { - "name": "byteorder", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crc32fast", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.4.0", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "crossbeam_utils", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.19", - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))" - } - ] - }, - { - "name": "flate2", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.0.28", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zstd", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "deflate", - "flate2", - "zstd" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.11.2+zstd.1.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2" - ], - "deps": [ - { - "name": "zstd_safe", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "arrays", - "default", - "legacy", - "zdict_builder" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@5.0.2+zstd.1.5.2", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6" - ], - "deps": [ - { - "name": "libc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.164", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - }, - { - "name": "zstd_sys", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6", - "dep_kinds": [ - { - "kind": null, - "target": null - } - ] - } - ], - "features": [ - "arrays", - "legacy", - "std", - "zdict_builder" - ] - }, - { - "id": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.11+zstd.1.5.6", - "dependencies": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30" - ], - "deps": [ - { - "name": "cc", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#cc@1.0.95", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - }, - { - "name": "pkg_config", - "pkg": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.30", - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ] - } - ], - "features": [ - "legacy", - "std", - "zdict_builder" - ] - } - ], - "root": null - }, - "target_directory": "/home/micha/astral/ruff/target", - "version": 1, - "workspace_root": "/home/micha/astral/ruff", - "metadata": { - "dist": { - "auto-includes": false, - "build-local-artifacts": false, - "cargo-dist-version": "0.25.2-prerelease.3", - "ci": "github", - "create-release": true, - "dispatch-releases": true, - "github-release": "announce", - "install-path": [ - "$XDG_BIN_HOME/", - "$XDG_DATA_HOME/../bin", - "~/.local/bin" - ], - "install-updater": false, - "installers": [ - "shell", - "powershell" - ], - "local-artifacts-jobs": [ - "./build-binaries", - "./build-docker" - ], - "post-announce-jobs": [ - "./notify-dependents", - "./publish-docs", - "./publish-playground" - ], - "pr-run-mode": "skip", - "publish-jobs": [ - "./publish-pypi", - "./publish-wasm" - ], - "targets": [ - "aarch64-apple-darwin", - "aarch64-pc-windows-msvc", - "aarch64-unknown-linux-gnu", - "aarch64-unknown-linux-musl", - "arm-unknown-linux-musleabihf", - "armv7-unknown-linux-gnueabihf", - "armv7-unknown-linux-musleabihf", - "i686-pc-windows-msvc", - "i686-unknown-linux-gnu", - "i686-unknown-linux-musl", - "powerpc64-unknown-linux-gnu", - "powerpc64le-unknown-linux-gnu", - "s390x-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-musl" - ], - "unix-archive": ".tar.gz", - "windows-archive": ".zip", - "github-custom-job-permissions": { - "build-docker": { - "contents": "read", - "packages": "write" - }, - "publish-wasm": { - "contents": "read", - "id-token": "write", - "packages": "write" - } - } - } - } -} From 94465860925d0ba90a03594c6617f0737f7d2984 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 16:19:58 +0100 Subject: [PATCH 10/12] Add 0.8 to breaking changes --- BREAKING_CHANGES.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index f6000f25ea600..8f58e861aa167 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -1,5 +1,30 @@ # Breaking Changes +## 0.8.0 + +- **Default to Python 3.9** + + Ruff now defaults to Python 3.9 instead of 3.8 if no explicit Python version is configured using [`ruff.target-version`](https://docs.astral.sh/ruff/settings/#target-version) or [`project.requires-python`](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#python-requires) ([#13896](https://github.com/astral-sh/ruff/pull/13896)) + +- **Changed location of `pydoclint` diagnostics** + + [`pydoclint`](https://docs.astral.sh/ruff/rules/#pydoclint-doc) diagnostics now point to the first-line of the problematic docstring. Previously, this was not the case. + + If you've opted into these preview rules but have them suppressed using + [`noqa`](https://docs.astral.sh/ruff/linter/#error-suppression) comments in + some places, this change may mean that you need to move the `noqa` suppression + comments. Most users should be unaffected by this change. + +- **Use XDG (i.e. `~/.local/bin`) instead of the Cargo home directory in the standalone installer** + + Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). + + This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using `uv` or `pip`, you should be unaffected. + +- **Changes to the line width calculation** + + Ruff now uses a new version of the [unicode-width](https://github.com/unicode-rs/unicode-width) Rust crate to calculate the line width. In very rare cases, this may lead to lines containing Unicode characters being reformatted, or being considered too long when they were not before ([`E501`](https://docs.astral.sh/ruff/rules/line-too-long/)). + ## 0.7.0 - The pytest rules `PT001` and `PT023` now default to omitting the decorator parentheses when there are no arguments From 44831005733871fcbb488d674c6f8571ba02a58e Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 16:42:43 +0100 Subject: [PATCH 11/12] Apply suggestions from code review Co-authored-by: Alex Waygood --- BREAKING_CHANGES.md | 2 +- CHANGELOG.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index 8f58e861aa167..e477ac2062756 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -19,7 +19,7 @@ Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). - This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using `uv` or `pip`, you should be unaffected. + This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using uv or pip, you should be unaffected. - **Changes to the line width calculation** diff --git a/CHANGELOG.md b/CHANGELOG.md index 55200e7ff0cf8..b869e4fa5ca44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ See also, the "Remapped rules" section which may result in disabled rules. Previously, Ruff's installer used `$CARGO_HOME` or `~/.cargo/bin` for its target install directory. Now, Ruff will be installed into `$XDG_BIN_HOME`, `$XDG_DATA_HOME/../bin`, or `~/.local/bin` (in that order). - This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using `uv` or `pip`, you should be unaffected. + This change is only relevant to users of the standalone Ruff installer (using the shell or PowerShell script). If you installed Ruff using uv or pip, you should be unaffected. - **Changes to the line width calculation** From 89b64371cecba7144d98871f18469bb5800b52c3 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 21 Nov 2024 16:56:31 +0100 Subject: [PATCH 12/12] Add https://github.com/astral-sh/ruff/pull/14477/ --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b869e4fa5ca44..c34e38443e7f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,6 +97,7 @@ The following fixes have been stabilized: ### Configuration - Ruff now emits a warning instead of an error when a configuration [`ignore`](https://docs.astral.sh/ruff/settings/#lint_ignore)s a rule that has been removed ([#14435](https://github.com/astral-sh/ruff/pull/14435)) +- Ruff now validates that `lint.flake8-import-conventions.aliases` only uses valid module names and aliases ([#14477](https://github.com/astral-sh/ruff/pull/14477)) ## 0.7.4