diff --git a/CHANGELOG.md b/CHANGELOG.md index 02554528..6ff57261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.8.6] - 2021-02-17 +### Changed +- Updated dependencies, notably `cargo`. +- Updated documentation to clarify SPDX identifiers, and how to use custom ones. + ## [0.8.5] - 2020-12-15 ### Added - [PR#315](https://github.com/EmbarkStudios/cargo-deny/pull/315) resolved [#312](https://github.com/EmbarkStudios/cargo-deny/issues/312) by adding support for excluding packages in the deny configuration file, in addition to the existing support for the `--exclude` CLI option. Thanks [@luser](https://github.com/luser)! @@ -244,7 +249,8 @@ Now each license has to be explicitly approved, either by listing them in `licen - Initial implementation release -[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.8.5...HEAD +[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.8.6...HEAD +[0.8.6]: https://github.com/EmbarkStudios/cargo-deny/compare/0.8.5...0.8.6 [0.8.5]: https://github.com/EmbarkStudios/cargo-deny/compare/0.8.4...0.8.5 [0.8.4]: https://github.com/EmbarkStudios/cargo-deny/compare/0.8.3...0.8.4 [0.8.3]: https://github.com/EmbarkStudios/cargo-deny/compare/0.8.2...0.8.3 diff --git a/Cargo.lock b/Cargo.lock index e7c940e6..17d460e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,9 +154,9 @@ checksum = "81a18687293a1546b67c246452202bbbf143d239cb43494cc163da14979082da" [[package]] name = "cargo" -version = "0.48.0" +version = "0.50.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb089b07971f458df6e92fb0434e0d3d9542f304b6d82b7f288b22c7264f0e7f" +checksum = "9e85a774d067a36bd0874fdb068e2e70aa6b1a7a22a5de9dc100219c7421e2eb" dependencies = [ "anyhow", "atty", @@ -165,7 +165,7 @@ dependencies = [ "clap", "core-foundation", "crates-io", - "crossbeam-utils 0.7.2", + "crossbeam-utils 0.8.0", "crypto-hash", "curl", "curl-sys", @@ -178,7 +178,7 @@ dependencies = [ "glob", "hex 0.4.2", "home", - "humantime 2.0.1", + "humantime", "ignore", "im-rc", "jobserver", @@ -214,7 +214,7 @@ dependencies = [ [[package]] name = "cargo-deny" -version = "0.8.5" +version = "0.8.6" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -604,12 +604,12 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "env_logger" -version = "0.7.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" +checksum = "f26ecb66b4bdca6c1409b40fb255eefc2bd4f6d135dab3c3124f80ffa2a9661e" dependencies = [ "atty", - "humantime 1.3.0", + "humantime", "log", "regex", "termcolor", @@ -841,15 +841,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "humantime" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" -dependencies = [ - "quick-error", -] - [[package]] name = "humantime" version = "2.0.1" @@ -1061,9 +1052,9 @@ dependencies = [ [[package]] name = "miow" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07b88fb9795d4d36d62a012dfbf49a8f5cf12751f36d31a9dbe66d528e58979e" +checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897" dependencies = [ "socket2", "winapi", @@ -1235,12 +1226,6 @@ dependencies = [ "unicode-xid", ] -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - [[package]] name = "quote" version = "1.0.7" @@ -1554,9 +1539,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.4.2" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252" +checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" [[package]] name = "smartstring" diff --git a/Cargo.toml b/Cargo.toml index 00b43fc8..383c3e64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "cargo-deny" description = "Cargo plugin to help you manage large dependency graphs" repository = "https://github.com/EmbarkStudios/cargo-deny" -version = "0.8.5" +version = "0.8.6" authors = ["Embark ", "Jake Shadle "] edition = "2018" license = "MIT OR Apache-2.0" @@ -45,7 +45,7 @@ atty = "0.2" # Used to track various things during check runs bitvec = { version = "0.19", features = ["alloc"] } # Allows us to do eg cargo metadata operations without relying on an external cargo -cargo = { version = "0.48", optional = true } +cargo = { version = "0.50", optional = true } # Timey wimey stuff chrono = "0.4" # Used for diagnostic reporting @@ -55,7 +55,7 @@ codespan-reporting = "0.9" crossbeam = "0.8" # We use this for displaying diffs for dry runs of the `fix` subcommand, as # as in tests for printing easy to read errors -difference = "2.0.0" +difference = "2.0" # Logging utilities fern = "0.6" # We directly interact with git when doing index operations eg during fix @@ -80,7 +80,7 @@ semver = "0.11" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" # Avoid some heap allocations when we likely won't need them -smallvec = "1.4" +smallvec = "1.6" # Versions of smol_str > 0.1.16 include code that only works on latest stable # (1.46+) which is far too aggressive for what is just a transitive dependency smol_str = { version = "=0.1.16" } diff --git a/README.md b/README.md index 2d5bb4c8..ca454f6e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ cargo install cargo-deny && cargo deny init && cargo deny check ### [Install](https://embarkstudios.github.io/cargo-deny/cli/index.html) cargo-deny If you want to use `cargo-deny` without having `cargo` installed, -build `cargo-deny` with the `standalone1 feature. +build `cargo-deny` with the `standalone` feature. This can be useful in Docker Images. ```bash diff --git a/deny.toml b/deny.toml index e620f2d6..47793bfa 100644 --- a/deny.toml +++ b/deny.toml @@ -17,6 +17,8 @@ ignore = [ "RUSTSEC-2020-0036", # cargo uses a a vulnerable version of sized-chunks "RUSTSEC-2020-0041", + # difference is unmaintained but suits our needs just fine + "RUSTSEC-2020-0095", ] [bans] @@ -30,8 +32,6 @@ skip = [ { name = "crossbeam-utils", version = "=0.7.2" }, # cargo uses crypto-hash, which uses an old version { name = "hex", version = "=0.3.2" }, - # cargo depends on both 2.0.1 (direct) and 1.3.0 via env_logger - { name = "humantime", version = "=1.3.0" }, # cargo uses an older version of semver { name = "semver", version = "=0.10.0" }, { name = "semver-parser", version = "=0.7.0" }, diff --git a/docs/src/checks/licenses/cfg.md b/docs/src/checks/licenses/cfg.md index 4adb6b9e..84fdac3f 100644 --- a/docs/src/checks/licenses/cfg.md +++ b/docs/src/checks/licenses/cfg.md @@ -8,11 +8,42 @@ Contains all of the configuration for `cargo deny check license`. {{#include ../../../../tests/cfg/licenses.toml}} ``` +## SPDX Identifiers + +All identifiers used in the license configuration section are expected to be valid SPDX v2.1 short identifiers, either from version 3.7 of the [SPDX License List](https://spdx.org/licenses/), or use a [custom identifier](https://spdx.github.io/spdx-spec/appendix-V-using-SPDX-short-identifiers-in-source-files/#format-for-spdx-license-identifier) by prefixing it with `LicenseRef-`. + +```ini +allow = [ + # The Apache license identifier + "Apache-2.0", + # A custom license identifier + "LicenseRef-Embark-Custom", +] + +# Custom license refs can be specified for crates which don't use a license +# in the SPDX list +[[licenses.clarify]] +name = "a-crate" +expression = "LicenseRef-Embark-Custom" +license-files = [ + { path = "LICENSE", hash = 0x001c7e6c }, +] +``` + +License identifiers can also be coupled with an optional [exception](https://spdx.org/licenses/exceptions-index.html) by appending `WITH ` to the license identifier. Licenses coupled with exceptions are considered distinct from the same license without the exception. + +```ini +allow = [ + # The Apache license identifier + "Apache-2.0", + # The Apache license + LLVM-exception + "Apache-2.0 WITH LLVM-exception", +] +``` + ### The `unlicensed` field (optional) -Determines what happens when a crate has not explicitly specified its license -terms, and no license information could be confidently detected via `LICENSE*` -files in the crate's source. +Determines what happens when a crate has not explicitly specified its license terms, and no license information could be confidently detected via `LICENSE*` files in the crate's source. * `deny` (default) - All unlicensed crates will emit an error and fail the license check @@ -23,30 +54,19 @@ license check ### The `allow` and `deny` fields (optional) -The licenses that should be allowed or denied. The license must be a valid SPDX -v2.1 identifier, which must either be in version 3.7 of the -[SPDX License List](https://spdx.org/licenses/), with an optional -[exception](https://spdx.org/licenses/exceptions-index.html) specified by -`WITH `, or else a user defined license reference denoted by -`LicenseRef-` for a license not in the SPDX License List. - -**NOTE:** The same license cannot appear in both the `allow` and `deny` lists. +The licenses that should be allowed or denied, note that the same license cannot +appear in both the `allow` and `deny` lists. -#### GNU licenses +#### Note on GNU licenses * GPL * AGPL * LGPL * GFDL -The GNU licenses are, of course, different from all the other licenses in the -SPDX list which makes them annoying to deal with. When supplying one of the -above licenses, to either `allow` or `deny`, you **must not** use the suffixes -`-only` or `-or-later`, as they can only be used by the license holder -themselves to decide under which terms to license their code. +The GNU licenses are, of course, different from all the other licenses in the SPDX list which makes them annoying to deal with. When supplying one of the above licenses, to either `allow` or `deny`, you **must not** use the suffixes `-only` or `-or-later`, as they can only be used by the license holder themselves to decide under which terms to license their code. -So, for example, if you wanted to disallow `GPL-2.0` licenses, but allow -`GPL-3.0` licenses, you could use the following configuration. +So, for example, if you wanted to disallow `GPL-2.0` licenses, but allow `GPL-3.0` licenses, you could use the following configuration. ```ini [licenses] @@ -56,12 +76,7 @@ deny = [ "GPL-2.0" ] ### The `exceptions` field (optional) -The license configuration generally applies to the entire crate graph, but this -means that allowing any one license applies to all possible crates, even if -only 1 crate actually uses that license. The `exceptions` field is meant to -allow licenses only for particular crates, to make a clear distinction between -licenses which you are fine with everywhere, versus ones which you want to be -more selective about, and not have implicitly allowed in the future. +The license configuration generally applies to the entire crate graph, but this means that allowing any one license applies to all possible crates, even if only 1 crate actually uses that license. The `exceptions` field is meant to allow licenses only for particular crates, to make a clear distinction between licenses which you are fine with everywhere, versus ones which you want to be more selective about, and not have implicitly allowed in the future. #### The `exceptions.name` field @@ -69,8 +84,7 @@ The name of the crate that you are adding an exception for #### The `exceptions.version` field (optional) -An optional version constraint specifying the range of crate versions you are -excepting. Defaults to all versions (`*`). +An optional version constraint specifying the range of crate versions you are excepting. Defaults to all versions (`*`). #### The `allow` field @@ -92,8 +106,7 @@ exceptions = [ ### The `copyleft` field (optional) -Determines what happens when a license that is considered -[copyleft](https://en.wikipedia.org/wiki/Copyleft) is encountered. +Determines what happens when a license that is considered [copyleft](https://en.wikipedia.org/wiki/Copyleft) is encountered. * `warn` (default) - Will emit a warning that a copyleft license was detected, but will not fail the license check @@ -103,10 +116,7 @@ might not fail if the expression still evaluates to true ### The `allow-osi-fsf-free` field (optional) -Determines what happens when licenses aren't explicitly allowed or denied, but -**are** marked as [OSI Approved](https://opensource.org/licenses) or -[FSF Free/Libre](https://www.gnu.org/licenses/license-list.en.html) in version -3.7 of the [SPDX License List](https://spdx.org/licenses/). +Determines what happens when licenses aren't explicitly allowed or denied, but **are** marked as [OSI Approved](https://opensource.org/licenses) or [FSF Free/Libre](https://www.gnu.org/licenses/license-list.en.html) in version 3.7 of the [SPDX License List](https://spdx.org/licenses/). * `both` - The license is accepted if it is both OSI approved and FSF Free * `either` - The license is accepted if it is either OSI approved or FSF Free @@ -130,23 +140,13 @@ not fail if the expression still evaluates to true ### The `confidence-threshold` field (optional) -`cargo-deny` uses [askalono](https://github.com/amzn/askalono) to determine the -license of a LICENSE file. Due to variability in license texts because of things -like authors, copyright year, and so forth, askalano assigns a confidence score -to its determination, from `0.0` (no confidence) to `1.0` (perfect match). The -confidence threshold value is used to reject the license determination if the -score does not match or exceed the threshold. +`cargo-deny` uses [askalono](https://github.com/amzn/askalono) to determine the license of a LICENSE file. Due to variability in license texts because of things like authors, copyright year, and so forth, askalano assigns a confidence score to its determination, from `0.0` (no confidence) to `1.0` (perfect match). The confidence threshold value is used to reject the license determination if the score does not match or exceed the threshold. `0.0` - `1.0` (default `0.8`) ### The `clarify` field (optional) -In some exceptional cases, a crate will not have easily machine readable license -information, and would by default be considered "unlicensed" by cargo-deny. As a -(hopefully) temporary patch for using the crate, you can specify a clarification -for the crate by manually assigning its SPDX expression, based on one or more -files in the crate's source. cargo-deny will use that expression for as long as -the source files in the crate exactly match the clarification's hashes. +In some exceptional cases, a crate will not have easily machine readable license information, and would by default be considered "unlicensed" by cargo-deny. As a (hopefully) temporary patch for using the crate, you can specify a clarification for the crate by manually assigning its SPDX expression, based on one or more files in the crate's source. cargo-deny will use that expression for as long as the source files in the crate exactly match the clarification's hashes. ```ini [[licenses.clarify]] @@ -163,18 +163,15 @@ The name of the crate that you are clarifying #### The `version` field (optional) -An optional version constraint specifying the range of crate versions you are -clarifying. Defaults to all versions (`*`). +An optional version constraint specifying the range of crate versions you are clarifying. Defaults to all versions (`*`). #### The `expression` field -The [SPDX license expression][SPDX-expr] you are specifying as the license -requirements for the crate. +The [SPDX license expression][SPDX-expr] you are specifying as the license requirements for the crate. #### The `license-files` field -Contains one or more files that will be checked to ensure the license -expression still applies to a version of the crate. +Contains one or more files that will be checked to ensure the license expression still applies to a version of the crate. ##### The `path` field @@ -182,19 +179,15 @@ The crate relative path to a file to be used as a source of truth. ##### The `hash` field -An opaque hash calculated from the file contents. This hash can be obtained -from the output of the license check when cargo-deny can't determine the license -of the file in question. +An opaque hash calculated from the file contents. This hash can be obtained from the output of the license check when cargo-deny can't determine the license of the file in question. ### The `private` field (optional) -It's often not useful or wanted to check for licenses in your own private -workspace crates. So the private field allows you to do so. +It's often not useful or wanted to check for licenses in your own private workspace crates. So the private field allows you to do so. #### The `ignore` field -If `true`, workspace members will not have their license expression checked if -they are not published. +If `true`, workspace members will not have their license expression checked if they are not published. ```ini [package] diff --git a/examples/06_advisories/Cargo.lock b/examples/06_advisories/Cargo.lock index fef63848..222bb065 100644 --- a/examples/06_advisories/Cargo.lock +++ b/examples/06_advisories/Cargo.lock @@ -1,11 +1,27 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +[[package]] +name = "addr2line" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" + [[package]] name = "advisories" version = "0.1.0" dependencies = [ "ammonia 0.7.0", "artifact_serde", + "failure", "libusb", "spdx", "trust-dns-resolver", @@ -68,6 +84,26 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "backtrace" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef5140344c85b01f9bbb4d4b7288a8aa4b3287ccef913a14bcc78a1063623598" +dependencies = [ + "addr2line", + "cfg-if 1.0.0", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + [[package]] name = "base64" version = "0.10.1" @@ -158,6 +194,28 @@ dependencies = [ "syn 1.0.54", ] +[[package]] +name = "failure" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" +dependencies = [ + "backtrace", + "failure_derive", +] + +[[package]] +name = "failure_derive" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.7", + "syn 1.0.54", + "synstructure", +] + [[package]] name = "form_urlencoded" version = "1.0.0" @@ -254,6 +312,12 @@ dependencies = [ "wasi", ] +[[package]] +name = "gimli" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce" + [[package]] name = "heck" version = "0.3.1" @@ -516,6 +580,16 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +[[package]] +name = "miniz_oxide" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" +dependencies = [ + "adler", + "autocfg 1.0.1", +] + [[package]] name = "mio" version = "0.6.23" @@ -564,6 +638,12 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" +[[package]] +name = "object" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397" + [[package]] name = "once_cell" version = "1.5.2" @@ -749,7 +829,7 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" dependencies = [ - "autocfg", + "autocfg 0.1.7", "libc", "rand_chacha 0.1.1", "rand_core 0.4.2", @@ -781,7 +861,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" dependencies = [ - "autocfg", + "autocfg 0.1.7", "rand_core 0.3.1", ] @@ -877,7 +957,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" dependencies = [ - "autocfg", + "autocfg 0.1.7", "rand_core 0.4.2", ] @@ -930,6 +1010,12 @@ dependencies = [ "quick-error", ] +[[package]] +name = "rustc-demangle" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232" + [[package]] name = "rustc-serialize" version = "0.3.24" @@ -1108,6 +1194,18 @@ dependencies = [ "unicode-xid 0.0.4", ] +[[package]] +name = "synstructure" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.7", + "syn 1.0.54", + "unicode-xid 0.2.1", +] + [[package]] name = "tendril" version = "0.4.1" diff --git a/examples/06_advisories/Cargo.toml b/examples/06_advisories/Cargo.toml index cb91037e..f5191825 100644 --- a/examples/06_advisories/Cargo.toml +++ b/examples/06_advisories/Cargo.toml @@ -12,6 +12,9 @@ ammonia = "=0.7.0" # Transitively depends on an ammonia 1.2.0 artifact_serde = "0.3.1" +# Failure has an unsound advisory (and is unmaintained) +failure = "=0.1.8" + # libusb is unmaintained # https://github.com/RustSec/advisory-db/blob/5b35b71cf74eed58696aeeb5a764a9f0a66fe7ba/crates/libusb/RUSTSEC-2016-0004.toml libusb = "0.3.0" diff --git a/scripts/check_external.rs b/scripts/check_external.rs index 4ae92be1..1958add9 100644 --- a/scripts/check_external.rs +++ b/scripts/check_external.rs @@ -1,6 +1,6 @@ const REPOS: &[&str] = &[ "git://github.com/EmbarkStudios/ash-molten.git", - "git://github.com/EmbarkStudios/cargo-about.git", + //"git://github.com/EmbarkStudios/cargo-about.git", //"git://github.com/EmbarkStudios/cargo-fetcher.git", "git://github.com/bitshifter/glam-rs.git", "git://github.com/EmbarkStudios/physx-rs.git", diff --git a/src/advisories/diags.rs b/src/advisories/diags.rs index 07411457..a543958d 100644 --- a/src/advisories/diags.rs +++ b/src/advisories/diags.rs @@ -98,7 +98,7 @@ impl<'a> crate::CheckCtx<'a, super::cfg::ValidConfig> { ) }; - let mut notes = get_notes_from_advisory(&advisory); + let mut notes = get_notes_from_advisory(advisory); if let Some(versions) = versions { if versions.patched.is_empty() { diff --git a/src/advisories/fix.rs b/src/advisories/fix.rs index 36f90b5f..851911f9 100644 --- a/src/advisories/fix.rs +++ b/src/advisories/fix.rs @@ -73,7 +73,7 @@ impl super::Report { warning.versions.as_ref().and_then(|vs| { warning.advisory.as_ref().map(|adv| Patchable { - advisory: &adv, + advisory: adv, patched: &vs.patched, krate: &warning.package, }) @@ -110,7 +110,7 @@ impl super::Report { // (workspace/local crates) that depend on the vulnerable crate version // 3. For each crate in the chain, check to see if has a version // available that ultimately includes a patched version of the vulnerable crate - let (ind, vuln_krate) = super::krate_for_pkg(krates, &patchable.krate).unwrap(); + let (ind, vuln_krate) = super::krate_for_pkg(krates, patchable.krate).unwrap(); let mut pack = Pack::with_kid(Check::Advisories, vuln_krate.id.clone()); @@ -119,7 +119,7 @@ impl super::Report { if patchable.patched.is_empty() { pack.push(diags::NoAvailablePatches { affected_krate_coord: krate_spans.get_coord(ind.index()), - advisory: &patchable.advisory, + advisory: patchable.advisory, }); diags.push(pack); continue; @@ -161,7 +161,7 @@ impl super::Report { if required.is_empty() { pack.push(diags::NoAvailablePatchedVersions { affected_krate_coord: krate_spans.get_coord(ind.index()), - advisory: &patchable.advisory, + advisory: patchable.advisory, }); diags.push(pack); continue; @@ -342,7 +342,7 @@ impl super::Report { ) -> Result, NoVersionReason> { let mut res = None; - index.read_krate(&parent, |ik| { + index.read_krate(parent, |ik| { match ik { Some(parent_krate) => { // Grab all of the versions of the parent crate that have a version requirement that accepts @@ -359,7 +359,7 @@ impl super::Report { dep.kind != Some(krates::cm::DependencyKind::Development) && dep.name == child.name }) { - if !required.iter().any(|vs| dep.req.matches(&vs)) { + if !required.iter().any(|vs| dep.req.matches(vs)) { return None; } } diff --git a/src/advisories/mod.rs b/src/advisories/mod.rs index e1dcaa96..fd4cd299 100644 --- a/src/advisories/mod.rs +++ b/src/advisories/mod.rs @@ -11,7 +11,7 @@ pub trait AuditReporter { fn report(&mut self, report: serde_json::Value); } -/// For when you just want to satisfy AuditReporter without doing anything +/// For when you just want to satisfy `AuditReporter` without doing anything pub struct NoneReporter; impl AuditReporter for NoneReporter { fn report(&mut self, _report: serde_json::Value) {} @@ -67,8 +67,7 @@ pub fn check( let mut send_diag = |pkg: &Package, advisory: &Metadata, versions: Option<&Versions>| match krate_for_pkg( - &ctx.krates, - pkg, + ctx.krates, pkg, ) { Some((i, krate)) => { // This is a workaround for https://github.com/steveklabnik/semver/issues/172, @@ -130,13 +129,13 @@ pub fn check( .iter_warnings() .filter_map(|(_, wi)| wi.advisory.as_ref().map(|wia| (wi, wia))) { - send_diag(&warning.package, &advisory, warning.versions.as_ref()); + send_diag(&warning.package, advisory, warning.versions.as_ref()); } match yanked { Ok(yanked) => { for pkg in yanked { - match krate_for_pkg(&ctx.krates, &pkg) { + match krate_for_pkg(ctx.krates, pkg) { Some((ind, krate)) => { sink.push(ctx.diag_for_yanked(krate, ind)); } diff --git a/src/bans/cfg.rs b/src/bans/cfg.rs index 3ec4c5f8..f0cfd18a 100644 --- a/src/bans/cfg.rs +++ b/src/bans/cfg.rs @@ -177,7 +177,7 @@ impl crate::cfg::UnvalidatedConfig for Config { } for a in &allowed { - if let Ok(si) = skipped.binary_search(&a) { + if let Ok(si) = skipped.binary_search(a) { add_diag((a, "allow"), (&skipped[si], "skip")); } } diff --git a/src/bans/mod.rs b/src/bans/mod.rs index e963d29f..f422dd02 100644 --- a/src/bans/mod.rs +++ b/src/bans/mod.rs @@ -212,7 +212,6 @@ pub fn check( highlight, tree_skipped, wildcards, - .. } = ctx.cfg; let krate_spans = &ctx.krate_spans; diff --git a/src/diag/obj_grapher.rs b/src/diag/obj_grapher.rs index a1f884cc..acd5f641 100644 --- a/src/diag/obj_grapher.rs +++ b/src/diag/obj_grapher.rs @@ -22,7 +22,7 @@ fn is_false(v: &bool) -> bool { } fn is_normal(v: &'static str) -> bool { - v == "" + v.is_empty() } #[allow(clippy::ptr_arg)] diff --git a/src/index/bare.rs b/src/index/bare.rs index d180555c..1420e8f9 100644 --- a/src/index/bare.rs +++ b/src/index/bare.rs @@ -1,4 +1,4 @@ -//! This is a copy of https://github.com/frewsxcv/rust-crates-index/pull/41 so +//! This is a copy of so //! that we can make releases of cargo-deny until/if it is merged and released use super::IndexKrate; @@ -72,7 +72,10 @@ impl<'a> BareIndexRepo<'a> { let commit = repo.find_commit(head)?; let tree = commit.tree()?; - unsafe { std::mem::transmute::, git2::Tree<'static>>(tree) } + #[allow(unsafe_code)] // TODO: Can we get rid of this transmute? + unsafe { + std::mem::transmute::, git2::Tree<'static>>(tree) + } }; Ok(Self { @@ -110,7 +113,7 @@ impl<'a> BareIndexRepo<'a> { } fn krate_from_blob(&self, path: &str) -> Result { - let entry = self.tree.as_ref().unwrap().get_path(&Path::new(path))?; + let entry = self.tree.as_ref().unwrap().get_path(Path::new(path))?; let object = entry.to_object(&self.repo)?; let blob = object.as_blob().context("unable to get blob contents")?; diff --git a/src/index/mod.rs b/src/index/mod.rs index cb75d17f..18a77682 100644 --- a/src/index/mod.rs +++ b/src/index/mod.rs @@ -74,7 +74,7 @@ impl IndexKrate { "looks like a different Cargo's cache, bailing out" ); - fn split<'a>(haystack: &'a [u8], needle: u8) -> impl Iterator + 'a { + fn split(haystack: &[u8], needle: u8) -> impl Iterator { struct Split<'a> { haystack: &'a [u8], needle: u8, @@ -180,12 +180,7 @@ impl Index { where F: FnMut(Option<&IndexKrate>), { - if !krate - .source - .as_ref() - .map(|src| src.is_registry()) - .unwrap_or(false) - { + if !krate.source.as_ref().map_or(false, |src| src.is_registry()) { func(None); return; } @@ -204,6 +199,7 @@ impl Index { if self.opened[ind].is_none() { match self.registries[ind].open_or_clone() { Ok(bir) => { + #[allow(unsafe_code)] // TODO: Can we get rid of this transmute? let bir = unsafe { std::mem::transmute::<_, BareIndexRepo<'static>>(bir) }; self.opened[ind] = Some(bir); } @@ -234,7 +230,7 @@ impl Drop for Index { } } -/// Converts a full url, eg https://github.com/rust-lang/crates.io-index, into +/// Converts a full url, eg , into /// the root directory name where cargo itself will fetch it on disk pub(crate) fn url_to_local_dir(url: &str) -> Result<(String, String), Error> { fn to_hex(num: u64) -> String { diff --git a/src/lib.rs b/src/lib.rs index 611daf04..831af588 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,46 @@ -#![warn(clippy::all)] -#![warn(rust_2018_idioms)] +// Standard Embark lints +#![deny(unsafe_code)] +#![warn( + clippy::all, + clippy::doc_markdown, + clippy::dbg_macro, + clippy::todo, + clippy::empty_enum, + clippy::enum_glob_use, + clippy::pub_enum_variant_names, + clippy::mem_forget, + clippy::unused_self, + clippy::filter_map_next, + clippy::needless_continue, + clippy::explicit_into_iter_loop, + clippy::needless_borrow, + clippy::match_wildcard_for_single_variants, + clippy::if_let_mutex, + clippy::mismatched_target_os, + clippy::await_holding_lock, + clippy::match_on_vec_items, + clippy::imprecise_flops, + clippy::suboptimal_flops, + clippy::lossy_float_literal, + clippy::let_unit_value, + clippy::debug_assert_with_mut_call, + clippy::ref_option_ref, + clippy::map_flatten, + clippy::rest_pat_in_fully_bound_structs, + clippy::fn_params_excessive_bools, + clippy::exit, + clippy::inefficient_to_string, + clippy::linkedlist, + clippy::string_to_string, + clippy::macro_use_imports, + clippy::option_option, + clippy::verbose_file_reads, + clippy::unnested_or_patterns, + clippy::map_unwrap_or, + rust_2018_idioms, + future_incompatible, + nonstandard_style +)] #![cfg_attr(docsrs, feature(external_doc))] //! # ❌ cargo-deny @@ -244,17 +285,14 @@ impl Krate { /// Returns true if the crate is marked as `publish = false`, or /// it is only published to the specified private registries pub(crate) fn is_private(&self, private_registries: &[&str]) -> bool { - self.publish - .as_ref() - .map(|v| { - if v.is_empty() { - true - } else { - v.iter() - .all(|reg| private_registries.contains(®.as_str())) - } - }) - .unwrap_or(false) + self.publish.as_ref().map_or(false, |v| { + if v.is_empty() { + true + } else { + v.iter() + .all(|reg| private_registries.contains(®.as_str())) + } + }) } } diff --git a/src/licenses/cfg.rs b/src/licenses/cfg.rs index af082fd9..b58ad7b2 100644 --- a/src/licenses/cfg.rs +++ b/src/licenses/cfg.rs @@ -245,7 +245,7 @@ impl crate::cfg::UnvalidatedConfig for Config { // denied and allowed, that's confusing and probably not intended, so // they should pick one for (di, d) in denied.iter().enumerate() { - if let Ok(ai) = allowed.binary_search(&d) { + if let Ok(ai) = allowed.binary_search(d) { diags.push( Diagnostic::error() .with_message("a license id was specified in both `allow` and `deny`") diff --git a/src/licenses/gather.rs b/src/licenses/gather.rs index 05d2b91e..302b2d79 100644 --- a/src/licenses/gather.rs +++ b/src/licenses/gather.rs @@ -279,7 +279,7 @@ impl LicensePack { // but we want to see what it thinks the license is if the confidence // is somewhat ok at least if lic_match.score >= confidence { - match spdx::license_id(&identified.name) { + match spdx::license_id(identified.name) { Some(id) => { if lic_count > 0 { expr.push_str(" AND "); @@ -587,7 +587,7 @@ impl Gatherer { let mut license_pack = None; // 1 - if let Some(ref cfg) = cfg { + if let Some(cfg) = cfg { for clarification in iter_clarifications(&cfg.clarifications, krate) { let lp = match license_pack { Some(ref lp) => lp, @@ -601,7 +601,7 @@ impl Gatherer { // the set of detected licenses, if they do, we use the clarification's // license expression as the license requirements for this crate let clarifications_match = clarification.license_files.iter().all(|clf| { - match lp.license_files_match(&clf) { + match lp.license_files_match(clf) { Ok(_) => true, Err(reason) => { if let MismatchReason::FileNotFound = reason { diff --git a/src/licenses/mod.rs b/src/licenses/mod.rs index deb9171f..e1cdfd8c 100644 --- a/src/licenses/mod.rs +++ b/src/licenses/mod.rs @@ -291,7 +291,7 @@ pub fn check( && krate_lic_nfo.krate.is_private(&private_registries) { pack.push(diags::SkippedPrivateWorkspaceCrate { - krate: &krate_lic_nfo.krate, + krate: krate_lic_nfo.krate, }); sink.push(pack); continue; @@ -302,8 +302,8 @@ pub fn check( pack.push(evaluate_expression( &ctx.cfg, &krate_lic_nfo, - &expr, - &nfo, + expr, + nfo, &mut hits, )); } @@ -315,7 +315,7 @@ pub fn check( }; pack.push(diags::Unlicensed { - krate: &krate_lic_nfo.krate, + krate: krate_lic_nfo.krate, severity, breadcrumbs: krate_lic_nfo.labels.into_iter().collect(), }); diff --git a/src/manifest/dependency.rs b/src/manifest/dependency.rs index fddcba63..87cb731e 100644 --- a/src/manifest/dependency.rs +++ b/src/manifest/dependency.rs @@ -113,8 +113,7 @@ impl Dependency { pub fn set_features(mut self, features: Option>) -> Dependency { self.features = features.map(|f| { f.iter() - .map(|x| x.split(' ').map(String::from)) - .flatten() + .flat_map(|x| x.split(' ').map(String::from)) .filter(|s| !s.is_empty()) .collect::>() }); @@ -137,7 +136,7 @@ impl Dependency { /// that is, either the alias (rename field if Some), /// or the official package name (name field). pub fn name_in_manifest(&self) -> &str { - &self.rename().unwrap_or(&self.name) + self.rename().unwrap_or(&self.name) } /// Set the value of registry for the dependency @@ -170,7 +169,7 @@ impl Dependency { /// Get the alias for the dependency (if any) pub fn rename(&self) -> Option<&str> { match &self.rename { - Some(rename) => Some(&rename), + Some(rename) => Some(rename), None => None, } } diff --git a/src/manifest/mod.rs b/src/manifest/mod.rs index 3e07b788..8e6b68ad 100644 --- a/src/manifest/mod.rs +++ b/src/manifest/mod.rs @@ -19,7 +19,7 @@ fn merge_inline_table(old_dep: &mut toml_edit::Item, new: &toml_edit::Item) { } fn str_or_1_len_table(item: &toml_edit::Item) -> bool { - item.is_str() || item.as_table_like().map(|t| t.len() == 1).unwrap_or(false) + item.is_str() || item.as_table_like().map_or(false, |t| t.len() == 1) } fn merge_dependencies(old_dep: &mut toml_edit::Item, new: &dep::Dependency) { @@ -148,7 +148,7 @@ impl Manifest { .unwrap_or(name); if let Some(update_dep) = deps.iter().find(|dep| dep.name == dep_name) { - self.update_table_named_entry(&table_path, &name, update_dep)?; + self.update_table_named_entry(&table_path, name, update_dep)?; } } } diff --git a/tests/advisories.rs b/tests/advisories.rs index 0ae15c87..6056ca2e 100644 --- a/tests/advisories.rs +++ b/tests/advisories.rs @@ -197,10 +197,14 @@ fn detects_unsound() { ) .unwrap(); - let unsound_diag = find_by_code(&diags, "RUSTSEC-2019-0035").unwrap(); + let unsound_diag = find_by_code(&diags, "RUSTSEC-2019-0036").unwrap(); assert_field_eq!(unsound_diag, "/fields/severity", "warning"); - assert_field_eq!(unsound_diag, "/fields/message", "Unaligned memory access"); + assert_field_eq!( + unsound_diag, + "/fields/message", + "Type confusion if __private_get_type_id__ is overriden" + ); assert_field_eq!( unsound_diag, "/fields/labels/0/message", @@ -209,7 +213,7 @@ fn detects_unsound() { assert_field_eq!( unsound_diag, "/fields/labels/0/span", - "rand_core 0.3.1 registry+https://github.com/rust-lang/crates.io-index" + "failure 0.1.8 registry+https://github.com/rust-lang/crates.io-index" ); } diff --git a/tests/test_data/advisories/06_Cargo.lock b/tests/test_data/advisories/06_Cargo.lock index fef63848..222bb065 100644 --- a/tests/test_data/advisories/06_Cargo.lock +++ b/tests/test_data/advisories/06_Cargo.lock @@ -1,11 +1,27 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +[[package]] +name = "addr2line" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" + [[package]] name = "advisories" version = "0.1.0" dependencies = [ "ammonia 0.7.0", "artifact_serde", + "failure", "libusb", "spdx", "trust-dns-resolver", @@ -68,6 +84,26 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "backtrace" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef5140344c85b01f9bbb4d4b7288a8aa4b3287ccef913a14bcc78a1063623598" +dependencies = [ + "addr2line", + "cfg-if 1.0.0", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + [[package]] name = "base64" version = "0.10.1" @@ -158,6 +194,28 @@ dependencies = [ "syn 1.0.54", ] +[[package]] +name = "failure" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" +dependencies = [ + "backtrace", + "failure_derive", +] + +[[package]] +name = "failure_derive" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.7", + "syn 1.0.54", + "synstructure", +] + [[package]] name = "form_urlencoded" version = "1.0.0" @@ -254,6 +312,12 @@ dependencies = [ "wasi", ] +[[package]] +name = "gimli" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce" + [[package]] name = "heck" version = "0.3.1" @@ -516,6 +580,16 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +[[package]] +name = "miniz_oxide" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" +dependencies = [ + "adler", + "autocfg 1.0.1", +] + [[package]] name = "mio" version = "0.6.23" @@ -564,6 +638,12 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" +[[package]] +name = "object" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397" + [[package]] name = "once_cell" version = "1.5.2" @@ -749,7 +829,7 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" dependencies = [ - "autocfg", + "autocfg 0.1.7", "libc", "rand_chacha 0.1.1", "rand_core 0.4.2", @@ -781,7 +861,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" dependencies = [ - "autocfg", + "autocfg 0.1.7", "rand_core 0.3.1", ] @@ -877,7 +957,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" dependencies = [ - "autocfg", + "autocfg 0.1.7", "rand_core 0.4.2", ] @@ -930,6 +1010,12 @@ dependencies = [ "quick-error", ] +[[package]] +name = "rustc-demangle" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232" + [[package]] name = "rustc-serialize" version = "0.3.24" @@ -1108,6 +1194,18 @@ dependencies = [ "unicode-xid 0.0.4", ] +[[package]] +name = "synstructure" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.7", + "syn 1.0.54", + "unicode-xid 0.2.1", +] + [[package]] name = "tendril" version = "0.4.1" diff --git a/tests/test_data/advisories/06_advisories.json b/tests/test_data/advisories/06_advisories.json index fb1ce2c8..3bcff14f 100644 --- a/tests/test_data/advisories/06_advisories.json +++ b/tests/test_data/advisories/06_advisories.json @@ -1 +1 @@ -{"packages":[{"name":"advisories","version":"0.1.0","id":"advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)","license":null,"license_file":null,"description":null,"source":null,"dependencies":[{"name":"ammonia","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":"artifact_serde","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":"libusb","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":"spdx","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":"trust-dns-resolver","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["bin"],"crate_types":["bin"],"name":"advisories","src_path":"/home/jake/code/cargo-deny/examples/06_advisories/src/main.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/code/cargo-deny/examples/06_advisories/Cargo.toml","metadata":null,"publish":null,"authors":["Jake Shadle "],"categories":[],"keywords":[],"readme":"README.md","repository":null,"edition":"2018","links":null},{"name":"ammonia","version":"0.7.0","id":"ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"HTML Sanitization","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"html5ever","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.19","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":"^0.2","kind":null,"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":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"url","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ammonia","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-0.7.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-0.7.0/Cargo.toml","metadata":null,"publish":null,"authors":["Michael Howell "],"categories":[],"keywords":["sanitization","html"],"readme":"README.md","repository":"https://github.com/notriddle/ammonia","edition":"2015","links":null},{"name":"ammonia","version":"1.2.0","id":"ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"HTML Sanitization","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"html5ever","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":"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":"maplit","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":"matches","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"url","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":"version-sync","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ammonia","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"ammonia-cat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/examples/ammonia-cat.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"version-numbers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/tests/version-numbers.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Michael Howell "],"categories":["web-programming","text-processing"],"keywords":["sanitization","html","security","xss"],"readme":"README.md","repository":"https://github.com/notriddle/ammonia","edition":"2015","links":null},{"name":"artifact_serde","version":"0.3.1","id":"artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A small library used to deserializing and serializing the Artifact Deck Codes from Valve's DotA Card Game Artifact","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"ammonia","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":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10.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":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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"artifact_serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/artifact_serde-0.3.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/artifact_serde-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Alec Goncharow "],"categories":["encoding"],"keywords":[],"readme":"README.md","repository":"https://github.com/AlecGoncharow/artifact_serde","edition":"2018","links":null},{"name":"async-trait","version":"0.1.42","id":"async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Type erasure for async trait methods","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":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full","visit-mut"],"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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.14","kind":"dev","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.8","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","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.19","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":"async-trait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/tests/test.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/async-trait","edition":"2018","links":null},{"name":"autocfg","version":"0.1.7","id":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"traits","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/traits.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"versions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/versions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"integers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/integers.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"paths","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/paths.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"rustflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/tests/rustflags.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/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","edition":"2015","links":null},{"name":"base64","version":"0.10.1","id":"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","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":"byteorder","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.6","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.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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"make_tables","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/examples/make_tables.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"helpers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/helpers.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"decode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/decode.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"encode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/encode.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/benches/benchmarks.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/Cargo.toml","metadata":null,"publish":null,"authors":["Alice Maz ","Marshall Pierce "],"categories":["encoding"],"keywords":["base64","utf8","encode","decode"],"readme":"README.md","repository":"https://github.com/alicemaz/rust-base64","edition":"2015","links":null},{"name":"bit-set","version":"0.2.0","id":"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A Vec of bits","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bit-vec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"*","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":"*","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bit-set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-set-0.2.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-set-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Alexis Beingessner "],"categories":[],"keywords":["data-structures"],"readme":"README.md","repository":"https://github.com/contain-rs/bit-set","edition":"2015","links":null},{"name":"bit-vec","version":"0.6.2","id":"bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A vector of bits","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":["derive"],"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":"rand_xorshift","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":"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":"bit-vec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.6.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.6.2/benches/bench.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"serde_no_std":["serde/alloc"],"serde_std":["std","serde/std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.6.2/Cargo.toml","metadata":null,"publish":null,"authors":["Alexis Beingessner "],"categories":[],"keywords":["data-structures","bitvec","bitmask","bitmap","bit"],"readme":"README.md","repository":"https://github.com/contain-rs/bit-vec","edition":"2015","links":null},{"name":"bitflags","version":"1.2.1","id":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","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":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":[],"example_generated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/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","edition":"2015","links":null},{"name":"byteorder","version":"1.3.4","id":"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","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":"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":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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.6","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/benches/bench.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Gallant "],"categories":["encoding","parsing"],"keywords":["byte","endian","big-endian","little-endian","binary"],"readme":"README.md","repository":"https://github.com/BurntSushi/byteorder","edition":"2015","links":null},{"name":"bytes","version":"0.5.6","id":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Types and traits for working with bytes","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.60","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["alloc"],"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":"loom","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(loom)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_buf.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_reader.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_buf_mut","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_buf_mut.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_bytes.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_serde.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes_odd_alloc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_bytes_odd_alloc.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_iter.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_take","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_take.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes_vec_alloc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_bytes_vec_alloc.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_chain.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_debug.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bytes_mut","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/benches/bytes_mut.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/benches/bytes.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/benches/buf.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche ","Sean McArthur "],"categories":["network-programming","data-structures"],"keywords":["buffers","zero-copy","io"],"readme":"README.md","repository":"https://github.com/tokio-rs/bytes","edition":"2018","links":null},{"name":"cfg-if","version":"0.1.10","id":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"xcrate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/tests/xcrate.rs","edition":"2018","doctest":false,"test":true}],"features":{"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/alexcrichton/cfg-if","edition":"2018","links":null},{"name":"cfg-if","version":"1.0.0","id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"xcrate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs","edition":"2018","doctest":false,"test":true}],"features":{"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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","edition":"2018","links":null},{"name":"cloudabi","version":"0.0.3","id":"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-2-Clause","license_file":null,"description":"Low level interface to CloudABI. Contains all syscalls and related types.","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.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cloudabi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cloudabi-0.0.3/cloudabi.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["bitflags"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cloudabi-0.0.3/Cargo.toml","metadata":null,"publish":null,"authors":["Nuxi (https://nuxi.nl/) and contributors"],"categories":[],"keywords":["cloudabi"],"readme":null,"repository":"https://github.com/nuxinl/cloudabi","edition":"2015","links":null},{"name":"data-encoding","version":"2.3.1","id":"data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Efficient and customizable data-encoding functions like base64, base32, and hex","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"data-encoding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/data-encoding-2.3.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/data-encoding-2.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Julien Cretin "],"categories":["encoding","no-std"],"keywords":["no_std","base64","base32","hex"],"readme":"README.md","repository":"https://github.com/ia0/data-encoding","edition":"2018","links":null},{"name":"debug_unreachable","version":"0.1.1","id":"debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"unreachable!() in debug, std::intrinsics::unreachable() in release.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unreachable","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":"debug_unreachable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/examples/simple.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"check","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/tests/check.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-debug-unreachable.git","edition":"2015","links":null},{"name":"enum-as-inner","version":"0.3.3","id":"enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A proc-macro for deriving inner field accessor functions on enums.\n","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.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":[],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"enum-as-inner","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/generics.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/unit.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"snake_case","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/snake_case.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/basic.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unnamed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/unnamed.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"named","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/named.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Benjamin Fry "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bluejekyll/enum-as-inner","edition":"2018","links":null},{"name":"form_urlencoded","version":"1.0.0","id":"form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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":"percent-encoding","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.0.0/src/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url","edition":"2015","links":null},{"name":"fuchsia-cprng","version":"0.1.1","id":"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":null,"license_file":"LICENSE","description":"Rust crate for the Fuchsia cryptographically secure pseudorandom number generator","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fuchsia-cprng","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-cprng-0.1.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-cprng-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Erick Tryzelaar "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://fuchsia.googlesource.com/fuchsia/+/master/garnet/public/rust/fuchsia-cprng","edition":"2018","links":null},{"name":"fuchsia-zircon","version":"0.3.3","id":"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-3-Clause","license_file":null,"description":"Rust bindings for the Zircon kernel","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.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fuchsia-zircon-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fuchsia-zircon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-0.3.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Raph Levien "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://fuchsia.googlesource.com/garnet/","edition":"2015","links":null},{"name":"fuchsia-zircon-sys","version":"0.3.3","id":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-3-Clause","license_file":null,"description":"Low-level Rust bindings for the Zircon kernel","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fuchsia-zircon-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-sys-0.3.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"hello","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-sys-0.3.3/examples/hello.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-sys-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Raph Levien "],"categories":[],"keywords":[],"readme":null,"repository":"https://fuchsia.googlesource.com/garnet/","edition":"2015","links":null},{"name":"futf","version":"0.1.4","id":"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Handling fragments of UTF-8","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"mac","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":"new_debug_unreachable","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futf-0.1.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futf-0.1.4/Cargo.toml","metadata":null,"publish":null,"authors":["Keegan McAllister "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/futf","edition":"2015","links":null},{"name":"futures-channel","version":"0.3.8","id":"futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Channels for asynchronous communication using futures-rs.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"futures-sink","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mpsc-close","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/mpsc-close.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/channel.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"oneshot","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/oneshot.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/mpsc.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"sync_mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/benches/sync_mpsc.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["futures-core/alloc"],"cfg-target-has-atomic":["futures-core/cfg-target-has-atomic"],"default":["std"],"sink":["futures-sink"],"std":["alloc","futures-core/std"],"unstable":["futures-core/unstable"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","edition":"2018","links":null},{"name":"futures-core","version":"0.3.8","id":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"The core traits and types in for the `futures` library.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"cfg-target-has-atomic":[],"default":["std"],"std":["alloc"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","edition":"2018","links":null},{"name":"futures-io","version":"0.3.8","id":"futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-io","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std"],"read-initializer":[],"std":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","edition":"2018","links":null},{"name":"futures-task","version":"0.3.8","id":"futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Tools for working with tasks.\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.3.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-task","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"cfg-target-has-atomic":[],"default":["std"],"std":["alloc","once_cell"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","edition":"2018","links":null},{"name":"futures-util","version":"0.3.8","id":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Common utilities and extension traits for the futures-rs library.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures-channel","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":["std"],"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":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"futures-io","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":["std"],"target":null,"registry":null},{"name":"futures-macro","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":"futures-sink","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":"futures-task","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.8","kind":null,"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.1.25","kind":null,"rename":"futures_01","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.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project","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":"pin-utils","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":"proc-macro-hack","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.19","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"proc-macro-nested","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":"slab","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-io","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.9","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-util","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"futures_unordered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.8/benches/futures_unordered.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["futures-core/alloc","futures-task/alloc"],"async-await":[],"async-await-macro":["async-await","futures-macro","proc-macro-hack","proc-macro-nested"],"bilock":[],"cfg-target-has-atomic":["futures-core/cfg-target-has-atomic","futures-task/cfg-target-has-atomic"],"channel":["std","futures-channel"],"compat":["std","futures_01"],"default":["std","async-await","async-await-macro"],"io":["std","futures-io","memchr"],"io-compat":["io","compat","tokio-io"],"read-initializer":["io","futures-io/read-initializer","futures-io/unstable"],"sink":["futures-sink"],"std":["alloc","futures-core/std","futures-task/std","slab"],"unstable":["futures-core/unstable","futures-task/unstable"],"write-all-vectored":["io"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","edition":"2018","links":null},{"name":"getrandom","version":"0.1.15","id":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.1.2","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":"log","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":"wasi","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":"cfg(target_os = \"wasi\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.64","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(unix)","registry":null},{"name":"stdweb","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.18","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.29","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"wasm32-unknown-unknown","registry":null},{"name":"wasm-bindgen-test","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":"wasm32-unknown-unknown","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"common","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/tests/common.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/benches/mod.rs","edition":"2018","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"dummy":[],"rustc-dep-of-std":["compiler_builtins","core"],"std":[],"test-in-browser":["wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["os","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-random/getrandom","edition":"2018","links":null},{"name":"heck","version":"0.3.1","id":"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","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":[{"name":"unicode-segmentation","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Without Boats "],"categories":[],"keywords":["string","case","camel","snake","unicode"],"readme":"README.md","repository":"https://github.com/withoutboats/heck","edition":"2015","links":null},{"name":"hostname","version":"0.3.1","id":"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Cross-platform system's host name functions","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"match_cfg","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":"version-sync","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":"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 = \"redox\"))","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":["sysinfoapi"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hostname","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"hostname","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/examples/hostname.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"version","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/tests/version.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":[],"set":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/Cargo.toml","metadata":{"docs":{"rs":{"features":["set"],"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["fengcen ","svartalf "],"categories":["api-bindings","os"],"keywords":["hostname","gethostname","sethostname"],"readme":"README.md","repository":"https://github.com/svartalf/hostname","edition":"2015","links":null},{"name":"html5ever","version":"0.19.0","id":"html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"High-performance browser-grade HTML5 parser","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.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mac","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":"markup5ever","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":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-test","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":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3","kind":"build","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":"^0.11","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":["full","visit"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"print-rcdom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/print-rcdom.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/noop-tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tree-builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/noop-tree-builder.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"html2html","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/html2html.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"print-tree-actions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/print-tree-actions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tree_builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/tests/tree_builder.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/tests/tokenizer.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serializer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/tests/serializer.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/benches/tokenizer.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"heap_size":["markup5ever/heap_size"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","edition":"2015","links":null},{"name":"html5ever","version":"0.22.5","id":"html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"High-performance browser-grade HTML5 parser","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":"mac","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":"markup5ever","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-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":"typed-arena","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":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","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":"^0.6","kind":"build","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":"^0.15","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":["extra-traits","full","fold"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"print-rcdom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/print-rcdom.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/noop-tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tree-builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/noop-tree-builder.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"html2html","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/html2html.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"arena","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/arena.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"print-tree-actions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/print-tree-actions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tree_builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/tests/tree_builder.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/tests/tokenizer.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serializer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/tests/serializer.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/benches/tokenizer.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":["parser-implementations","web-programming"],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","edition":"2015","links":null},{"name":"idna","version":"0.1.5","id":"idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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":"unicode-bidi","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":"unicode-normalization","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":"rustc-serialize","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":"rustc-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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/src/lib.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/tests/unit.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","edition":"2015","links":null},{"name":"idna","version":"0.2.0","id":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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":"unicode-bidi","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":"unicode-normalization","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":"rustc-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":"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":"idna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/src/lib.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/tests/unit.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","edition":"2015","links":null},{"name":"instant","version":"0.1.9","id":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","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":"time","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(not(any(feature = \"stdweb\", feature = \"wasm-bindgen\")))","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.9/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.9/tests/wasm.rs","edition":"2018","doctest":false,"test":true}],"features":{"inaccurate":[],"now":["time"],"wasm-bindgen":["js-sys","wasm-bindgen_rs","web-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.9/Cargo.toml","metadata":null,"publish":null,"authors":["sebcrozet "],"categories":[],"keywords":["time","wasm"],"readme":"README.md","repository":"https://github.com/sebcrozet/instant","edition":"2018","links":null},{"name":"iovec","version":"0.1.4","id":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Portable buffer type for scatter/gather I/O operations\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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"iovec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":["network-programming","api-bindings"],"keywords":["scatter","gather","vectored","io","networking"],"readme":"README.md","repository":"https://github.com/carllerche/iovec","edition":"2015","links":null},{"name":"ipconfig","version":"0.2.2","id":"ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Get network adapters information and network configuration for windows.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"socket2","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},{"name":"widestring","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(windows)","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":[],"target":"cfg(windows)","registry":null},{"name":"winreg","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(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ipconfig","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/tests/test.rs","edition":"2018","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/build.rs","edition":"2018","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/Cargo.toml","metadata":null,"publish":null,"authors":["Liran Ringel "],"categories":[],"keywords":["ipconfig","network","adapter","interface","windows"],"readme":"README.md","repository":"https://github.com/liranringel/ipconfig","edition":"2018","links":null},{"name":"ipnet","version":"2.3.0","id":"ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.","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":["derive"],"target":null,"registry":null},{"name":"serde_test","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":"ipnet","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Kris Price "],"categories":["network-programming"],"keywords":["IP","CIDR","network","prefix","subnet"],"readme":"README.md","repository":"https://github.com/krisprice/ipnet","edition":"2015","links":null},{"name":"itoa","version":"0.4.6","id":"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Fast functions for printing integer primitives to an io::Write","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/benches/bench.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["value-formatting"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/itoa","edition":"2015","links":null},{"name":"kernel32-sys","version":"0.2.2","id":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Contains function definitions for the Windows API library kernel32. See winapi for types and constants.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"winapi-build","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"kernel32","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["windows","ffi","win32"],"readme":"README.md","repository":"https://github.com/retep998/winapi-rs","edition":"2015","links":null},{"name":"lazy_static","version":"0.2.11","id":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","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":"compiletest_rs","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":"spin","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compile_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/tests/compile_tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/tests/no_std.rs","edition":"2015","doctest":false,"test":true}],"features":{"compiletest":["compiletest_rs"],"nightly":[],"spin_no_std":["nightly","spin"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/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","edition":"2015","links":null},{"name":"lazy_static","version":"1.4.0","id":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/no_std.rs","edition":"2015","doctest":false,"test":true}],"features":{"spin_no_std":["spin"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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","edition":"2015","links":null},{"name":"libc","version":"0.2.77","id":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"const_fn","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/tests/const_fn.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"align":[],"const-extern-fn":[],"default":["std"],"extra_traits":[],"rustc-dep-of-std":["align","rustc-std-workspace-core"],"std":[],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/Cargo.toml","metadata":null,"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","edition":"2015","links":null},{"name":"libusb","version":"0.3.0","id":"libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Rust library for accessing USB devices.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bit-set","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":"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":"libusb-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.3","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":"^0.1.26","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"libusb","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"read_device","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/examples/read_device.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"list_devices","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/examples/list_devices.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"libusb_info","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/examples/libusb_info.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["David Cuddeback "],"categories":[],"keywords":["usb","libusb","hardware","bindings"],"readme":"README.md","repository":"https://github.com/dcuddeback/libusb-rs.git","edition":"2015","links":null},{"name":"libusb-sys","version":"0.2.3","id":"libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"FFI bindings for libusb.","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},{"name":"pkg-config","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"libusb-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"read_device","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/examples/read_device.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"list_devices","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/examples/list_devices.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"libusb_info","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/examples/libusb_info.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/Cargo.toml","metadata":null,"publish":null,"authors":["David Cuddeback "],"categories":[],"keywords":["usb","libusb","hardware","bindings"],"readme":"README.md","repository":"https://github.com/dcuddeback/libusb-sys.git","edition":"2015","links":"usb-1.0"},{"name":"linked-hash-map","version":"0.5.3","id":"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","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":"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":"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":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"linked-hash-map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/tests/serde.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"heapsize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/tests/heapsize.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{"heapsize_impl":["heapsize"],"nightly":[],"serde_impl":["serde","serde_test"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/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","edition":"2015","links":null},{"name":"lock_api","version":"0.4.2","id":"lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","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.114","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.2/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.2/Cargo.toml","metadata":null,"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","edition":"2018","links":null},{"name":"log","version":"0.3.9","id":"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.9/src/lib.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["use_std"],"max_level_debug":["log/max_level_debug"],"max_level_error":["log/max_level_error"],"max_level_info":["log/max_level_info"],"max_level_off":["log/max_level_off"],"max_level_trace":["log/max_level_trace"],"max_level_warn":["log/max_level_warn"],"nightly":[],"release_max_level_debug":["log/release_max_level_debug"],"release_max_level_error":["log/release_max_level_error"],"release_max_level_info":["log/release_max_level_info"],"release_max_level_off":["log/release_max_level_off"],"release_max_level_trace":["log/release_max_level_trace"],"release_max_level_warn":["log/release_max_level_warn"],"use_std":["log/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.9/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":["development-tools::debugging"],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/log","edition":"2015","links":null},{"name":"log","version":"0.4.11","id":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","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":"cfg-if","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":"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":"^0.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"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":"^0.5.2","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filters","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/tests/filters.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/tests/macros.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"kv_unstable":[],"kv_unstable_sval":["kv_unstable","sval/fmt"],"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":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/Cargo.toml","metadata":{"docs":{"rs":{"features":["std","serde","kv_unstable_sval"]}}},"publish":null,"authors":["The Rust Project Developers"],"categories":["development-tools::debugging"],"keywords":["logging"],"readme":"README.md","repository":"https://github.com/rust-lang/log","edition":"2015","links":null},{"name":"lru-cache","version":"0.1.2","id":"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A cache that holds a limited number of key-value pairs","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":"linked-hash-map","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lru-cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lru-cache-0.1.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"heapsize_impl":["heapsize","linked-hash-map/heapsize_impl"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lru-cache-0.1.2/Cargo.toml","metadata":null,"publish":null,"authors":["Stepan Koltsov "],"categories":[],"keywords":["data-structures"],"readme":"README.md","repository":"https://github.com/contain-rs/lru-cache","edition":"2015","links":null},{"name":"mac","version":"0.1.1","id":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A collection of great and ubiqutitous macros.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mac","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mac-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mac-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-mac.git","edition":"2015","links":null},{"name":"maplit","version":"0.1.6","id":"maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Container / collection literal macros for HashMap, HashSet, BTreeMap, BTreeSet.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"maplit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-0.1.6/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-0.1.6/tests/tests.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-0.1.6/Cargo.toml","metadata":{"release":{"no-dev-version":true}},"publish":null,"authors":["bluss"],"categories":["rust-patterns"],"keywords":["literal","data-structure","hashmap","macro"],"readme":null,"repository":"https://github.com/bluss/maplit","edition":"2015","links":null},{"name":"maplit","version":"1.0.2","id":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Collection “literal” macros for HashMap, HashSet, BTreeMap, and BTreeSet.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"maplit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/tests/tests.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/Cargo.toml","metadata":{"release":{"no-dev-version":true}},"publish":null,"authors":["bluss"],"categories":["rust-patterns"],"keywords":["literal","data-structure","hashmap","macro"],"readme":null,"repository":"https://github.com/bluss/maplit","edition":"2015","links":null},{"name":"markup5ever","version":"0.4.0","id":"markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Common code for xml5ever and html5ever","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.3, <0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"heapsize_derive","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":"phf","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"phf_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.3","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.4.0/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.4.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"heap_size":["heapsize","heapsize_derive","string_cache/heapsize"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.4.0/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","edition":"2015","links":null},{"name":"markup5ever","version":"0.7.5","id":"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Common code for xml5ever and html5ever","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.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"phf_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.3","kind":"build","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":"build","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":"build","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":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.5/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.5/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":["parser-implementations","web-programming"],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","edition":"2015","links":null},{"name":"match_cfg","version":"0.1.0","id":"match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A convenience macro to ergonomically define an item depending on a large number\nof `#[cfg]` parameters. Structured like match statement, the first matching\nbranch is the item that gets emitted.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"match_cfg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/match_cfg-0.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["use_core"],"use_core":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/match_cfg-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["gnzlbg "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/gnzlbg/match_cfg","edition":"2015","links":null},{"name":"matches","version":"0.1.8","id":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macro_use_one","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/tests/macro_use_one.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/Cargo.toml","metadata":null,"publish":null,"authors":["Simon Sapin "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/SimonSapin/rust-std-candidates","edition":"2015","links":null},{"name":"mio","version":"0.6.23","id":"mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Lightweight non-blocking IO","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":"^0.1.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"iovec","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":"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":"net2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.36","kind":null,"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.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bytes","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":"env_logger","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tempdir","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":"fuchsia-zircon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"fuchsia\")","registry":null},{"name":"fuchsia-zircon-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"fuchsia\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.54","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"kernel32-sys","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(windows)","registry":null},{"name":"miow","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(windows)","registry":null},{"name":"winapi","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.23/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.23/test/mod.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["with-deprecated"],"with-deprecated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.23/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":["asynchronous"],"keywords":["io","async","non-blocking"],"readme":"README.md","repository":"https://github.com/tokio-rs/mio","edition":"2015","links":null},{"name":"miow","version":"0.2.2","id":"miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A zero overhead I/O library for Windows, focusing on IOCP and Async I/O\nabstractions.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"kernel32-sys","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":"net2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.36","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"winapi","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":"ws2_32-sys","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":"rand","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":"miow","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.2.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.2.2/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":["iocp","windows","io","overlapped"],"readme":"README.md","repository":"https://github.com/alexcrichton/miow","edition":"2015","links":null},{"name":"net2","version":"0.2.37","id":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Extensions to the standard library's networking types as proposed in RFC 1158.\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":"^0.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.54","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"redox\", unix, target_os = \"wasi\"))","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":["handleapi","winsock2","ws2def","ws2ipdef","ws2tcpip"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"net2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.37/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["duration"],"duration":[],"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.37/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/deprecrated/net2-rs","edition":"2015","links":null},{"name":"new_debug_unreachable","version":"1.0.4","id":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"debug_unreachable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/examples/simple.rs","edition":"2018","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"check","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/tests/check.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/Cargo.toml","metadata":null,"publish":null,"authors":["Matt Brubeck ","Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/mbrubeck/rust-debug-unreachable","edition":"2018","links":null},{"name":"once_cell","version":"1.5.2","id":"once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)","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":"parking_lot","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","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.7.2","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.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.2.0","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/bench.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"bench_acquire","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/bench_acquire.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"bench_vs_lazy_static","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/bench_vs_lazy_static.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"lazy_static","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/lazy_static.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"reentrant_init_deadlocks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/reentrant_init_deadlocks.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/regex.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"test_synchronization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/test_synchronization.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"it","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/tests/it.rs","edition":"2018","doctest":false,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Aleksey Kladov "],"categories":["rust-patterns","memory-management"],"keywords":["lazy","static"],"readme":"README.md","repository":"https://github.com/matklad/once_cell","edition":"2018","links":null},{"name":"parking_lot","version":"0.11.1","id":"parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","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":"instant","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":"lock_api","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":"parking_lot_core","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":"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":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.1/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"issue_203","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.1/tests/issue_203.rs","edition":"2018","doctest":false,"test":true}],"features":{"deadlock_detection":["parking_lot_core/deadlock_detection"],"default":[],"nightly":["parking_lot_core/nightly","lock_api/nightly"],"owning_ref":["lock_api/owning_ref"],"send_guard":[],"serde":["lock_api/serde"],"stdweb":["instant/stdweb"],"wasm-bindgen":["instant/wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.1/Cargo.toml","metadata":null,"publish":null,"authors":["Amanieu d'Antras "],"categories":["concurrency"],"keywords":["mutex","condvar","rwlock","once","thread"],"readme":"README.md","repository":"https://github.com/Amanieu/parking_lot","edition":"2018","links":null},{"name":"parking_lot_core","version":"0.8.1","id":"parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","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.49","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":"instant","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":"petgraph","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.1","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.0","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":"^3.3.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.1.56","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.71","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.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["winnt","ntstatus","minwindef","winerror","winbase","errhandlingapi","handleapi"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"deadlock_detection":["petgraph","thread-id","backtrace"],"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.1/Cargo.toml","metadata":null,"publish":null,"authors":["Amanieu d'Antras "],"categories":["concurrency"],"keywords":["mutex","condvar","rwlock","once","thread"],"readme":null,"repository":"https://github.com/Amanieu/parking_lot","edition":"2018","links":null},{"name":"percent-encoding","version":"1.0.1","id":"percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/lib.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","edition":"2015","links":null},{"name":"percent-encoding","version":"2.1.0","id":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","edition":"2015","links":null},{"name":"phf","version":"0.7.24","id":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","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.7.24","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.7.24","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{"core":["phf_shared/core"],"macros":["phf_macros"],"unicase":["phf_shared/unicase"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","edition":"2015","links":null},{"name":"phf_codegen","version":"0.7.24","id":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","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.7.24","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.7.24","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_codegen-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_codegen-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","edition":"2015","links":null},{"name":"phf_generator","version":"0.7.24","id":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"PHF generation logic","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"phf_shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.24","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.6","kind":null,"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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_generator-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_generator-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","edition":"2015","links":null},{"name":"phf_shared","version":"0.7.24","id":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","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.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"unicase","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{"core":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","edition":"2015","links":null},{"name":"pin-project","version":"1.0.2","id":"pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A crate for safe and ergonomic pin-projection.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"pin-project-internal","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":"pin-project-auxiliary-macro","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","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},{"name":"trybuild","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","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"struct-default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/struct-default.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"unsafe_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/unsafe_unpin.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"pinned_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/pinned_drop.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"pinned_drop-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/pinned_drop-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"struct-default-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/struct-default-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"not_unpin-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/not_unpin-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum-default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/enum-default.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum-default-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/enum-default-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"not_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/not_unpin.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"project_replace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/project_replace.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"project_replace-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/project_replace-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"unsafe_unpin-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/unsafe_unpin-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"pin_project","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/pin_project.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"proper_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/proper_unpin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unsafe_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/unsafe_unpin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"pinned_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/pinned_drop.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/lint.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cfg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/cfg.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"repr_packed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/repr_packed.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"drop_order","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/drop_order.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Taiki Endo "],"categories":["no-std","rust-patterns"],"keywords":["pin","macros","attribute"],"readme":"README.md","repository":"https://github.com/taiki-e/pin-project","edition":"2018","links":null},{"name":"pin-project-internal","version":"1.0.2","id":"pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"Implementation detail of the `pin-project` 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","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","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.44","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full","visit-mut"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"pin-project-internal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-1.0.2/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-1.0.2/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Taiki Endo "],"categories":["no-std","rust-patterns"],"keywords":["pin","macros","attribute"],"readme":null,"repository":"https://github.com/taiki-e/pin-project","edition":"2018","links":null},{"name":"pin-project-lite","version":"0.1.11","id":"pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","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},{"name":"trybuild","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"proper_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/proper_unpin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/lint.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Taiki Endo "],"categories":["no-std","rust-patterns"],"keywords":["pin","macros"],"readme":"README.md","repository":"https://github.com/taiki-e/pin-project-lite","edition":"2018","links":null},{"name":"pin-utils","version":"0.1.0","id":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Utilities for pinning\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"pin-utils","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stack_pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/tests/stack_pin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"projection","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/tests/projection.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["Josef Brandl "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang-nursery/pin-utils","edition":"2018","links":null},{"name":"pkg-config","version":"0.3.18","id":"pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.18/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.18/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.18/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","edition":"2015","links":null},{"name":"ppv-lite86","version":"0.2.10","id":"ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.10/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std"],"no_simd":[],"simd":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.10/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","edition":"2018","links":null},{"name":"precomputed-hash","version":"0.1.1","id":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A library intending to be a base dependency to expose a precomputed hash","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"precomputed-hash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/precomputed-hash-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/precomputed-hash-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Emilio Cobos Álvarez "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/emilio/precomputed-hash","edition":"2015","links":null},{"name":"proc-macro2","version":"0.4.30","id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A stable implementation of the upcoming new `proc_macro` API. Comes with an\noption, off by default, to also reimplement itself in terms of the upstream\nunstable API.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-xid","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":"quote","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"proc-macro2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"marker","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/tests/marker.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["proc-macro"],"nightly":[],"proc-macro":[],"span-locations":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/Cargo.toml","metadata":{"docs":{"rs":{"rustc-args":["--cfg","procmacro2_semver_exempt"],"rustdoc-args":["--cfg","procmacro2_semver_exempt"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":["macros"],"readme":"README.md","repository":"https://github.com/alexcrichton/proc-macro2","edition":"2015","links":null},{"name":"proc-macro2","version":"1.0.24","id":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A substitute implementation of the compiler's `proc_macro` API to decouple\ntoken-based libraries from the procedural macro use case.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-xid","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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"proc-macro2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"features","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/features.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"comments","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/comments.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"marker","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/marker.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_fmt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/test_fmt.rs","edition":"2018","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["proc-macro"],"nightly":[],"proc-macro":[],"span-locations":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/Cargo.toml","metadata":{"docs":{"rs":{"rustc-args":["--cfg","procmacro2_semver_exempt"],"rustdoc-args":["--cfg","procmacro2_semver_exempt"],"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["span-locations"]}},"publish":null,"authors":["Alex Crichton ","David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["macros"],"readme":"README.md","repository":"https://github.com/alexcrichton/proc-macro2","edition":"2018","links":null},{"name":"quick-error","version":"1.2.3","id":"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":" A macro which makes error types pleasant to write.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"quick-error","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"context","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/examples/context.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/Cargo.toml","metadata":null,"publish":null,"authors":["Paul Colomiets ","Colin Kiegel "],"categories":["rust-patterns"],"keywords":["macro","error","type","enum"],"readme":null,"repository":"http://github.com/tailhook/quick-error","edition":"2015","links":null},{"name":"quote","version":"0.3.15","id":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Quasi-quoting macro quote!(...)","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.3.15/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.3.15/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.3.15/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":["syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","edition":"2015","links":null},{"name":"quote","version":"0.6.13","id":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.4.21","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["proc-macro"],"proc-macro":["proc-macro2/proc-macro"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","edition":"2015","links":null},{"name":"quote","version":"1.0.7","id":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","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","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.19","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/tests/test.rs","edition":"2018","doctest":false,"test":true}],"features":{"default":["proc-macro"],"proc-macro":["proc-macro2/proc-macro"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","edition":"2018","links":null},{"name":"rand","version":"0.6.5","id":"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"packed_simd","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"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.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_core","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":"rand_hc","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":"rand_isaac","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":"rand_jitter","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":"rand_os","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":"rand_pcg","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":"rand_xorshift","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":"average","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":"rand_xoshiro","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":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"build","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":false,"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":["minwindef","ntsecapi","profileapi","winnt"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"monte-carlo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/examples/monte-carlo.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"monty-hall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/examples/monty-hall.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"uniformity","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/tests/uniformity.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"seq","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/seq.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"distributions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/distributions.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"generators","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/generators.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"misc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/misc.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"alloc":["rand_core/alloc"],"default":["std"],"i128_support":[],"nightly":["simd_support"],"serde1":["rand_core/serde1","rand_isaac/serde1","rand_xorshift/serde1"],"simd_support":["packed_simd"],"std":["rand_core/std","alloc","rand_os","rand_jitter/std"],"stdweb":["rand_os/stdweb"],"wasm-bindgen":["rand_os/wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/Cargo.toml","metadata":{"docs":{"rs":{"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","edition":"2015","links":null},{"name":"rand","version":"0.7.3","id":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","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":"getrandom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.1","kind":null,"rename":"getrandom_package","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.4","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"packed_simd","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["into_bits"],"target":null,"registry":null},{"name":"rand_core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.1","kind":null,"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":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_hc","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_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":"rand_chacha","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(not(target_os = \"emscripten\"))","registry":null},{"name":"rand_hc","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(target_os = \"emscripten\")","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"monte-carlo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/examples/monte-carlo.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"monty-hall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/examples/monty-hall.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"seq","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/seq.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"generators","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/generators.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"misc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/misc.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"weighted","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/weighted.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["rand_core/alloc"],"default":["std"],"getrandom":["getrandom_package","rand_core/getrandom"],"nightly":["simd_support"],"serde1":[],"simd_support":["packed_simd"],"small_rng":["rand_pcg"],"std":["rand_core/std","rand_chacha/std","alloc","getrandom","libc"],"stdweb":["getrandom_package/stdweb"],"wasm-bindgen":["getrandom_package/wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/Cargo.toml","metadata":{"docs":{"rs":{"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","edition":"2018","links":null},{"name":"rand_chacha","version":"0.1.1","id":"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"ChaCha random number generator\n","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.2, <0.4","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"build","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","chacha"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rand_chacha","version":"0.2.2","id":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","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.6","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.5","kind":null,"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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std","simd"],"simd":[],"std":["ppv-lite86/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/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","edition":"2018","links":null},{"name":"rand_core","version":"0.3.1","id":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"rand_core","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"alloc":["rand_core/alloc"],"default":["std"],"serde1":["rand_core/serde1"],"std":["rand_core/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/Cargo.toml","metadata":null,"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","edition":"2015","links":null},{"name":"rand_core","version":"0.4.2","id":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"alloc":[],"serde1":["serde","serde_derive"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/Cargo.toml","metadata":null,"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","edition":"2015","links":null},{"name":"rand_core","version":"0.5.1","id":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","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.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":["derive"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"serde1":["serde"],"std":["alloc","getrandom","getrandom/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/Cargo.toml","metadata":null,"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","edition":"2018","links":null},{"name":"rand_hc","version":"0.1.0","id":"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"HC128 random number generator\n","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.2, <0.4","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_hc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","hc128"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rand_hc","version":"0.2.0","id":"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"HC128 random number generator\n","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":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_hc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.2.0/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","hc128"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2018","links":null},{"name":"rand_isaac","version":"0.1.1","id":"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"ISAAC random number generator\n","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.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","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.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_isaac","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"serde1":["serde","serde_derive","rand_core/serde1"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","isaac"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rand_jitter","version":"0.1.4","id":"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Random number generator based on timing jitter","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":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_core","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":"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(any(target_os = \"macos\", target_os = \"ios\"))","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":["profileapi"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_jitter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/tests/mod.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/benches/mod.rs","edition":"2015","doctest":false,"test":false}],"features":{"std":["rand_core/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":[],"keywords":["random","rng","os"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rand_os","version":"0.1.3","id":"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"OS backed Random Number Generator","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":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_core","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":"rdrand","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":"cfg(target_env = \"sgx\")","registry":null},{"name":"cloudabi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"cloudabi\")","registry":null},{"name":"fuchsia-cprng","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 = \"fuchsia\")","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":["minwindef","ntsecapi","winnt"],"target":"cfg(windows)","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.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"wasm32-unknown-unknown","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_os","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/tests/mod.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":[],"keywords":["random","rng","os"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rand_pcg","version":"0.1.2","id":"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Selected PCG random number generators\n","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.4","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":true,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.2","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":"^0.1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_pcg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lcg64xsh32","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/tests/lcg64xsh32.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mcg128xsl64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/tests/mcg128xsl64.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"serde1":["serde","serde_derive"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","pcg"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rand_xorshift","version":"0.1.1","id":"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Xorshift random number generator\n","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.2, <0.4","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","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.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_xorshift","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/tests/mod.rs","edition":"2015","doctest":false,"test":true}],"features":{"serde1":["serde","serde_derive"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","xorshift"],"readme":"README.md","repository":"https://github.com/rust-random/rand","edition":"2015","links":null},{"name":"rdrand","version":"0.4.0","id":"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"ISC","license_file":null,"description":"An implementation of random number generator based on rdrand and rdseed instructions","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.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rdrand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"rdrand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/benches/rdrand.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"rdseed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/benches/rdseed.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/benches/std.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/Cargo.toml","metadata":null,"publish":null,"authors":["Simonas Kazlauskas "],"categories":[],"keywords":["rand","rdrand","rdseed","random"],"readme":null,"repository":"https://github.com/nagisa/rust_rdrand/","edition":"2015","links":null},{"name":"redox_syscall","version":"0.1.57","id":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","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":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"syscall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.1.57/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.1.57/Cargo.toml","metadata":null,"publish":null,"authors":["Jeremy Soller "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://gitlab.redox-os.org/redox-os/syscall","edition":"2015","links":null},{"name":"regex","version":"1.3.9","id":"regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.7.6","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.2.1","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.18","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"thread_local","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":"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},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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.6.5","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs","edition":"2015","doctest":false,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-single","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-single.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-replace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-replace.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-cheat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-cheat.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-single-cheat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-single-cheat.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-bytes.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_default.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"default-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_default_bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_nfa.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa-utf8bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_nfa_utf8bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_nfa_bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_backtrack.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack-utf8bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_backtrack_utf8bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_backtrack_bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"crates-regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_crates_regex.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["std","perf","unicode","regex-syntax/default"],"pattern":[],"perf":["perf-cache","perf-dfa","perf-inline","perf-literal"],"perf-cache":["thread_local"],"perf-dfa":[],"perf-inline":[],"perf-literal":["aho-corasick","memchr"],"std":[],"unicode":["unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","regex-syntax/unicode"],"unicode-age":["regex-syntax/unicode-age"],"unicode-bool":["regex-syntax/unicode-bool"],"unicode-case":["regex-syntax/unicode-case"],"unicode-gencat":["regex-syntax/unicode-gencat"],"unicode-perl":["regex-syntax/unicode-perl"],"unicode-script":["regex-syntax/unicode-script"],"unicode-segment":["regex-syntax/unicode-segment"],"unstable":["pattern"],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":["text-processing"],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/regex","edition":"2015","links":null},{"name":"regex-syntax","version":"0.6.18","id":"regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/benches/bench.rs","edition":"2015","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/regex","edition":"2015","links":null},{"name":"resolv-conf","version":"0.6.3","id":"resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":" The resolv.conf file parser\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"hostname","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":"quick-error","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"resolv_conf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/examples/parse.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/tests/lib.rs","edition":"2015","doctest":false,"test":true}],"features":{"system":["hostname"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/Cargo.toml","metadata":null,"publish":null,"authors":["paul@colomiets.name"],"categories":["parser-implementations"],"keywords":["dns","unix","conf","resolv"],"readme":"README.md","repository":null,"edition":"2015","links":null},{"name":"rustc-serialize","version":"0.3.24","id":"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Generic serialization/deserialization support corresponding to the\n`derive(RustcEncodable, RustcDecodable)` mode in the compiler. Also includes\nsupport for hex, base64, and json encoding and decoding.\n","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.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustc-serialize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"json","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/benches/json.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"base64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/benches/base64.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"hex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/benches/hex.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/rustc-serialize","edition":"2015","links":null},{"name":"ryu","version":"1.0.5","id":"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","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.7","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.2","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"upstream_benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/examples/upstream_benchmark.rs","edition":"2018","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"exhaustive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/exhaustive.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"common_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/common_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"s2d_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/s2d_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"d2s_table_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/d2s_table_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"s2f_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/s2f_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"f2s_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/f2s_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"d2s_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/d2s_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/benches/bench.rs","edition":"2018","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"small":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/ryu","edition":"2018","links":null},{"name":"scopeguard","version":"1.1.0","id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"readme","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/examples/readme.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["use_std"],"use_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.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":null,"repository":"https://github.com/bluss/scopeguard","edition":"2015","links":null},{"name":"serde","version":"1.0.115","id":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","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.0.115","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.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.115/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.115/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"alloc":[],"default":["std"],"derive":["serde_derive"],"rc":[],"std":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.115/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["derive","rc"]}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["encoding"],"keywords":["serde","serialization","no_std"],"readme":"crates-io.md","repository":"https://github.com/serde-rs/serde","edition":"2015","links":null},{"name":"serde_derive","version":"1.0.115","id":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","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","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.33","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["visit"],"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}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.115/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.115/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":[],"deserialize_in_place":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.115/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":[],"keywords":["serde","serialization","no_std"],"readme":"crates-io.md","repository":"https://github.com/serde-rs/serde","edition":"2015","links":null},{"name":"serde_json","version":"1.0.57","id":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","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":"^1.2","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":"^0.4.3","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.100","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":"^0.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":"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","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","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.19","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["serde/alloc"],"arbitrary_precision":[],"default":["std"],"float_roundtrip":[],"preserve_order":["indexmap"],"raw_value":[],"std":["serde/std"],"unbounded_depth":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/Cargo.toml","metadata":{"docs":{"rs":{"features":["raw_value","unbounded_depth"],"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["raw_value"]}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["encoding"],"keywords":["json","serde","serialization"],"readme":"README.md","repository":"https://github.com/serde-rs/json","edition":"2018","links":null},{"name":"siphasher","version":"0.2.3","id":"siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"SipHash functions from rust-core < 1.13","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.2.3/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","edition":"2015","links":null},{"name":"slab","version":"0.4.2","id":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Pre-allocated storage for a uniform data type","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"slab","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/tests/slab.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":["memory-management","data-structures"],"keywords":["slab","allocator"],"readme":"README.md","repository":"https://github.com/carllerche/slab","edition":"2015","links":null},{"name":"smallvec","version":"1.4.2","id":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/tests/macro.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/benches/bench.rs","edition":"2018","doctest":false,"test":false}],"features":{"const_generics":[],"may_dangle":[],"specialization":[],"union":[],"write":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/Cargo.toml","metadata":null,"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","edition":"2018","links":null},{"name":"socket2","version":"0.3.17","id":"socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"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},{"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":"cfg(any(unix, target_os = \"redox\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.66","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["align"],"target":"cfg(any(unix, target_os = \"redox\"))","registry":null},{"name":"redox_syscall","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.38","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"redox\")","registry":null},{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["handleapi","ws2def","ws2ipdef","ws2tcpip","minwindef"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.17/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"pair":[],"reuseport":[],"unix":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.17/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/alexcrichton/socket2-rs","edition":"2018","links":null},{"name":"spdx","version":"0.3.1","id":"spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Helper crate for SDPX expressions","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":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"smallvec","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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"spdx","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spdx-0.3.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spdx-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Embark ","Jake Shadle "],"categories":[],"keywords":["spdx","license"],"readme":"README.md","repository":"https://github.com/EmbarkStudios/spdx","edition":"2018","links":null},{"name":"string_cache","version":"0.6.2","id":"string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"A string interning library for Rust, developed as part of the Servo project.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"debug_unreachable","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":"heapsize","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.3, <0.5","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":"^0.2","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.7.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"precomputed-hash","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":"serde","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":"string_cache_shared","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":"rand","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":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.6.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.6.2/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"log-events":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.6.2/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/string-cache","edition":"2015","links":null},{"name":"string_cache","version":"0.7.5","id":"string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"A string interning library for Rust, developed as part of the Servo project.","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":"new_debug_unreachable","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":"phf_shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"precomputed-hash","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":"serde","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":"string_cache_shared","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":"rand","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":"string_cache_codegen","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":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/examples/simple.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"small-stack","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/tests/small-stack.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"log-events":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/string-cache","edition":"2015","links":null},{"name":"string_cache_codegen","version":"0.4.4","id":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"A codegen library for string-cache, developed as part of the Servo project.","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.7.15","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.7.4","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","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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache_shared","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_codegen","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_codegen-0.4.4/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_codegen-0.4.4/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/string-cache","edition":"2015","links":null},{"name":"string_cache_shared","version":"0.3.0","id":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Code share between string_cache and string_cache_codegen.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_shared-0.3.0/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_shared-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/string-cache","edition":"2015","links":null},{"name":"syn","version":"0.11.11","id":"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Nom parser for Rust source code","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.7","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"synom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","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.0.4","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syntex_pos","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.58","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syntex_syntax","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.58","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.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":"^1.0.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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.11.11/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"aster":[],"default":["parsing","printing"],"fold":[],"full":[],"parsing":["unicode-xid","synom"],"printing":["quote"],"visit":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.11.11/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/syn","edition":"2015","links":null},{"name":"syn","version":"0.15.44","id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.4.4","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":"^0.6","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"unicode-xid","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":"insta","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":"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":"^0.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.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.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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zzz_stable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/zzz_stable.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_precedence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_precedence.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_derive_input","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_derive_input.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_expr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_expr.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_meta.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ident","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_ident.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_asyncness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_asyncness.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_lit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_lit.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_should_parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_should_parse.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_pat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_pat.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_round_trip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_round_trip.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_parse_buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_parse_buffer.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_generics.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_token_trees","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_token_trees.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_attribute","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_attribute.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_grouping","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_grouping.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/build.rs","edition":"2015","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"],"visit":[],"visit-mut":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}},"playground":{"all-features":true}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/syn","edition":"2015","links":null},{"name":"syn","version":"1.0.54","id":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","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.23","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-xid","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":"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":"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.10","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","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zzz_stable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/zzz_stable.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_precedence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_precedence.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_receiver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_receiver.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ty","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_ty.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_visibility","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_visibility.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_parse_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_parse_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_derive_input","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_derive_input.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_expr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_expr.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_meta.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ident","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_ident.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_stmt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_stmt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_asyncness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_asyncness.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_lit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_lit.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_should_parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_should_parse.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_pat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_pat.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_size","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_size.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_round_trip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_round_trip.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_shebang","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_shebang.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_iterators","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_iterators.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_parse_buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_parse_buffer.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_generics.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_token_trees","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_token_trees.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_path.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_attribute","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_attribute.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_grouping","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_grouping.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_item","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_item.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"rust","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/benches/rust.rs","edition":"2018","required-features":["full","parsing"],"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/benches/file.rs","edition":"2018","required-features":["full","parsing"],"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/build.rs","edition":"2018","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"],"test":["syn-test-suite/all-features"],"visit":[],"visit-mut":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/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"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/syn","edition":"2018","links":null},{"name":"synom","version":"0.11.3","id":"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Stripped-down Nom parser used by Syn","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-xid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.4","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":"^0.11","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["parsing","full"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"synom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/synom-0.11.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/synom-0.11.3/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":[],"readme":"../README.md","repository":"https://github.com/dtolnay/syn","edition":"2015","links":null},{"name":"tendril","version":"0.4.1","id":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Compact buffer/string type for zero-copy parsing","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"encoding","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.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futf","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":"mac","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":"utf-8","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","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.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tendril-0.4.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"fuzz","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tendril-0.4.1/examples/fuzz.rs","edition":"2015","doctest":false,"test":false}],"features":{"bench":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tendril-0.4.1/Cargo.toml","metadata":null,"publish":null,"authors":["Keegan McAllister ","Simon Sapin ","Chris Morgan "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/tendril","edition":"2015","links":null},{"name":"thiserror","version":"1.0.22","id":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","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.22","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":"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":"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.19","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_option","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_option.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_lints","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_lints.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_source","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_source.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_expr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_expr.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_backtrace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_backtrace.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_from","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_from.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_error","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_error.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_display","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_display.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_transparent","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_transparent.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_path.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_deprecated","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_deprecated.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["rust-patterns"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/thiserror","edition":"2018","links":null},{"name":"thiserror-impl","version":"1.0.22","id":"thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","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","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.45","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.22/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.22/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/dtolnay/thiserror","edition":"2018","links":null},{"name":"tinyvec","version":"0.3.4","id":"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"Zlib OR Apache-2.0 OR MIT","license_file":null,"description":"Just, really the littlest Vec you could need. So smol.","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.0","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tinyvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/tests/tinyvec.rs","edition":"2018","required-features":["alloc"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"arrayvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/tests/arrayvec.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/benches/macros.rs","edition":"2018","required-features":["alloc"],"doctest":false,"test":false}],"features":{"alloc":[],"default":[],"experimental_write_impl":[],"grab_spare_slice":[],"nightly_const_generics":[],"nightly_slice_partition_dedup":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Lokathor "],"categories":["data-structures","no-std"],"keywords":["vec","no_std","no-std","smol"],"readme":"README.md","repository":"https://github.com/Lokathor/tinyvec","edition":"2018","links":null},{"name":"tokio","version":"0.2.24","id":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"fnv","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":"futures-core","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":"iovec","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":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.4.0","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.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.20","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.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.11.0","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.1.1","kind":null,"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":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-macros","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.16","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures","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":["async-await"],"target":null,"registry":null},{"name":"futures-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":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.4","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-test","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":"loom","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":["futures","checkpoint"],"target":"cfg(loom)","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.42","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"mio-uds","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"signal-hook-registry","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"mio-named-pipes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(windows)","registry":null},{"name":"winapi","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_oneshot","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_oneshot.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_cred","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_cred.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_exact","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_exact.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_mpsc.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_usr1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_usr1.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_all","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_write_all.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"buffered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/buffered.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_copy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_copy.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_interval","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_interval.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_recv","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_drop_recv.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_take","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_take.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_throttle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_throttle.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mutex_owned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_mutex_owned.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_pending","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_pending.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_connect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_connect.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_into_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_into_split.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_collect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_collect.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_drop_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_once","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_once.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_until","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_until.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_lookup_host","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/net_lookup_host.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_notify_both","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_notify_both.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_cancellation_token","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_cancellation_token.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_driver_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_driver_drop.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_signal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_drop_signal.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_mem_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_mem_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_join.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_async_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_async_read.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/no_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_blocking","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/task_blocking.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_semaphore","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_semaphore.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_copy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_copy.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_local","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/task_local.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_fuse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_fuse.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_datagram","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_datagram.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_smoke","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_smoke.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_reader.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_watch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_watch.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_to_string","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_to_string.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_bind_resource","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/net_bind_resource.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"udp","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/udp.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_split.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_empty","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_empty.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_write.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_common","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/rt_common.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_delay","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_delay.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_kill_on_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_kill_on_drop.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_ctrl_c","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_ctrl_c.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_twice","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_twice.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_iter.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_delay_queue","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_delay_queue.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_stream_map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_stream_map.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_lines","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_lines.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_accept","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_accept.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_errors","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_errors.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_merge","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_merge.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_threaded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/rt_threaded.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_issue_2174","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_issue_2174.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_dir","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_dir.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_semaphore_owned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_semaphore_owned.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_link","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_link.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_timeout.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_chain.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_local_set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/task_local_set.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_timeout.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_multi_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_multi_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_to_end","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_to_end.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_reader_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_reader_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_barrier","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_barrier.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_line.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_shutdown","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_shutdown.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_broadcast","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_broadcast.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_clock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/test_clock.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_driver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_driver.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mutex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_mutex.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_try_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_try_join.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"_require_full","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/_require_full.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_int","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_write_int.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_select","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_select.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_file.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_notify","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_notify.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_no_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_no_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"async_send_sync","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/async_send_sync.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_peek","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_peek.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_echo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_echo.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_pin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_rwlock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_rwlock.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_split.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_file_mocked","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_file_mocked.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_issue_42","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_issue_42.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_chain.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/rt_basic.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_split.rs","edition":"2018","doctest":false,"test":true}],"features":{"blocking":["rt-core"],"default":[],"dns":["rt-core"],"fs":["rt-core","io-util"],"full":["blocking","dns","fs","io-driver","io-util","io-std","macros","net","process","rt-core","rt-util","rt-threaded","signal","stream","sync","time"],"io-driver":["mio","lazy_static"],"io-std":["rt-core"],"io-util":["memchr"],"macros":["tokio-macros"],"net":["dns","tcp","udp","uds"],"process":["io-driver","libc","mio-named-pipes","signal","winapi/consoleapi","winapi/minwindef","winapi/threadpoollegacyapiset","winapi/winerror"],"rt-core":["slab"],"rt-threaded":["num_cpus","rt-core"],"rt-util":[],"signal":["io-driver","lazy_static","libc","mio-uds","signal-hook-registry","winapi/consoleapi","winapi/minwindef"],"stream":["futures-core"],"sync":["fnv"],"tcp":["io-driver","iovec"],"test-util":[],"time":["slab"],"udp":["io-driver"],"uds":["io-driver","mio-uds","libc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["full"]}},"publish":null,"authors":["Tokio Contributors "],"categories":["asynchronous","network-programming"],"keywords":["io","async","non-blocking","futures"],"readme":"README.md","repository":"https://github.com/tokio-rs/tokio","edition":"2018","links":null},{"name":"trust-dns-proto","version":"0.20.0-alpha.3","id":"trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Trust-DNS is a safe and secure DNS library. This is the foundational DNS protocol library for all Trust-DNS projects.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"async-trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.36","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.50","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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"data-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.2.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"enum-as-inner","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":"futures-channel","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures-io","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"idna","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":"ipnet","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":null,"registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.44","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":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":"openssl","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["v102","v110"],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"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.16","kind":null,"rename":null,"optional":true,"uses_default_features":true,"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":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"socket2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.12","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.20","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":"^0.2.22","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.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.58","kind":null,"rename":"wasm-bindgen-crate","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.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-executor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.22","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["rt-core","time"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"trust_dns_proto","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/benches/lib.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"name_benches","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/benches/name_benches.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["tokio-runtime"],"dnssec":[],"dnssec-openssl":["dnssec","openssl"],"dnssec-ring":["dnssec","ring"],"mdns":["socket2/reuseport"],"serde-config":["serde"],"testing":[],"tokio-runtime":["tokio/rt-core","tokio/udp","tokio/tcp","tokio/time"],"wasm-bindgen":["wasm-bindgen-crate","js-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/Cargo.toml","metadata":null,"publish":null,"authors":["Benjamin Fry "],"categories":["network-programming"],"keywords":["DNS","BIND","dig","named","dnssec"],"readme":"README.md","repository":"https://github.com/bluejekyll/trust-dns","edition":"2018","links":null},{"name":"trust-dns-resolver","version":"0.20.0-alpha.3","id":"trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Trust-DNS is a safe and secure DNS library. This Resolver library uses the Client library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.\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":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"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.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":"lru-cache","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":"parking_lot","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":"resolv-conf","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":["system"],"target":null,"registry":null},{"name":"rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.18","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":["derive"],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.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.20","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":"^0.2.22","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-native-tls","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":"tokio-openssl","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":"tokio-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-https","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-native-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-openssl","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-proto","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"trust-dns-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"webpki-roots","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":"env_logger","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":"futures-executor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"ipconfig","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"trust_dns_resolver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"global_resolver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/examples/global_resolver.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"multithreaded_runtime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/examples/multithreaded_runtime.rs","edition":"2018","doctest":false,"test":false}],"features":{"backtrace":["trust-dns-proto/backtrace"],"default":["system-config","tokio-runtime"],"dns-over-https":[],"dns-over-https-rustls":["trust-dns-https","dns-over-rustls","dns-over-https"],"dns-over-native-tls":["dns-over-tls","tokio-native-tls","trust-dns-native-tls"],"dns-over-openssl":["dns-over-tls","trust-dns-openssl","tokio-openssl"],"dns-over-rustls":["dns-over-tls","rustls","tokio-rustls","trust-dns-rustls","webpki-roots"],"dns-over-tls":[],"dnssec":[],"dnssec-openssl":["dnssec","trust-dns-proto/dnssec-openssl"],"dnssec-ring":["dnssec","trust-dns-proto/dnssec-ring"],"mdns":["trust-dns-proto/mdns"],"serde-config":["serde","trust-dns-proto/serde-config"],"system-config":["ipconfig","resolv-conf"],"testing":[],"tokio-runtime":["tokio/rt-core","trust-dns-proto/tokio-runtime"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/Cargo.toml","metadata":null,"publish":null,"authors":["Benjamin Fry "],"categories":["network-programming"],"keywords":["DNS","BIND","dig","named","dnssec"],"readme":"README.md","repository":"https://github.com/bluejekyll/trust-dns","edition":"2018","links":null},{"name":"unicode-bidi","version":"0.3.4","id":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Implementation of the Unicode Bidirectional Algorithm","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"flame","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":"flamer","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":"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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.8, <2.0","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":">=0.8, <2.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"bench_it":[],"default":[],"flame_it":["flame","flamer"],"unstable":[],"with_serde":["serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":["rtl","unicode","text","layout","bidi"],"readme":"README.md","repository":"https://github.com/servo/unicode-bidi","edition":"2015","links":null},{"name":"unicode-normalization","version":"0.1.13","id":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.3.3","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/benches/bench.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/Cargo.toml","metadata":null,"publish":null,"authors":["kwantam "],"categories":[],"keywords":["text","unicode","normalization","decomposition","recomposition"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-normalization","edition":"2018","links":null},{"name":"unicode-segmentation","version":"1.7.1","id":"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"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":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-segmentation","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.7.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"graphemes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.7.1/benches/graphemes.rs","edition":"2015","doctest":false,"test":false}],"features":{"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.7.1/Cargo.toml","metadata":null,"publish":null,"authors":["kwantam ","Manish Goregaokar "],"categories":[],"keywords":["text","unicode","grapheme","word","boundary"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-segmentation","edition":"2015","links":null},{"name":"unicode-xid","version":"0.0.4","id":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.0.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"bench":[],"default":[],"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.0.4/Cargo.toml","metadata":null,"publish":null,"authors":["erick.tryzelaar ","kwantam "],"categories":[],"keywords":["text","unicode","xid"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-xid","edition":"2015","links":null},{"name":"unicode-xid","version":"0.1.0","id":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"bench":[],"default":[],"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["erick.tryzelaar ","kwantam "],"categories":[],"keywords":["text","unicode","xid"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-xid","edition":"2015","links":null},{"name":"unicode-xid","version":"0.2.1","id":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"exhaustive_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/tests/exhaustive_tests.rs","edition":"2015","doctest":false,"test":true}],"features":{"bench":[],"default":[],"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/Cargo.toml","metadata":null,"publish":null,"authors":["erick.tryzelaar ","kwantam "],"categories":[],"keywords":["text","unicode","xid"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-xid","edition":"2015","links":null},{"name":"unreachable","version":"0.1.1","id":"unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"An unreachable code optimization hint in stable rust.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"void","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unreachable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unreachable-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unreachable-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-unreachable.git","edition":"2015","links":null},{"name":"url","version":"1.7.2","id":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"encoding","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":"heapsize","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.4.1, <0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"idna","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":"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":"percent-encoding","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":"rustc-serialize","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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.6.1, <0.9","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-serialize","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":"rustc-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":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.6.1, <0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/src/lib.rs","edition":"2015","doctest":true,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/tests/unit.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"data","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/tests/data.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse_url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/benches/parse_url.rs","edition":"2015","doctest":false,"test":false}],"features":{"heap_size":["heapsize"],"query_encoding":["encoding"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/Cargo.toml","metadata":{"docs":{"rs":{"features":["query_encoding"]}}},"publish":null,"authors":["The rust-url developers"],"categories":["parser-implementations","web-programming","encoding"],"keywords":["url","parser"],"readme":"README.md","repository":"https://github.com/servo/rust-url","edition":"2015","links":null},{"name":"url","version":"2.2.0","id":"url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"idna","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":"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":"percent-encoding","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":"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_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":"url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse_url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.0/benches/parse_url.rs","edition":"2018","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":["parser-implementations","web-programming","encoding"],"keywords":["url","parser"],"readme":"../README.md","repository":"https://github.com/servo/rust-url","edition":"2018","links":null},{"name":"utf-8","version":"0.7.5","id":"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Incremental, zero-copy UTF-8 decoding with error handling","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"utf8","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/src/lib.rs","edition":"2015","doctest":true,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/tests/unit.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"from_utf8_lossy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/benches/from_utf8_lossy.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/Cargo.toml","metadata":null,"publish":null,"authors":["Simon Sapin "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/SimonSapin/rust-utf8","edition":"2015","links":null},{"name":"void","version":"1.0.2","id":"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"The uninhabited void type for use in statically impossible cases.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"void","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/void-1.0.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/void-1.0.2/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-void.git","edition":"2015","links":null},{"name":"wasi","version":"0.9.0+wasi-snapshot-preview1","id":"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.9.0+wasi-snapshot-preview1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std"],"rustc-dep-of-std":["compiler_builtins","core","rustc-std-workspace-alloc"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.9.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","edition":"2018","links":null},{"name":"widestring","version":"0.4.3","id":"widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A wide string FFI library for converting to and from wide strings, such as those often used in Windows API or other FFI libraries. Both UTF-16 and UTF-32 types are provided.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["winbase"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"widestring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/widestring-0.4.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/widestring-0.4.3/Cargo.toml","metadata":null,"publish":null,"authors":["Kathryn Long "],"categories":["text-processing","encoding"],"keywords":["wide","string","win32","utf-16","utf-32"],"readme":"README.md","repository":"https://github.com/starkat99/widestring-rs.git","edition":"2015","links":null},{"name":"winapi","version":"0.2.8","id":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Types and constants for WinAPI bindings. See README for list of crates providing function bindings.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"advapi32-sys","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":"bcrypt-sys","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":"comctl32-sys","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":"comdlg32-sys","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":"credui-sys","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":"crypt32-sys","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":"d2d1-sys","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":"d3d11-sys","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":"d3d12-sys","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":"d3d9-sys","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":"d3dcompiler-sys","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":"dbghelp-sys","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":"dsound-sys","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":"dwmapi-sys","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":"dwrite-sys","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":"dxgi-sys","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":"dxguid-sys","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":"gdi32-sys","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":"hid-sys","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":"httpapi-sys","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":"kernel32-sys","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":"ktmw32-sys","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":"mpr-sys","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":"netapi32-sys","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":"odbc32-sys","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":"ole32-sys","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":"oleaut32-sys","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":"opengl32-sys","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":"pdh-sys","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":"psapi-sys","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":"runtimeobject-sys","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":"secur32-sys","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":"setupapi-sys","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":"shell32-sys","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":"shlwapi-sys","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":"user32-sys","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":"userenv-sys","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":"usp10-sys","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":"uuid-sys","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":"vssapi-sys","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":"wevtapi-sys","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":"winhttp-sys","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":"winmm-sys","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":"winscard-sys","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":"winspool-sys","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":"winusb-sys","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":"ws2_32-sys","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":"xinput-sys","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"winapi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.2.8/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.2.8/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["windows","ffi","win32","com","directx"],"readme":"README.md","repository":"https://github.com/retep998/winapi-rs","edition":"2015","links":null},{"name":"winapi","version":"0.3.9","id":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs","edition":"2015","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","features":["everything","impl-debug","impl-default"],"targets":["aarch64-pc-windows-msvc","i686-pc-windows-msvc","x86_64-pc-windows-msvc"]}}},"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","edition":"2015","links":null},{"name":"winapi-build","version":"0.1.1","id":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Common code for build.rs in WinAPI -sys crates.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-build-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-build-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["Windows","FFI","WinSDK"],"readme":null,"repository":"https://github.com/retep998/winapi-rs","edition":"2015","links":null},{"name":"winapi-i686-pc-windows-gnu","version":"0.4.0","id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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","edition":"2015","links":null},{"name":"winapi-x86_64-pc-windows-gnu","version":"0.4.0","id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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","edition":"2015","links":null},{"name":"winreg","version":"0.6.2","id":"winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Rust bindings to MS Windows Registry API","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.6","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":"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":["impl-default","impl-debug","minwindef","minwinbase","timezoneapi","winerror","winnt","winreg","handleapi"],"target":null,"registry":null},{"name":"rand","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"winreg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"basic_usage","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/basic_usage.rs","edition":"2015","required-features":["chrono"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/enum.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"transactions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/transactions.rs","edition":"2015","required-features":["transactions"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"serialization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/serialization.rs","edition":"2015","required-features":["serialization-serde"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"installed_apps","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/installed_apps.rs","edition":"2015","required-features":["serialization-serde"],"doctest":false,"test":false}],"features":{"serialization-serde":["transactions","serde"],"transactions":["winapi/ktmw32"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"default-target":"x86_64-pc-windows-msvc"}}},"publish":null,"authors":["Igor Shaula "],"categories":["api-bindings","os::windows-apis"],"keywords":["Windows","WinSDK","Registry"],"readme":"README.md","repository":"https://github.com/gentoo90/winreg-rs","edition":"2015","links":null},{"name":"ws2_32-sys","version":"0.2.1","id":"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Contains function definitions for the Windows API library ws2_32. See winapi for types and constants.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"winapi-build","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ws2_32","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["windows","ffi","win32"],"readme":"README.md","repository":"https://github.com/retep998/winapi-rs","edition":"2015","links":null}],"workspace_members":["advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)"],"resolve":{"nodes":[{"id":"advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)","dependencies":["ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ammonia","pkg":"ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"artifact_serde","pkg":"artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libusb","pkg":"libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"spdx","pkg":"spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"trust_dns_resolver","pkg":"trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"html5ever","pkg":"html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"maplit","pkg":"maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"html5ever","pkg":"html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"maplit","pkg":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ammonia","pkg":"ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"base64","pkg":"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde_derive","pkg":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde_json","pkg":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"byteorder","pkg":"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bit_vec","pkg":"bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bitflags","pkg":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["bitflags","default"]},{"id":"data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","std"]},{"id":"debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unreachable","pkg":"unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"heck","pkg":"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bitflags","pkg":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fuchsia_zircon_sys","pkg":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"debug_unreachable","pkg":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"id":"futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"once_cell","pkg":"once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","once_cell","std"]},{"id":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_task","pkg":"futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project","pkg":"pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_utils","pkg":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","slab","std"]},{"id":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"wasi","pkg":"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"wasi\")"}]}],"features":["std"]},{"id":"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_segmentation","pkg":"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"redox\"))"}]},{"name":"match_cfg","pkg":"match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["default"]},{"id":"html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"markup5ever","pkg":"markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"syn","pkg":"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"markup5ever","pkg":"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"quote","pkg":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"syn","pkg":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_bidi","pkg":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_normalization","pkg":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_bidi","pkg":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_normalization","pkg":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]}],"features":[]},{"id":"ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"socket2","pkg":"socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"widestring","pkg":"widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"winreg","pkg":"winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"build","pkg":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["align","default","std"]},{"id":"libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bit_set","pkg":"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libusb_sys","pkg":"libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pkg_config","pkg":"pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"scopeguard","pkg":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","use_std"]},{"id":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"linked_hash_map","pkg":"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf","pkg":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_codegen","pkg":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"rustc_serialize","pkg":"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache","pkg":"string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf","pkg":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_codegen","pkg":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"serde_derive","pkg":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"serde_json","pkg":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache","pkg":"string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","use_core"]},{"id":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fuchsia_zircon","pkg":"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"fuchsia\")"}]},{"name":"fuchsia_zircon_sys","pkg":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"fuchsia\")"}]},{"name":"iovec","pkg":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"kernel32","pkg":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"miow","pkg":"miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"net2","pkg":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","with-deprecated"]},{"id":"miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"kernel32","pkg":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"net2","pkg":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ws2_32","pkg":"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"redox\", unix, target_os = \"wasi\"))"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","duration"]},{"id":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"id":"parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"instant","pkg":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lock_api","pkg":"lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"parking_lot_core","pkg":"parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"instant","pkg":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"syscall","pkg":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"redox\")"}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_generator","pkg":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand","pkg":"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"siphasher","pkg":"siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"pin_project_internal","pkg":"pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["simd","std"]},{"id":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_xid","pkg":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_xid","pkg":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_chacha","pkg":"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_hc","pkg":"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_isaac","pkg":"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_jitter","pkg":"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_os","pkg":"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_pcg","pkg":"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_xorshift","pkg":"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["alloc","default","rand_os","std"]},{"id":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom_package","pkg":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_chacha","pkg":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_os = \"emscripten\"))"}]},{"name":"rand_core","pkg":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_hc","pkg":"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"emscripten\")"}]}],"features":["alloc","default","getrandom","getrandom_package","libc","std"]},{"id":"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ppv_lite86","pkg":"ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_core","pkg":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"id":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom","pkg":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","getrandom","std"]},{"id":"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))"}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["std"]},{"id":"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cloudabi","pkg":"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"cloudabi\")"}]},{"name":"fuchsia_cprng","pkg":"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"fuchsia\")"}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rdrand","pkg":"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_env = \"sgx\")"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"regex_syntax","pkg":"regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"hostname","pkg":"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quick_error","pkg":"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["hostname","system"]},{"id":"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"itoa","pkg":"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ryu","pkg":"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"redox\"))"}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"redox\"))"}]},{"name":"syscall","pkg":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"redox\")"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"regex","pkg":"regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"debug_unreachable","pkg":"debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"precomputed_hash","pkg":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache_shared","pkg":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"debug_unreachable","pkg":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"precomputed_hash","pkg":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache_shared","pkg":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_generator","pkg":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_shared","pkg":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"quote","pkg":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"synom","pkg":"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","full","parsing","printing","quote","synom","unicode-xid","visit"]},{"id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote"]},{"id":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["clone-impls","default","derive","full","parsing","printing","proc-macro","quote","visit","visit-mut"]},{"id":"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_xid","pkg":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futf","pkg":"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"utf8","pkg":"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"thiserror_impl","pkg":"thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default"]},{"id":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"iovec","pkg":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mio","pkg":"mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","io-driver","iovec","lazy_static","mio","rt-core","slab","tcp","time","udp"]},{"id":"trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_trait","pkg":"async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"data_encoding","pkg":"data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"enum_as_inner","pkg":"enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_channel","pkg":"futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_io","pkg":"futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"idna","pkg":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ipnet","pkg":"ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand","pkg":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["tokio","tokio-runtime"]},{"id":"trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ipconfig","pkg":"ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lru_cache","pkg":"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"parking_lot","pkg":"parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"resolv_conf","pkg":"resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"trust_dns_proto","pkg":"trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","ipconfig","resolv-conf","system-config","tokio","tokio-runtime"]},{"id":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"tinyvec","pkg":"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"void","pkg":"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"idna","pkg":"idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"form_urlencoded","pkg":"form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"idna","pkg":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","std"]},{"id":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi_i686_pc_windows_gnu","pkg":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"}]},{"name":"winapi_x86_64_pc_windows_gnu","pkg":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"}]}],"features":["errhandlingapi","handleapi","impl-debug","impl-default","minwinbase","minwindef","ntsecapi","ntstatus","profileapi","sysinfoapi","timezoneapi","winbase","winerror","winnt","winreg","winsock2","ws2def","ws2ipdef","ws2tcpip"]},{"id":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"build","pkg":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]}],"root":"advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)"},"target_directory":"/home/jake/code/cargo-deny/examples/06_advisories/target","version":1,"workspace_root":"/home/jake/code/cargo-deny/examples/06_advisories","metadata":null} +{"packages":[{"name":"addr2line","version":"0.14.1","id":"addr2line 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A cross-platform symbolication library written in Rust, using `gimli`","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.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":"cpp_demangle","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":"fallible-iterator","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.23","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read"],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read"],"target":null,"registry":null},{"name":"rustc-demangle","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":"smallvec","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":"backtrace","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.13","kind":"dev","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":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"findshlibs","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":"memmap","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":"rustc-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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"addr2line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.14.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"addr2line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.14.1/examples/addr2line.rs","edition":"2015","required-features":["std-object"],"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"output_equivalence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.14.1/tests/output_equivalence.rs","edition":"2015","required-features":["std-object"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"correctness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.14.1/tests/correctness.rs","edition":"2015","required-features":["default"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.14.1/tests/parse.rs","edition":"2015","required-features":["std-object"],"doctest":false,"test":true}],"features":{"default":["rustc-demangle","cpp_demangle","std-object","fallible-iterator","smallvec"],"rustc-dep-of-std":["core","alloc","compiler_builtins","gimli/rustc-dep-of-std"],"std":["gimli/std"],"std-object":["std","object","object/std","object/compression","gimli/endian-reader"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.14.1/Cargo.toml","metadata":null,"publish":null,"authors":["Nick Fitzgerald ","Philip Craig ","Jon Gjengset ","Noah Bergbauer "],"categories":["development-tools::debugging"],"keywords":["DWARF","debug","elf","symbolicate","atos"],"readme":"./README.md","repository":"https://github.com/gimli-rs/addr2line","homepage":null,"documentation":"https://docs.rs/addr2line","edition":"2015","links":null},{"name":"adler","version":"0.2.3","id":"adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-0.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-0.2.3/benches/bench.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"rustc-dep-of-std":["core","compiler_builtins"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-0.2.3/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"],"readme":"README.md","repository":"https://github.com/jonas-schievink/adler.git","homepage":null,"documentation":"https://docs.rs/adler/","edition":"2015","links":null},{"name":"advisories","version":"0.1.0","id":"advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)","license":null,"license_file":null,"description":null,"source":null,"dependencies":[{"name":"ammonia","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":"artifact_serde","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":"failure","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.1.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libusb","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":"spdx","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":"trust-dns-resolver","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["bin"],"crate_types":["bin"],"name":"advisories","src_path":"/home/jake/code/cargo-deny/examples/06_advisories/src/main.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/code/cargo-deny/examples/06_advisories/Cargo.toml","metadata":null,"publish":null,"authors":["Jake Shadle "],"categories":[],"keywords":[],"readme":"README.md","repository":null,"homepage":null,"documentation":null,"edition":"2018","links":null},{"name":"ammonia","version":"0.7.0","id":"ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"HTML Sanitization","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"html5ever","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.19","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":"^0.2","kind":null,"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":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"url","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ammonia","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-0.7.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-0.7.0/Cargo.toml","metadata":null,"publish":null,"authors":["Michael Howell "],"categories":[],"keywords":["sanitization","html"],"readme":"README.md","repository":"https://github.com/notriddle/ammonia","homepage":null,"documentation":"https://docs.rs/ammonia/","edition":"2015","links":null},{"name":"ammonia","version":"1.2.0","id":"ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"HTML Sanitization","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"html5ever","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":"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":"maplit","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":"matches","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"url","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":"version-sync","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ammonia","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"ammonia-cat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/examples/ammonia-cat.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"version-numbers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/tests/version-numbers.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ammonia-1.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Michael Howell "],"categories":["web-programming","text-processing"],"keywords":["sanitization","html","security","xss"],"readme":"README.md","repository":"https://github.com/notriddle/ammonia","homepage":null,"documentation":"https://docs.rs/ammonia/","edition":"2015","links":null},{"name":"artifact_serde","version":"0.3.1","id":"artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A small library used to deserializing and serializing the Artifact Deck Codes from Valve's DotA Card Game Artifact","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"ammonia","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":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10.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":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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"artifact_serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/artifact_serde-0.3.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/artifact_serde-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Alec Goncharow "],"categories":["encoding"],"keywords":[],"readme":"README.md","repository":"https://github.com/AlecGoncharow/artifact_serde","homepage":null,"documentation":null,"edition":"2018","links":null},{"name":"async-trait","version":"0.1.42","id":"async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Type erasure for async trait methods","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":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full","visit-mut"],"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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.14","kind":"dev","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.8","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","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.19","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":"async-trait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/tests/test.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.42/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/async-trait","homepage":null,"documentation":"https://docs.rs/async-trait","edition":"2018","links":null},{"name":"autocfg","version":"0.1.7","id":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"traits","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/traits.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"versions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/versions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"integers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/integers.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"paths","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/examples/paths.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"rustflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/tests/rustflags.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/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":null,"edition":"2015","links":null},{"name":"autocfg","version":"1.0.1","id":"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"traits","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/examples/traits.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"versions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/examples/versions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"integers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/examples/integers.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"paths","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/examples/paths.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"rustflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/tests/rustflags.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/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":null,"edition":"2015","links":null},{"name":"backtrace","version":"0.3.55","id":"backtrace 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A library to acquire a stack trace (backtrace) at runtime in a Rust program.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"addr2line","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"backtrace-sys","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":"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":"cpp_demangle","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":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.45","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"miniz_oxide","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read_core","elf","macho","pe","unaligned","archive"],"target":null,"registry":null},{"name":"rustc-demangle","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":"rustc-serialize","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":"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":"libloading","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":"winapi","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"backtrace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"backtrace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/examples/backtrace.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"raw","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/examples/raw.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"skip_inner_frames","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/tests/skip_inner_frames.rs","edition":"2018","required-features":["std"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"long_fn_name","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/tests/long_fn_name.rs","edition":"2018","required-features":["std"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"smoke","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/tests/smoke.rs","edition":"2018","required-features":["std"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"accuracy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/tests/accuracy/main.rs","edition":"2018","required-features":["std","gimli-symbolize"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"concurrent-panics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/tests/concurrent-panics.rs","edition":"2018","required-features":["std"],"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/benches/benchmarks.rs","edition":"2018","doctest":false,"test":false}],"features":{"coresymbolication":[],"dbghelp":[],"default":["std","gimli-symbolize"],"dladdr":[],"gimli-symbolize":["addr2line","miniz_oxide","object"],"kernel32":[],"libbacktrace":["backtrace-sys/backtrace-sys"],"libunwind":[],"serialize-rustc":["rustc-serialize"],"serialize-serde":["serde"],"std":[],"unix-backtrace":[],"verify-winapi":["winapi/dbghelp","winapi/handleapi","winapi/libloaderapi","winapi/memoryapi","winapi/minwindef","winapi/processthreadsapi","winapi/synchapi","winapi/tlhelp32","winapi/winbase","winapi/winnt"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.55/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/backtrace-rs","homepage":"https://github.com/rust-lang/backtrace-rs","documentation":"https://docs.rs/backtrace","edition":"2018","links":null},{"name":"base64","version":"0.10.1","id":"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","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":"byteorder","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.6","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.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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"make_tables","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/examples/make_tables.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"helpers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/helpers.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"decode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/decode.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"encode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/tests/encode.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/benches/benchmarks.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/Cargo.toml","metadata":null,"publish":null,"authors":["Alice Maz ","Marshall Pierce "],"categories":["encoding"],"keywords":["base64","utf8","encode","decode"],"readme":"README.md","repository":"https://github.com/alicemaz/rust-base64","homepage":null,"documentation":"https://github.com/alicemaz/rust-base64/blob/master/README.md","edition":"2015","links":null},{"name":"bit-set","version":"0.2.0","id":"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A Vec of bits","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bit-vec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"*","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":"*","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bit-set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-set-0.2.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-set-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Alexis Beingessner "],"categories":[],"keywords":["data-structures"],"readme":"README.md","repository":"https://github.com/contain-rs/bit-set","homepage":"https://github.com/contain-rs/bit-set","documentation":"https://contain-rs.github.io/bit-set/bit_set","edition":"2015","links":null},{"name":"bit-vec","version":"0.6.2","id":"bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A vector of bits","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":["derive"],"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":"rand_xorshift","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":"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":"bit-vec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.6.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.6.2/benches/bench.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"serde_no_std":["serde/alloc"],"serde_std":["std","serde/std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bit-vec-0.6.2/Cargo.toml","metadata":null,"publish":null,"authors":["Alexis Beingessner "],"categories":[],"keywords":["data-structures","bitvec","bitmask","bitmap","bit"],"readme":"README.md","repository":"https://github.com/contain-rs/bit-vec","homepage":"https://github.com/contain-rs/bit-vec","documentation":"https://contain-rs.github.io/bit-vec/bit_vec","edition":"2015","links":null},{"name":"bitflags","version":"1.2.1","id":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","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":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":[],"example_generated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/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":"2015","links":null},{"name":"byteorder","version":"1.3.4","id":"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","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":"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":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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.6","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/benches/bench.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Gallant "],"categories":["encoding","parsing"],"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":"2015","links":null},{"name":"bytes","version":"0.5.6","id":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Types and traits for working with bytes","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.60","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["alloc"],"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":"loom","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(loom)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_buf.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_reader.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_buf_mut","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_buf_mut.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_bytes.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_serde.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes_odd_alloc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_bytes_odd_alloc.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_iter.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_take","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_take.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes_vec_alloc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_bytes_vec_alloc.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_chain.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/tests/test_debug.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bytes_mut","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/benches/bytes_mut.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/benches/bytes.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/benches/buf.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche ","Sean McArthur "],"categories":["network-programming","data-structures"],"keywords":["buffers","zero-copy","io"],"readme":"README.md","repository":"https://github.com/tokio-rs/bytes","homepage":null,"documentation":"https://docs.rs/bytes","edition":"2018","links":null},{"name":"cfg-if","version":"0.1.10","id":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"xcrate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/tests/xcrate.rs","edition":"2018","doctest":false,"test":true}],"features":{"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/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},{"name":"cfg-if","version":"1.0.0","id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"xcrate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs","edition":"2018","doctest":false,"test":true}],"features":{"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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},{"name":"cloudabi","version":"0.0.3","id":"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-2-Clause","license_file":null,"description":"Low level interface to CloudABI. Contains all syscalls and related types.","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.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cloudabi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cloudabi-0.0.3/cloudabi.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["bitflags"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cloudabi-0.0.3/Cargo.toml","metadata":null,"publish":null,"authors":["Nuxi (https://nuxi.nl/) and contributors"],"categories":[],"keywords":["cloudabi"],"readme":null,"repository":"https://github.com/nuxinl/cloudabi","homepage":"https://nuxi.nl/cloudabi/","documentation":"https://docs.rs/cloudabi/","edition":"2015","links":null},{"name":"data-encoding","version":"2.3.1","id":"data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Efficient and customizable data-encoding functions like base64, base32, and hex","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"data-encoding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/data-encoding-2.3.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/data-encoding-2.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Julien Cretin "],"categories":["encoding","no-std"],"keywords":["no_std","base64","base32","hex"],"readme":"README.md","repository":"https://github.com/ia0/data-encoding","homepage":null,"documentation":"https://docs.rs/data-encoding","edition":"2018","links":null},{"name":"debug_unreachable","version":"0.1.1","id":"debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"unreachable!() in debug, std::intrinsics::unreachable() in release.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unreachable","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":"debug_unreachable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/examples/simple.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"check","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/tests/check.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/debug_unreachable-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-debug-unreachable.git","homepage":null,"documentation":"https://crates.fyi/crates/debug_unreachable/0.1.1","edition":"2015","links":null},{"name":"enum-as-inner","version":"0.3.3","id":"enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A proc-macro for deriving inner field accessor functions on enums.\n","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.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":[],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"enum-as-inner","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/generics.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/unit.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"snake_case","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/snake_case.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/basic.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unnamed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/unnamed.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"named","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/tests/named.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/enum-as-inner-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Benjamin Fry "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bluejekyll/enum-as-inner","homepage":null,"documentation":"https://docs.rs/enum-as-inner","edition":"2018","links":null},{"name":"failure","version":"0.1.8","id":"failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Experimental error handling abstraction.","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.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"failure_derive","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"failure","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"bail_ensure","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/examples/bail_ensure.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"error_as_cause","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/examples/error_as_cause.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/examples/simple.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"string_custom_error_pattern","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/examples/string_custom_error_pattern.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"fail_compat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/tests/fail_compat.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"basic_fail","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/tests/basic_fail.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macro_trailing_comma","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/tests/macro_trailing_comma.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["std","derive"],"derive":["failure_derive"],"std":["backtrace"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure-0.1.8/Cargo.toml","metadata":null,"publish":null,"authors":["Without Boats "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang-nursery/failure","homepage":"https://rust-lang-nursery.github.io/failure/","documentation":"https://docs.rs/failure","edition":"2015","links":null},{"name":"failure_derive","version":"0.1.8","id":"failure_derive 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"derives for the failure 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","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","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.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"synstructure","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"failure","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":["proc-macro"],"crate_types":["proc-macro"],"name":"failure_derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_derive_display","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/tests/no_derive_display.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/tests/backtrace.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wraps","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/tests/wraps.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"custom_type_bounds","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/tests/custom_type_bounds.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.8/Cargo.toml","metadata":null,"publish":null,"authors":["Without Boats "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang-nursery/failure","homepage":"https://rust-lang-nursery.github.io/failure/","documentation":"https://docs.rs/failure","edition":"2015","links":null},{"name":"form_urlencoded","version":"1.0.0","id":"form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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":"percent-encoding","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.0.0/src/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"fuchsia-cprng","version":"0.1.1","id":"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":null,"license_file":"LICENSE","description":"Rust crate for the Fuchsia cryptographically secure pseudorandom number generator","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fuchsia-cprng","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-cprng-0.1.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-cprng-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Erick Tryzelaar "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://fuchsia.googlesource.com/fuchsia/+/master/garnet/public/rust/fuchsia-cprng","homepage":null,"documentation":null,"edition":"2018","links":null},{"name":"fuchsia-zircon","version":"0.3.3","id":"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-3-Clause","license_file":null,"description":"Rust bindings for the Zircon kernel","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.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fuchsia-zircon-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fuchsia-zircon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-0.3.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Raph Levien "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://fuchsia.googlesource.com/garnet/","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"fuchsia-zircon-sys","version":"0.3.3","id":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-3-Clause","license_file":null,"description":"Low-level Rust bindings for the Zircon kernel","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fuchsia-zircon-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-sys-0.3.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"hello","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-sys-0.3.3/examples/hello.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fuchsia-zircon-sys-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Raph Levien "],"categories":[],"keywords":[],"readme":null,"repository":"https://fuchsia.googlesource.com/garnet/","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"futf","version":"0.1.4","id":"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Handling fragments of UTF-8","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"mac","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":"new_debug_unreachable","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futf-0.1.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futf-0.1.4/Cargo.toml","metadata":null,"publish":null,"authors":["Keegan McAllister "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/futf","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"futures-channel","version":"0.3.8","id":"futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Channels for asynchronous communication using futures-rs.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"futures-sink","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mpsc-close","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/mpsc-close.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/channel.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"oneshot","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/oneshot.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/tests/mpsc.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"sync_mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/benches/sync_mpsc.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["futures-core/alloc"],"cfg-target-has-atomic":["futures-core/cfg-target-has-atomic"],"default":["std"],"sink":["futures-sink"],"std":["alloc","futures-core/std"],"unstable":["futures-core/unstable"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":"https://docs.rs/futures-channel/0.3.8","edition":"2018","links":null},{"name":"futures-core","version":"0.3.8","id":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"The core traits and types in for the `futures` library.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"cfg-target-has-atomic":[],"default":["std"],"std":["alloc"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":"https://docs.rs/futures-core/0.3.8","edition":"2018","links":null},{"name":"futures-io","version":"0.3.8","id":"futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-io","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std"],"read-initializer":[],"std":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":"https://docs.rs/futures-io/0.3.8","edition":"2018","links":null},{"name":"futures-task","version":"0.3.8","id":"futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Tools for working with tasks.\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.3.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-task","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"cfg-target-has-atomic":[],"default":["std"],"std":["alloc","once_cell"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":"https://docs.rs/futures-task/0.3.8","edition":"2018","links":null},{"name":"futures-util","version":"0.3.8","id":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Common utilities and extension traits for the futures-rs library.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures-channel","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":["std"],"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":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"futures-io","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":["std"],"target":null,"registry":null},{"name":"futures-macro","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":"futures-sink","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":"futures-task","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.8","kind":null,"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.1.25","kind":null,"rename":"futures_01","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.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project","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":"pin-utils","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":"proc-macro-hack","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.19","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"proc-macro-nested","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":"slab","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-io","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.9","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-util","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.8/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"futures_unordered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.8/benches/futures_unordered.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["futures-core/alloc","futures-task/alloc"],"async-await":[],"async-await-macro":["async-await","futures-macro","proc-macro-hack","proc-macro-nested"],"bilock":[],"cfg-target-has-atomic":["futures-core/cfg-target-has-atomic","futures-task/cfg-target-has-atomic"],"channel":["std","futures-channel"],"compat":["std","futures_01"],"default":["std","async-await","async-await-macro"],"io":["std","futures-io","memchr"],"io-compat":["io","compat","tokio-io"],"read-initializer":["io","futures-io/read-initializer","futures-io/unstable"],"sink":["futures-sink"],"std":["alloc","futures-core/std","futures-task/std","slab"],"unstable":["futures-core/unstable","futures-task/unstable"],"write-all-vectored":["io"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.8/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":"https://docs.rs/futures-util/0.3.8","edition":"2018","links":null},{"name":"getrandom","version":"0.1.15","id":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.1.2","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":"log","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":"wasi","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":"cfg(target_os = \"wasi\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.64","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(unix)","registry":null},{"name":"stdweb","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.18","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.29","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"wasm32-unknown-unknown","registry":null},{"name":"wasm-bindgen-test","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":"wasm32-unknown-unknown","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"common","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/tests/common.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/benches/mod.rs","edition":"2018","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"dummy":[],"rustc-dep-of-std":["compiler_builtins","core"],"std":[],"test-in-browser":["wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/Cargo.toml","metadata":null,"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},{"name":"gimli","version":"0.23.0","id":"gimli 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A library for reading and writing the DWARF debugging format.","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.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":"fallible-iterator","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":[],"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":[],"target":null,"registry":null},{"name":"stable_deref_trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"crossbeam","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":"getopts","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":"memmap","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":"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":"object","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":"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":"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":"test-assembler","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":"typed-arena","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"gimli","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/examples/simple.rs","edition":"2018","required-features":["read"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"simple_line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/examples/simple_line.rs","edition":"2018","required-features":["read"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"dwarfdump","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/examples/dwarfdump.rs","edition":"2018","required-features":["read","std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"dwarf-validate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/examples/dwarf-validate.rs","edition":"2018","required-features":["read","std"],"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"parse_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/tests/parse_self.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"convert_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/tests/convert_self.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/benches/bench.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["read","write","std","fallible-iterator","endian-reader"],"endian-reader":["stable_deref_trait"],"read":[],"rustc-dep-of-std":["core","alloc","compiler_builtins"],"std":["fallible-iterator/std","stable_deref_trait/std"],"write":["indexmap"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.23.0/Cargo.toml","metadata":null,"publish":null,"authors":["Nick Fitzgerald ","Philip Craig "],"categories":["development-tools::debugging","development-tools::profiling","parser-implementations"],"keywords":["DWARF","debug","ELF","eh_frame"],"readme":"./README.md","repository":"https://github.com/gimli-rs/gimli","homepage":null,"documentation":"https://docs.rs/gimli","edition":"2018","links":null},{"name":"heck","version":"0.3.1","id":"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","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":[{"name":"unicode-segmentation","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Without Boats "],"categories":[],"keywords":["string","case","camel","snake","unicode"],"readme":"README.md","repository":"https://github.com/withoutboats/heck","homepage":"https://github.com/withoutboats/heck","documentation":"https://docs.rs/heck","edition":"2015","links":null},{"name":"hostname","version":"0.3.1","id":"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Cross-platform system's host name functions","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"match_cfg","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":"version-sync","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":"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 = \"redox\"))","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":["sysinfoapi"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hostname","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"hostname","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/examples/hostname.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"version","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/tests/version.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":[],"set":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hostname-0.3.1/Cargo.toml","metadata":{"docs":{"rs":{"features":["set"],"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["fengcen ","svartalf "],"categories":["api-bindings","os"],"keywords":["hostname","gethostname","sethostname"],"readme":"README.md","repository":"https://github.com/svartalf/hostname","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"html5ever","version":"0.19.0","id":"html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"High-performance browser-grade HTML5 parser","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.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mac","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":"markup5ever","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":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-test","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":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3","kind":"build","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":"^0.11","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":["full","visit"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"print-rcdom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/print-rcdom.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/noop-tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tree-builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/noop-tree-builder.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"html2html","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/html2html.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"print-tree-actions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/print-tree-actions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/examples/tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tree_builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/tests/tree_builder.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/tests/tokenizer.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serializer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/tests/serializer.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/benches/tokenizer.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"heap_size":["markup5ever/heap_size"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.19.0/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","homepage":null,"documentation":"https://docs.rs/html5ever","edition":"2015","links":null},{"name":"html5ever","version":"0.22.5","id":"html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"High-performance browser-grade HTML5 parser","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":"mac","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":"markup5ever","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-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":"typed-arena","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":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","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":"^0.6","kind":"build","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":"^0.15","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":["extra-traits","full","fold"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"print-rcdom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/print-rcdom.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/noop-tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"noop-tree-builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/noop-tree-builder.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"html2html","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/html2html.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"arena","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/arena.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"print-tree-actions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/print-tree-actions.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tokenize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/examples/tokenize.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tree_builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/tests/tree_builder.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/tests/tokenizer.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serializer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/tests/serializer.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"tokenizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/benches/tokenizer.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/html5ever-0.22.5/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":["parser-implementations","web-programming"],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","homepage":null,"documentation":"https://docs.rs/html5ever","edition":"2015","links":null},{"name":"idna","version":"0.1.5","id":"idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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":"unicode-bidi","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":"unicode-normalization","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":"rustc-serialize","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":"rustc-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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/src/lib.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/tests/unit.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"idna","version":"0.2.0","id":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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":"unicode-bidi","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":"unicode-normalization","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":"rustc-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":"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":"idna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/src/lib.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/tests/tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/tests/unit.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"instant","version":"0.1.9","id":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","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":"time","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(not(any(feature = \"stdweb\", feature = \"wasm-bindgen\")))","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.9/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.9/tests/wasm.rs","edition":"2018","doctest":false,"test":true}],"features":{"inaccurate":[],"now":["time"],"wasm-bindgen":["js-sys","wasm-bindgen_rs","web-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.9/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},{"name":"iovec","version":"0.1.4","id":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Portable buffer type for scatter/gather I/O operations\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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"iovec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":["network-programming","api-bindings"],"keywords":["scatter","gather","vectored","io","networking"],"readme":"README.md","repository":"https://github.com/carllerche/iovec","homepage":"https://github.com/carllerche/iovec","documentation":"https://docs.rs/iovec","edition":"2015","links":null},{"name":"ipconfig","version":"0.2.2","id":"ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Get network adapters information and network configuration for windows.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"socket2","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},{"name":"widestring","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(windows)","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":[],"target":"cfg(windows)","registry":null},{"name":"winreg","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(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ipconfig","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/tests/test.rs","edition":"2018","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/build.rs","edition":"2018","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipconfig-0.2.2/Cargo.toml","metadata":null,"publish":null,"authors":["Liran Ringel "],"categories":[],"keywords":["ipconfig","network","adapter","interface","windows"],"readme":"README.md","repository":"https://github.com/liranringel/ipconfig","homepage":"https://github.com/liranringel/ipconfig","documentation":"https://docs.rs/ipconfig/0.2/x86_64-pc-windows-msvc/ipconfig/","edition":"2018","links":null},{"name":"ipnet","version":"2.3.0","id":"ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.","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":["derive"],"target":null,"registry":null},{"name":"serde_test","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":"ipnet","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Kris Price "],"categories":["network-programming"],"keywords":["IP","CIDR","network","prefix","subnet"],"readme":"README.md","repository":"https://github.com/krisprice/ipnet","homepage":null,"documentation":"https://docs.rs/ipnet","edition":"2015","links":null},{"name":"itoa","version":"0.4.6","id":"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Fast functions for printing integer primitives to an io::Write","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/benches/bench.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["value-formatting"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/itoa","homepage":null,"documentation":"https://github.com/dtolnay/itoa","edition":"2015","links":null},{"name":"kernel32-sys","version":"0.2.2","id":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Contains function definitions for the Windows API library kernel32. See winapi for types and constants.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"winapi-build","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"kernel32","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["windows","ffi","win32"],"readme":"README.md","repository":"https://github.com/retep998/winapi-rs","homepage":null,"documentation":"https://retep998.github.io/doc/kernel32/","edition":"2015","links":null},{"name":"lazy_static","version":"0.2.11","id":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","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":"compiletest_rs","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":"spin","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compile_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/tests/compile_tests.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/tests/no_std.rs","edition":"2015","doctest":false,"test":true}],"features":{"compiletest":["compiletest_rs"],"nightly":[],"spin_no_std":["nightly","spin"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/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},{"name":"lazy_static","version":"1.4.0","id":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/no_std.rs","edition":"2015","doctest":false,"test":true}],"features":{"spin_no_std":["spin"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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},{"name":"libc","version":"0.2.77","id":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"const_fn","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/tests/const_fn.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"align":[],"const-extern-fn":[],"default":["std"],"extra_traits":[],"rustc-dep-of-std":["align","rustc-std-workspace-core"],"std":[],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/Cargo.toml","metadata":null,"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":"http://doc.rust-lang.org/libc","edition":"2015","links":null},{"name":"libusb","version":"0.3.0","id":"libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Rust library for accessing USB devices.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bit-set","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":"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":"libusb-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.3","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":"^0.1.26","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"libusb","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"read_device","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/examples/read_device.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"list_devices","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/examples/list_devices.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"libusb_info","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/examples/libusb_info.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["David Cuddeback "],"categories":[],"keywords":["usb","libusb","hardware","bindings"],"readme":"README.md","repository":"https://github.com/dcuddeback/libusb-rs.git","homepage":"https://github.com/dcuddeback/libusb-rs","documentation":"http://dcuddeback.github.io/libusb-rs/libusb/","edition":"2015","links":null},{"name":"libusb-sys","version":"0.2.3","id":"libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"FFI bindings for libusb.","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},{"name":"pkg-config","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"libusb-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"read_device","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/examples/read_device.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"list_devices","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/examples/list_devices.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"libusb_info","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/examples/libusb_info.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libusb-sys-0.2.3/Cargo.toml","metadata":null,"publish":null,"authors":["David Cuddeback "],"categories":[],"keywords":["usb","libusb","hardware","bindings"],"readme":"README.md","repository":"https://github.com/dcuddeback/libusb-sys.git","homepage":"https://github.com/dcuddeback/libusb-sys","documentation":null,"edition":"2015","links":"usb-1.0"},{"name":"linked-hash-map","version":"0.5.3","id":"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","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":"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":"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":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"linked-hash-map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/tests/serde.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"heapsize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/tests/heapsize.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{"heapsize_impl":["heapsize"],"nightly":[],"serde_impl":["serde","serde_test"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.3/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://contain-rs.github.io/linked-hash-map/linked_hash_map","edition":"2015","links":null},{"name":"lock_api","version":"0.4.2","id":"lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","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.114","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.2/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.2/Cargo.toml","metadata":null,"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},{"name":"log","version":"0.3.9","id":"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.9/src/lib.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["use_std"],"max_level_debug":["log/max_level_debug"],"max_level_error":["log/max_level_error"],"max_level_info":["log/max_level_info"],"max_level_off":["log/max_level_off"],"max_level_trace":["log/max_level_trace"],"max_level_warn":["log/max_level_warn"],"nightly":[],"release_max_level_debug":["log/release_max_level_debug"],"release_max_level_error":["log/release_max_level_error"],"release_max_level_info":["log/release_max_level_info"],"release_max_level_off":["log/release_max_level_off"],"release_max_level_trace":["log/release_max_level_trace"],"release_max_level_warn":["log/release_max_level_warn"],"use_std":["log/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.3.9/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":["development-tools::debugging"],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/log","homepage":"https://github.com/rust-lang/log","documentation":"https://doc.rust-lang.org/log","edition":"2015","links":null},{"name":"log","version":"0.4.11","id":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","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":"cfg-if","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":"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":"^0.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"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":"^0.5.2","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filters","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/tests/filters.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/tests/macros.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"kv_unstable":[],"kv_unstable_sval":["kv_unstable","sval/fmt"],"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":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/Cargo.toml","metadata":{"docs":{"rs":{"features":["std","serde","kv_unstable_sval"]}}},"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":"2015","links":null},{"name":"lru-cache","version":"0.1.2","id":"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A cache that holds a limited number of key-value pairs","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":"linked-hash-map","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lru-cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lru-cache-0.1.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"heapsize_impl":["heapsize","linked-hash-map/heapsize_impl"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lru-cache-0.1.2/Cargo.toml","metadata":null,"publish":null,"authors":["Stepan Koltsov "],"categories":[],"keywords":["data-structures"],"readme":"README.md","repository":"https://github.com/contain-rs/lru-cache","homepage":"https://github.com/contain-rs/lru-cache","documentation":"https://contain-rs.github.io/lru-cache/lru_cache","edition":"2015","links":null},{"name":"mac","version":"0.1.1","id":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A collection of great and ubiqutitous macros.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mac","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mac-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mac-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-mac.git","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"maplit","version":"0.1.6","id":"maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Container / collection literal macros for HashMap, HashSet, BTreeMap, BTreeSet.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"maplit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-0.1.6/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-0.1.6/tests/tests.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-0.1.6/Cargo.toml","metadata":{"release":{"no-dev-version":true}},"publish":null,"authors":["bluss"],"categories":["rust-patterns"],"keywords":["literal","data-structure","hashmap","macro"],"readme":null,"repository":"https://github.com/bluss/maplit","homepage":null,"documentation":"https://docs.rs/maplit/","edition":"2015","links":null},{"name":"maplit","version":"1.0.2","id":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Collection “literal” macros for HashMap, HashSet, BTreeMap, and BTreeSet.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"maplit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/tests/tests.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/Cargo.toml","metadata":{"release":{"no-dev-version":true}},"publish":null,"authors":["bluss"],"categories":["rust-patterns"],"keywords":["literal","data-structure","hashmap","macro"],"readme":null,"repository":"https://github.com/bluss/maplit","homepage":null,"documentation":"https://docs.rs/maplit/","edition":"2015","links":null},{"name":"markup5ever","version":"0.4.0","id":"markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Common code for xml5ever and html5ever","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.3, <0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"heapsize_derive","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":"phf","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"phf_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.3","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.4.0/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.4.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"heap_size":["heapsize","heapsize_derive","string_cache/heapsize"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.4.0/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","homepage":null,"documentation":"https://docs.rs/markup5ever","edition":"2015","links":null},{"name":"markup5ever","version":"0.7.5","id":"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Common code for xml5ever and html5ever","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.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tendril","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":"phf_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.3","kind":"build","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":"build","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":"build","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":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.5/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.5/Cargo.toml","metadata":null,"publish":null,"authors":["The html5ever Project Developers"],"categories":["parser-implementations","web-programming"],"keywords":[],"readme":null,"repository":"https://github.com/servo/html5ever","homepage":null,"documentation":"https://docs.rs/markup5ever","edition":"2015","links":null},{"name":"match_cfg","version":"0.1.0","id":"match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A convenience macro to ergonomically define an item depending on a large number\nof `#[cfg]` parameters. Structured like match statement, the first matching\nbranch is the item that gets emitted.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"match_cfg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/match_cfg-0.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["use_core"],"use_core":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/match_cfg-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["gnzlbg "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/gnzlbg/match_cfg","homepage":"https://github.com/gnzlbg/match_cfg","documentation":"https://docs.rs/match_cfg","edition":"2015","links":null},{"name":"matches","version":"0.1.8","id":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macro_use_one","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/tests/macro_use_one.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/Cargo.toml","metadata":null,"publish":null,"authors":["Simon Sapin "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/SimonSapin/rust-std-candidates","homepage":null,"documentation":"https://docs.rs/matches/","edition":"2015","links":null},{"name":"miniz_oxide","version":"0.4.3","id":"miniz_oxide 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.2.3","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":"autocfg","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":"miniz_oxide","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.3/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"no_extern_crate_alloc":[],"rustc-dep-of-std":["core","alloc","compiler_builtins","adler/rustc-dep-of-std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.3/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},{"name":"mio","version":"0.6.23","id":"mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Lightweight non-blocking IO","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":"^0.1.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"iovec","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":"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":"net2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.36","kind":null,"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.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bytes","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":"env_logger","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tempdir","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":"fuchsia-zircon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"fuchsia\")","registry":null},{"name":"fuchsia-zircon-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"fuchsia\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.54","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"kernel32-sys","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(windows)","registry":null},{"name":"miow","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(windows)","registry":null},{"name":"winapi","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.23/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.23/test/mod.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["with-deprecated"],"with-deprecated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.23/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"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":"https://docs.rs/mio/0.6.23/mio/","edition":"2015","links":null},{"name":"miow","version":"0.2.2","id":"miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A zero overhead I/O library for Windows, focusing on IOCP and Async I/O\nabstractions.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"kernel32-sys","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":"net2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.36","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"winapi","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":"ws2_32-sys","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":"rand","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":"miow","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.2.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.2.2/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":["iocp","windows","io","overlapped"],"readme":"README.md","repository":"https://github.com/alexcrichton/miow","homepage":"https://github.com/alexcrichton/miow","documentation":"https://docs.rs/miow/0.1/x86_64-pc-windows-msvc/miow/","edition":"2015","links":null},{"name":"net2","version":"0.2.37","id":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Extensions to the standard library's networking types as proposed in RFC 1158.\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":"^0.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.54","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"redox\", unix, target_os = \"wasi\"))","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":["handleapi","winsock2","ws2def","ws2ipdef","ws2tcpip"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"net2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.37/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["duration"],"duration":[],"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.37/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/deprecrated/net2-rs","homepage":"https://github.com/deprecrated/net2-rs","documentation":"https://docs.rs/net2/~0.2","edition":"2015","links":null},{"name":"new_debug_unreachable","version":"1.0.4","id":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"debug_unreachable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/examples/simple.rs","edition":"2018","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"check","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/tests/check.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/Cargo.toml","metadata":null,"publish":null,"authors":["Matt Brubeck ","Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/mbrubeck/rust-debug-unreachable","homepage":null,"documentation":"https://docs.rs/new_debug_unreachable","edition":"2018","links":null},{"name":"object","version":"0.22.0","id":"object 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A unified interface for reading and writing object file formats.","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.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":"crc32fast","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":"flate2","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":"indexmap","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":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.57","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memmap","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":"object","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"nm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/examples/nm.rs","edition":"2018","required-features":["read"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"objcopy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/examples/objcopy.rs","edition":"2018","required-features":["read","write"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"objdump","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/examples/objdump.rs","edition":"2018","required-features":["read_core"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"ar","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/examples/ar.rs","edition":"2018","required-features":["read_core","archive"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"objectmap","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/examples/objectmap.rs","edition":"2018","required-features":["read_core"],"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"parse_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/tests/parse_self.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"integration","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/tests/integration.rs","edition":"2018","doctest":false,"test":true}],"features":{"all":["read","write","std","compression","default"],"archive":[],"cargo-all":[],"coff":[],"compression":["flate2","std"],"default":["read","compression"],"elf":[],"macho":[],"pe":["coff"],"read":["read_core","archive","coff","elf","macho","pe","wasm","unaligned"],"read_core":[],"rustc-dep-of-std":["core","compiler_builtins","alloc"],"std":[],"unaligned":[],"wasm":["wasmparser"],"write":["write_core","coff","elf","macho"],"write_core":["crc32fast","indexmap","std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.22.0/Cargo.toml","metadata":{"docs":{"rs":{"features":["all"]}}},"publish":null,"authors":["Nick Fitzgerald ","Philip Craig "],"categories":[],"keywords":["object","elf","mach-o","pe","coff"],"readme":"README.md","repository":"https://github.com/gimli-rs/object","homepage":null,"documentation":null,"edition":"2018","links":null},{"name":"once_cell","version":"1.5.2","id":"once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)","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":"parking_lot","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","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.7.2","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.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.2.0","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/bench.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"bench_acquire","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/bench_acquire.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"bench_vs_lazy_static","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/bench_vs_lazy_static.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"lazy_static","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/lazy_static.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"reentrant_init_deadlocks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/reentrant_init_deadlocks.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/regex.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"test_synchronization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/examples/test_synchronization.rs","edition":"2018","required-features":["std"],"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"it","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/tests/it.rs","edition":"2018","doctest":false,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.5.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"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":"2018","links":null},{"name":"parking_lot","version":"0.11.1","id":"parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","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":"instant","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":"lock_api","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":"parking_lot_core","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":"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":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.1/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"issue_203","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.1/tests/issue_203.rs","edition":"2018","doctest":false,"test":true}],"features":{"deadlock_detection":["parking_lot_core/deadlock_detection"],"default":[],"nightly":["parking_lot_core/nightly","lock_api/nightly"],"owning_ref":["lock_api/owning_ref"],"send_guard":[],"serde":["lock_api/serde"],"stdweb":["instant/stdweb"],"wasm-bindgen":["instant/wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.1/Cargo.toml","metadata":null,"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":"2018","links":null},{"name":"parking_lot_core","version":"0.8.1","id":"parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","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.49","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":"instant","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":"petgraph","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.1","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.0","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":"^3.3.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.1.56","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.71","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.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["winnt","ntstatus","minwindef","winerror","winbase","errhandlingapi","handleapi"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"deadlock_detection":["petgraph","thread-id","backtrace"],"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.1/Cargo.toml","metadata":null,"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},{"name":"percent-encoding","version":"1.0.1","id":"percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/lib.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"percent-encoding","version":"2.1.0","id":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/rust-url/","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"phf","version":"0.7.24","id":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","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.7.24","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.7.24","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{"core":["phf_shared/core"],"macros":["phf_macros"],"unicase":["phf_shared/unicase"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"phf_codegen","version":"0.7.24","id":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","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.7.24","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.7.24","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_codegen-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_codegen-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"phf_generator","version":"0.7.24","id":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"PHF generation logic","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"phf_shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.24","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.6","kind":null,"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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_generator-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_generator-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"phf_shared","version":"0.7.24","id":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","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.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"unicase","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.7.24/src/lib.rs","edition":"2015","doctest":true,"test":false}],"features":{"core":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.7.24/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/sfackler/rust-phf","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"pin-project","version":"1.0.2","id":"pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A crate for safe and ergonomic pin-projection.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"pin-project-internal","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":"pin-project-auxiliary-macro","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","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},{"name":"trybuild","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","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"struct-default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/struct-default.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"unsafe_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/unsafe_unpin.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"pinned_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/pinned_drop.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"pinned_drop-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/pinned_drop-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"struct-default-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/struct-default-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"not_unpin-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/not_unpin-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum-default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/enum-default.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum-default-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/enum-default-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"not_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/not_unpin.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"project_replace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/project_replace.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"project_replace-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/project_replace-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"unsafe_unpin-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/examples/unsafe_unpin-expanded.rs","edition":"2018","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"pin_project","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/pin_project.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"proper_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/proper_unpin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unsafe_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/unsafe_unpin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"pinned_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/pinned_drop.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/lint.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cfg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/cfg.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"repr_packed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/repr_packed.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"drop_order","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/tests/drop_order.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.2/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Taiki Endo "],"categories":["no-std","rust-patterns"],"keywords":["pin","macros","attribute"],"readme":"README.md","repository":"https://github.com/taiki-e/pin-project","homepage":"https://github.com/taiki-e/pin-project","documentation":"https://docs.rs/pin-project","edition":"2018","links":null},{"name":"pin-project-internal","version":"1.0.2","id":"pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"Implementation detail of the `pin-project` 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","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","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.44","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full","visit-mut"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"pin-project-internal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-1.0.2/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-1.0.2/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Taiki Endo "],"categories":["no-std","rust-patterns"],"keywords":["pin","macros","attribute"],"readme":null,"repository":"https://github.com/taiki-e/pin-project","homepage":"https://github.com/taiki-e/pin-project","documentation":"https://docs.rs/pin-project-internal","edition":"2018","links":null},{"name":"pin-project-lite","version":"0.1.11","id":"pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","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},{"name":"trybuild","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"proper_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/proper_unpin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/tests/lint.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.11/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Taiki Endo "],"categories":["no-std","rust-patterns"],"keywords":["pin","macros"],"readme":"README.md","repository":"https://github.com/taiki-e/pin-project-lite","homepage":"https://github.com/taiki-e/pin-project-lite","documentation":"https://docs.rs/pin-project-lite","edition":"2018","links":null},{"name":"pin-utils","version":"0.1.0","id":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Utilities for pinning\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"pin-utils","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stack_pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/tests/stack_pin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"projection","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/tests/projection.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["Josef Brandl "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang-nursery/pin-utils","homepage":null,"documentation":"https://docs.rs/pin-utils","edition":"2018","links":null},{"name":"pkg-config","version":"0.3.18","id":"pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.18/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.18/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.18/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},{"name":"ppv-lite86","version":"0.2.10","id":"ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.10/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std"],"no_simd":[],"simd":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.10/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},{"name":"precomputed-hash","version":"0.1.1","id":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A library intending to be a base dependency to expose a precomputed hash","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"precomputed-hash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/precomputed-hash-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/precomputed-hash-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Emilio Cobos Álvarez "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/emilio/precomputed-hash","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"proc-macro2","version":"0.4.30","id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A stable implementation of the upcoming new `proc_macro` API. Comes with an\noption, off by default, to also reimplement itself in terms of the upstream\nunstable API.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-xid","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":"quote","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"proc-macro2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/tests/test.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"marker","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/tests/marker.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["proc-macro"],"nightly":[],"proc-macro":[],"span-locations":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/Cargo.toml","metadata":{"docs":{"rs":{"rustc-args":["--cfg","procmacro2_semver_exempt"],"rustdoc-args":["--cfg","procmacro2_semver_exempt"]}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":["macros"],"readme":"README.md","repository":"https://github.com/alexcrichton/proc-macro2","homepage":"https://github.com/alexcrichton/proc-macro2","documentation":"https://docs.rs/proc-macro2","edition":"2015","links":null},{"name":"proc-macro2","version":"1.0.24","id":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A substitute implementation of the compiler's `proc_macro` API to decouple\ntoken-based libraries from the procedural macro use case.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-xid","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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"proc-macro2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"features","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/features.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"comments","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/comments.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"marker","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/marker.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_fmt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/tests/test_fmt.rs","edition":"2018","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["proc-macro"],"nightly":[],"proc-macro":[],"span-locations":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.24/Cargo.toml","metadata":{"docs":{"rs":{"rustc-args":["--cfg","procmacro2_semver_exempt"],"rustdoc-args":["--cfg","procmacro2_semver_exempt"],"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["span-locations"]}},"publish":null,"authors":["Alex Crichton ","David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["macros"],"readme":"README.md","repository":"https://github.com/alexcrichton/proc-macro2","homepage":null,"documentation":"https://docs.rs/proc-macro2","edition":"2018","links":null},{"name":"quick-error","version":"1.2.3","id":"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":" A macro which makes error types pleasant to write.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"quick-error","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"context","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/examples/context.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/Cargo.toml","metadata":null,"publish":null,"authors":["Paul Colomiets ","Colin Kiegel "],"categories":["rust-patterns"],"keywords":["macro","error","type","enum"],"readme":null,"repository":"http://github.com/tailhook/quick-error","homepage":"http://github.com/tailhook/quick-error","documentation":"http://docs.rs/quick-error","edition":"2015","links":null},{"name":"quote","version":"0.3.15","id":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Quasi-quoting macro quote!(...)","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.3.15/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.3.15/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.3.15/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":["syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","homepage":null,"documentation":"https://docs.rs/quote/","edition":"2015","links":null},{"name":"quote","version":"0.6.13","id":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.4.21","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/tests/test.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["proc-macro"],"proc-macro":["proc-macro2/proc-macro"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","homepage":null,"documentation":"https://docs.rs/quote/","edition":"2015","links":null},{"name":"quote","version":"1.0.7","id":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","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","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.19","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/tests/test.rs","edition":"2018","doctest":false,"test":true}],"features":{"default":["proc-macro"],"proc-macro":["proc-macro2/proc-macro"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","homepage":null,"documentation":"https://docs.rs/quote/","edition":"2018","links":null},{"name":"rand","version":"0.6.5","id":"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"packed_simd","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"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.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_core","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":"rand_hc","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":"rand_isaac","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":"rand_jitter","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":"rand_os","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":"rand_pcg","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":"rand_xorshift","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":"average","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":"rand_xoshiro","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":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"build","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":false,"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":["minwindef","ntsecapi","profileapi","winnt"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"monte-carlo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/examples/monte-carlo.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"monty-hall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/examples/monty-hall.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"uniformity","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/tests/uniformity.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"seq","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/seq.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"distributions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/distributions.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"generators","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/generators.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"misc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/benches/misc.rs","edition":"2015","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"alloc":["rand_core/alloc"],"default":["std"],"i128_support":[],"nightly":["simd_support"],"serde1":["rand_core/serde1","rand_isaac/serde1","rand_xorshift/serde1"],"simd_support":["packed_simd"],"std":["rand_core/std","alloc","rand_os","rand_jitter/std"],"stdweb":["rand_os/stdweb"],"wasm-bindgen":["rand_os/wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/Cargo.toml","metadata":{"docs":{"rs":{"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://crates.io/crates/rand","documentation":"https://rust-random.github.io/rand","edition":"2015","links":null},{"name":"rand","version":"0.7.3","id":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","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":"getrandom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.1","kind":null,"rename":"getrandom_package","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.4","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"packed_simd","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["into_bits"],"target":null,"registry":null},{"name":"rand_core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.1","kind":null,"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":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_hc","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_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":"rand_chacha","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(not(target_os = \"emscripten\"))","registry":null},{"name":"rand_hc","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(target_os = \"emscripten\")","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"monte-carlo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/examples/monte-carlo.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"monty-hall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/examples/monty-hall.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"seq","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/seq.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"generators","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/generators.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"misc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/misc.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"weighted","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/benches/weighted.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["rand_core/alloc"],"default":["std"],"getrandom":["getrandom_package","rand_core/getrandom"],"nightly":["simd_support"],"serde1":[],"simd_support":["packed_simd"],"small_rng":["rand_pcg"],"std":["rand_core/std","rand_chacha/std","alloc","getrandom","libc"],"stdweb":["getrandom_package/stdweb"],"wasm-bindgen":["getrandom_package/wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/Cargo.toml","metadata":{"docs":{"rs":{"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://crates.io/crates/rand","documentation":"https://rust-random.github.io/rand/","edition":"2018","links":null},{"name":"rand_chacha","version":"0.1.1","id":"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"ChaCha random number generator\n","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.2, <0.4","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"build","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","chacha"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_chacha","documentation":"https://rust-random.github.io/rand/rand_chacha","edition":"2015","links":null},{"name":"rand_chacha","version":"0.2.2","id":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","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.6","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.5","kind":null,"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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std","simd"],"simd":[],"std":["ppv-lite86/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/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://crates.io/crates/rand_chacha","documentation":"https://rust-random.github.io/rand/rand_chacha/","edition":"2018","links":null},{"name":"rand_core","version":"0.3.1","id":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"rand_core","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"alloc":["rand_core/alloc"],"default":["std"],"serde1":["rand_core/serde1"],"std":["rand_core/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/Cargo.toml","metadata":null,"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://crates.io/crates/rand_core","documentation":"https://rust-random.github.io/rand/rand_core","edition":"2015","links":null},{"name":"rand_core","version":"0.4.2","id":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"alloc":[],"serde1":["serde","serde_derive"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/Cargo.toml","metadata":null,"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://crates.io/crates/rand_core","documentation":"https://rust-random.github.io/rand/rand_core/","edition":"2015","links":null},{"name":"rand_core","version":"0.5.1","id":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","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.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":["derive"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"alloc":[],"serde1":["serde"],"std":["alloc","getrandom","getrandom/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/Cargo.toml","metadata":null,"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://crates.io/crates/rand_core","documentation":"https://rust-random.github.io/rand/rand_core/","edition":"2018","links":null},{"name":"rand_hc","version":"0.1.0","id":"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"HC128 random number generator\n","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.2, <0.4","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_hc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","hc128"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_hc","documentation":"https://docs.rs/rand_hc","edition":"2015","links":null},{"name":"rand_hc","version":"0.2.0","id":"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"HC128 random number generator\n","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":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_hc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.2.0/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","hc128"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_hc","documentation":"https://rust-random.github.io/rand/rand_hc/","edition":"2018","links":null},{"name":"rand_isaac","version":"0.1.1","id":"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"ISAAC random number generator\n","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.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","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.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_isaac","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"serde1":["serde","serde_derive","rand_core/serde1"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","isaac"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_isaac","documentation":"https://rust-random.github.io/rand/rand_isaac","edition":"2015","links":null},{"name":"rand_jitter","version":"0.1.4","id":"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Random number generator based on timing jitter","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":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_core","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":"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(any(target_os = \"macos\", target_os = \"ios\"))","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":["profileapi"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_jitter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/tests/mod.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/benches/mod.rs","edition":"2015","doctest":false,"test":false}],"features":{"std":["rand_core/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":[],"keywords":["random","rng","os"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":null,"documentation":"https://docs.rs/rand_jitter","edition":"2015","links":null},{"name":"rand_os","version":"0.1.3","id":"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"OS backed Random Number Generator","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":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_core","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":"rdrand","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":"cfg(target_env = \"sgx\")","registry":null},{"name":"cloudabi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"cloudabi\")","registry":null},{"name":"fuchsia-cprng","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 = \"fuchsia\")","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":["minwindef","ntsecapi","winnt"],"target":"cfg(windows)","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.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"wasm32-unknown-unknown","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_os","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/tests/mod.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":[],"keywords":["random","rng","os"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_os","documentation":"https://docs.rs/rand_os","edition":"2015","links":null},{"name":"rand_pcg","version":"0.1.2","id":"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Selected PCG random number generators\n","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.4","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":true,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.2","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":"^0.1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_pcg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lcg64xsh32","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/tests/lcg64xsh32.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mcg128xsl64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/tests/mcg128xsl64.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"serde1":["serde","serde_derive"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","pcg"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_pcg","documentation":"https://rust-random.github.io/rand/rand_pcg","edition":"2015","links":null},{"name":"rand_xorshift","version":"0.1.1","id":"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Xorshift random number generator\n","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.2, <0.4","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","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.0.38","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_xorshift","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/tests/mod.rs","edition":"2015","doctest":false,"test":true}],"features":{"serde1":["serde","serde_derive"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng","xorshift"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://crates.io/crates/rand_xorshift","documentation":"https://rust-random.github.io/rand/rand_xorshift","edition":"2015","links":null},{"name":"rdrand","version":"0.4.0","id":"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"ISC","license_file":null,"description":"An implementation of random number generator based on rdrand and rdseed instructions","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.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rdrand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"rdrand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/benches/rdrand.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"rdseed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/benches/rdseed.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/benches/std.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rdrand-0.4.0/Cargo.toml","metadata":null,"publish":null,"authors":["Simonas Kazlauskas "],"categories":[],"keywords":["rand","rdrand","rdseed","random"],"readme":null,"repository":"https://github.com/nagisa/rust_rdrand/","homepage":null,"documentation":"https://docs.rs/rdrand/0.4.0/","edition":"2015","links":null},{"name":"redox_syscall","version":"0.1.57","id":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","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":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"syscall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.1.57/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.1.57/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":"2015","links":null},{"name":"regex","version":"1.3.9","id":"regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.7.6","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.2.1","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.18","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"thread_local","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":"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},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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.6.5","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs","edition":"2015","doctest":false,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-single","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-single.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-replace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-replace.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-cheat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-cheat.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-single-cheat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-single-cheat.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/examples/shootout-regex-dna-bytes.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_default.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"default-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_default_bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_nfa.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa-utf8bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_nfa_utf8bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_nfa_bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_backtrack.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack-utf8bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_backtrack_utf8bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_backtrack_bytes.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"crates-regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/tests/test_crates_regex.rs","edition":"2015","doctest":false,"test":true}],"features":{"default":["std","perf","unicode","regex-syntax/default"],"pattern":[],"perf":["perf-cache","perf-dfa","perf-inline","perf-literal"],"perf-cache":["thread_local"],"perf-dfa":[],"perf-inline":[],"perf-literal":["aho-corasick","memchr"],"std":[],"unicode":["unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","regex-syntax/unicode"],"unicode-age":["regex-syntax/unicode-age"],"unicode-bool":["regex-syntax/unicode-bool"],"unicode-case":["regex-syntax/unicode-case"],"unicode-gencat":["regex-syntax/unicode-gencat"],"unicode-perl":["regex-syntax/unicode-perl"],"unicode-script":["regex-syntax/unicode-script"],"unicode-segment":["regex-syntax/unicode-segment"],"unstable":["pattern"],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"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":"2015","links":null},{"name":"regex-syntax","version":"0.6.18","id":"regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/benches/bench.rs","edition":"2015","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/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":"2015","links":null},{"name":"resolv-conf","version":"0.6.3","id":"resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":" The resolv.conf file parser\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"hostname","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":"quick-error","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"resolv_conf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/examples/parse.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/tests/lib.rs","edition":"2015","doctest":false,"test":true}],"features":{"system":["hostname"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/resolv-conf-0.6.3/Cargo.toml","metadata":null,"publish":null,"authors":["paul@colomiets.name"],"categories":["parser-implementations"],"keywords":["dns","unix","conf","resolv"],"readme":"README.md","repository":null,"homepage":"http://github.com/tailhook/resolv-conf","documentation":"https://docs.rs/resolv-conf/","edition":"2015","links":null},{"name":"rustc-demangle","version":"0.1.18","id":"rustc-demangle 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Rust compiler symbol demangling.\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":"rustc-demangle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.18/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.18/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/alexcrichton/rustc-demangle","homepage":"https://github.com/alexcrichton/rustc-demangle","documentation":"https://docs.rs/rustc-demangle","edition":"2015","links":null},{"name":"rustc-serialize","version":"0.3.24","id":"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Generic serialization/deserialization support corresponding to the\n`derive(RustcEncodable, RustcDecodable)` mode in the compiler. Also includes\nsupport for hex, base64, and json encoding and decoding.\n","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.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustc-serialize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"json","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/benches/json.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"base64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/benches/base64.rs","edition":"2015","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"hex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/benches/hex.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-serialize-0.3.24/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/rustc-serialize","homepage":"https://github.com/rust-lang/rustc-serialize","documentation":"https://doc.rust-lang.org/rustc-serialize","edition":"2015","links":null},{"name":"ryu","version":"1.0.5","id":"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","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.7","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.2","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"upstream_benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/examples/upstream_benchmark.rs","edition":"2018","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"exhaustive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/exhaustive.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"common_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/common_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"s2d_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/s2d_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"d2s_table_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/d2s_table_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"s2f_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/s2f_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"f2s_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/f2s_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"d2s_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/tests/d2s_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/benches/bench.rs","edition":"2018","doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"small":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/ryu","homepage":null,"documentation":"https://docs.rs/ryu","edition":"2018","links":null},{"name":"scopeguard","version":"1.1.0","id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"readme","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/examples/readme.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":["use_std"],"use_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.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":null,"repository":"https://github.com/bluss/scopeguard","homepage":null,"documentation":"https://docs.rs/scopeguard/","edition":"2015","links":null},{"name":"serde","version":"1.0.115","id":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","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.0.115","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.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.115/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.115/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"alloc":[],"default":["std"],"derive":["serde_derive"],"rc":[],"std":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.115/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["derive","rc"]}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["encoding"],"keywords":["serde","serialization","no_std"],"readme":"crates-io.md","repository":"https://github.com/serde-rs/serde","homepage":"https://serde.rs","documentation":"https://docs.serde.rs/serde/","edition":"2015","links":null},{"name":"serde_derive","version":"1.0.115","id":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","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","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.33","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["visit"],"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}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.115/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.115/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"default":[],"deserialize_in_place":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.115/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":[],"keywords":["serde","serialization","no_std"],"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},{"name":"serde_json","version":"1.0.57","id":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","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":"^1.2","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":"^0.4.3","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.100","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":"^0.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":"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","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","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.19","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/build.rs","edition":"2018","doctest":false,"test":false}],"features":{"alloc":["serde/alloc"],"arbitrary_precision":[],"default":["std"],"float_roundtrip":[],"preserve_order":["indexmap"],"raw_value":[],"std":["serde/std"],"unbounded_depth":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/Cargo.toml","metadata":{"docs":{"rs":{"features":["raw_value","unbounded_depth"],"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["raw_value"]}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["encoding"],"keywords":["json","serde","serialization"],"readme":"README.md","repository":"https://github.com/serde-rs/json","homepage":null,"documentation":"https://docs.serde.rs/serde_json/","edition":"2018","links":null},{"name":"siphasher","version":"0.2.3","id":"siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"SipHash functions from rust-core < 1.13","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.2.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.2.3/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":"2015","links":null},{"name":"slab","version":"0.4.2","id":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Pre-allocated storage for a uniform data type","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"slab","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/tests/slab.rs","edition":"2015","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":["memory-management","data-structures"],"keywords":["slab","allocator"],"readme":"README.md","repository":"https://github.com/carllerche/slab","homepage":"https://github.com/carllerche/slab","documentation":"https://docs.rs/slab/0.4.2/slab/","edition":"2015","links":null},{"name":"smallvec","version":"1.4.2","id":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/tests/macro.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/benches/bench.rs","edition":"2018","doctest":false,"test":false}],"features":{"const_generics":[],"may_dangle":[],"specialization":[],"union":[],"write":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/Cargo.toml","metadata":null,"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},{"name":"socket2","version":"0.3.17","id":"socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"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},{"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":"cfg(any(unix, target_os = \"redox\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.66","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["align"],"target":"cfg(any(unix, target_os = \"redox\"))","registry":null},{"name":"redox_syscall","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.38","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"redox\")","registry":null},{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["handleapi","ws2def","ws2ipdef","ws2tcpip","minwindef"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.17/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"pair":[],"reuseport":[],"unix":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.17/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/alexcrichton/socket2-rs","homepage":"https://github.com/alexcrichton/socket2-rs","documentation":null,"edition":"2018","links":null},{"name":"spdx","version":"0.3.1","id":"spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Helper crate for SDPX expressions","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":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"smallvec","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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"spdx","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spdx-0.3.1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spdx-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Embark ","Jake Shadle "],"categories":[],"keywords":["spdx","license"],"readme":"README.md","repository":"https://github.com/EmbarkStudios/spdx","homepage":"https://github.com/EmbarkStudios/spdx","documentation":"https://docs.rs/spdx","edition":"2018","links":null},{"name":"string_cache","version":"0.6.2","id":"string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"A string interning library for Rust, developed as part of the Servo project.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"debug_unreachable","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":"heapsize","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.3, <0.5","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":"^0.2","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.7.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"precomputed-hash","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":"serde","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":"string_cache_shared","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":"rand","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":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.6.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.6.2/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"log-events":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.6.2/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/string-cache","homepage":null,"documentation":"https://docs.rs/string_cache/","edition":"2015","links":null},{"name":"string_cache","version":"0.7.5","id":"string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"A string interning library for Rust, developed as part of the Servo project.","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":"new_debug_unreachable","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":"phf_shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"precomputed-hash","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":"serde","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":"string_cache_shared","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":"rand","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":"string_cache_codegen","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":"string_cache_codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/examples/simple.rs","edition":"2015","doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"small-stack","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/tests/small-stack.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/build.rs","edition":"2015","doctest":false,"test":false}],"features":{"log-events":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.7.5/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/string-cache","homepage":null,"documentation":"https://docs.rs/string_cache/","edition":"2015","links":null},{"name":"string_cache_codegen","version":"0.4.4","id":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"A codegen library for string-cache, developed as part of the Servo project.","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.7.15","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.7.4","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","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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"string_cache_shared","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_codegen","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_codegen-0.4.4/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_codegen-0.4.4/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/string-cache","homepage":null,"documentation":"https://docs.rs/string_cache_codegen/","edition":"2015","links":null},{"name":"string_cache_shared","version":"0.3.0","id":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Code share between string_cache and string_cache_codegen.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_shared-0.3.0/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_shared-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/string-cache","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"syn","version":"0.11.11","id":"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Nom parser for Rust source code","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.7","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"synom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","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.0.4","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syntex_pos","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.58","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syntex_syntax","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.58","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.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":"^1.0.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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.11.11/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"aster":[],"default":["parsing","printing"],"fold":[],"full":[],"parsing":["unicode-xid","synom"],"printing":["quote"],"visit":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.11.11/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/syn","homepage":null,"documentation":"https://dtolnay.github.io/syn/syn/","edition":"2015","links":null},{"name":"syn","version":"0.15.44","id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.4.4","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":"^0.6","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"unicode-xid","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":"insta","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":"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":"^0.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.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.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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zzz_stable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/zzz_stable.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_precedence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_precedence.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_derive_input","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_derive_input.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_expr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_expr.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_meta.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ident","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_ident.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_asyncness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_asyncness.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_lit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_lit.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_should_parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_should_parse.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_pat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_pat.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_round_trip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_round_trip.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_parse_buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_parse_buffer.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_generics.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_token_trees","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_token_trees.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_attribute","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_attribute.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_grouping","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/tests/test_grouping.rs","edition":"2015","doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/build.rs","edition":"2015","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"],"visit":[],"visit-mut":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}},"playground":{"all-features":true}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/syn","homepage":null,"documentation":"https://docs.rs/syn","edition":"2015","links":null},{"name":"syn","version":"1.0.54","id":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","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.23","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-xid","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":"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":"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.10","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","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zzz_stable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/zzz_stable.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_precedence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_precedence.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_receiver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_receiver.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ty","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_ty.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_visibility","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_visibility.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_parse_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_parse_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_derive_input","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_derive_input.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_expr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_expr.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_meta.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ident","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_ident.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_stmt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_stmt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_asyncness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_asyncness.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_lit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_lit.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_should_parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_should_parse.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_pat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_pat.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_size","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_size.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_round_trip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_round_trip.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_shebang","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_shebang.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_iterators","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_iterators.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_parse_buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_parse_buffer.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_generics.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_token_trees","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_token_trees.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_path.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_attribute","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_attribute.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_grouping","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_grouping.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_item","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/tests/test_item.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"rust","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/benches/rust.rs","edition":"2018","required-features":["full","parsing"],"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/benches/file.rs","edition":"2018","required-features":["full","parsing"],"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/build.rs","edition":"2018","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"],"test":["syn-test-suite/all-features"],"visit":[],"visit-mut":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.54/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"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/syn","homepage":null,"documentation":"https://docs.rs/syn","edition":"2018","links":null},{"name":"synom","version":"0.11.3","id":"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Stripped-down Nom parser used by Syn","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-xid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.4","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":"^0.11","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["parsing","full"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"synom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/synom-0.11.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/synom-0.11.3/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":[],"readme":"../README.md","repository":"https://github.com/dtolnay/syn","homepage":null,"documentation":"https://docs.rs/synom/","edition":"2015","links":null},{"name":"synstructure","version":"0.12.4","id":"synstructure 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","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","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":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["derive","parsing","printing","clone-impls","visit","extra-traits"],"target":null,"registry":null},{"name":"unicode-xid","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":"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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.4/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["proc-macro"],"proc-macro":["proc-macro2/proc-macro","syn/proc-macro","quote/proc-macro"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.4/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},{"name":"tendril","version":"0.4.1","id":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Compact buffer/string type for zero-copy parsing","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"encoding","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.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futf","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":"mac","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":"utf-8","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","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.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tendril-0.4.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"fuzz","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tendril-0.4.1/examples/fuzz.rs","edition":"2015","doctest":false,"test":false}],"features":{"bench":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tendril-0.4.1/Cargo.toml","metadata":null,"publish":null,"authors":["Keegan McAllister ","Simon Sapin ","Chris Morgan "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/tendril","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"thiserror","version":"1.0.22","id":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","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.22","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":"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":"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.19","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_option","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_option.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_lints","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_lints.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_source","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_source.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_expr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_expr.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_backtrace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_backtrace.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/compiletest.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_from","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_from.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_error","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_error.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_display","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_display.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_transparent","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_transparent.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_path.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_deprecated","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/tests/test_deprecated.rs","edition":"2018","doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.22/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["rust-patterns"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/thiserror","homepage":null,"documentation":"https://docs.rs/thiserror","edition":"2018","links":null},{"name":"thiserror-impl","version":"1.0.22","id":"thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","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","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.45","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.22/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.22/Cargo.toml","metadata":{"docs":{"rs":{"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":"2018","links":null},{"name":"tinyvec","version":"0.3.4","id":"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"Zlib OR Apache-2.0 OR MIT","license_file":null,"description":"Just, really the littlest Vec you could need. So smol.","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.0","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tinyvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/tests/tinyvec.rs","edition":"2018","required-features":["alloc"],"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"arrayvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/tests/arrayvec.rs","edition":"2018","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/benches/macros.rs","edition":"2018","required-features":["alloc"],"doctest":false,"test":false}],"features":{"alloc":[],"default":[],"experimental_write_impl":[],"grab_spare_slice":[],"nightly_const_generics":[],"nightly_slice_partition_dedup":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Lokathor "],"categories":["data-structures","no-std"],"keywords":["vec","no_std","no-std","smol"],"readme":"README.md","repository":"https://github.com/Lokathor/tinyvec","homepage":null,"documentation":null,"edition":"2018","links":null},{"name":"tokio","version":"0.2.24","id":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"An event-driven, non-blocking I/O platform for writing asynchronous I/O\nbacked applications.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"fnv","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":"futures-core","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":"iovec","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":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.4.0","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.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.20","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.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.11.0","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.1.1","kind":null,"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":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-macros","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.16","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures","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":["async-await"],"target":null,"registry":null},{"name":"futures-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":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.4","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-test","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":"loom","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":["futures","checkpoint"],"target":"cfg(loom)","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.42","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"mio-uds","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"signal-hook-registry","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"mio-named-pipes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(windows)","registry":null},{"name":"winapi","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_oneshot","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_oneshot.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_cred","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_cred.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_exact","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_exact.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_mpsc.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_usr1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_usr1.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_all","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_write_all.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"buffered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/buffered.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_copy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_copy.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_interval","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_interval.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_recv","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_drop_recv.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_take","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_take.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_throttle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_throttle.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mutex_owned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_mutex_owned.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_pending","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_pending.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_connect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_connect.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_into_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_into_split.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_test.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_collect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_collect.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_drop_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_once","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_once.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_until","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_until.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_lookup_host","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/net_lookup_host.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_notify_both","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_notify_both.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_cancellation_token","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_cancellation_token.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_driver_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_driver_drop.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_signal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_drop_signal.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_mem_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_mem_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_join.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_async_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_async_read.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/no_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_blocking","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/task_blocking.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_semaphore","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_semaphore.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_copy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_copy.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_local","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/task_local.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_fuse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_fuse.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_datagram","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_datagram.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_smoke","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_smoke.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_reader.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_watch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_watch.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_to_string","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_to_string.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_bind_resource","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/net_bind_resource.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"udp","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/udp.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_split.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_empty","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_empty.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_write.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_common","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/rt_common.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_delay","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_delay.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_kill_on_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_kill_on_drop.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_ctrl_c","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_ctrl_c.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_twice","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_twice.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_iter.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_delay_queue","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_delay_queue.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_stream_map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_stream_map.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_lines","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_lines.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_accept","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_accept.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_errors","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_errors.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_merge","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_merge.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_threaded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/rt_threaded.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_issue_2174","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_issue_2174.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_dir","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_dir.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_semaphore_owned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_semaphore_owned.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_link","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_link.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_timeout.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/stream_chain.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_local_set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/task_local_set.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/time_timeout.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_multi_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_multi_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_to_end","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_to_end.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_reader_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_reader_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_barrier","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_barrier.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_read_line.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_shutdown","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_shutdown.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_broadcast","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_broadcast.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_clock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/test_clock.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_driver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_driver.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mutex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_mutex.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_try_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_try_join.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"_require_full","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/_require_full.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_int","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_write_int.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_select","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_select.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_file.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_notify","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_notify.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_no_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/signal_no_rt.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"async_send_sync","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/async_send_sync.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_peek","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_peek.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_echo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_echo.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/macros_pin.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_rwlock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/sync_rwlock.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_split.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/uds_stream.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_file_mocked","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/fs_file_mocked.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_issue_42","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/process_issue_42.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/io_chain.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/rt_basic.rs","edition":"2018","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/tests/tcp_split.rs","edition":"2018","doctest":false,"test":true}],"features":{"blocking":["rt-core"],"default":[],"dns":["rt-core"],"fs":["rt-core","io-util"],"full":["blocking","dns","fs","io-driver","io-util","io-std","macros","net","process","rt-core","rt-util","rt-threaded","signal","stream","sync","time"],"io-driver":["mio","lazy_static"],"io-std":["rt-core"],"io-util":["memchr"],"macros":["tokio-macros"],"net":["dns","tcp","udp","uds"],"process":["io-driver","libc","mio-named-pipes","signal","winapi/consoleapi","winapi/minwindef","winapi/threadpoollegacyapiset","winapi/winerror"],"rt-core":["slab"],"rt-threaded":["num_cpus","rt-core"],"rt-util":[],"signal":["io-driver","lazy_static","libc","mio-uds","signal-hook-registry","winapi/consoleapi","winapi/minwindef"],"stream":["futures-core"],"sync":["fnv"],"tcp":["io-driver","iovec"],"test-util":[],"time":["slab"],"udp":["io-driver"],"uds":["io-driver","mio-uds","libc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["full"]}},"publish":null,"authors":["Tokio Contributors "],"categories":["asynchronous","network-programming"],"keywords":["io","async","non-blocking","futures"],"readme":"README.md","repository":"https://github.com/tokio-rs/tokio","homepage":"https://tokio.rs","documentation":"https://docs.rs/tokio/0.2.24/tokio/","edition":"2018","links":null},{"name":"trust-dns-proto","version":"0.20.0-alpha.3","id":"trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Trust-DNS is a safe and secure DNS library. This is the foundational DNS protocol library for all Trust-DNS projects.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"async-trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.36","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.50","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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"data-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.2.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"enum-as-inner","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":"futures-channel","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures-io","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"idna","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":"ipnet","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":null,"registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.44","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":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":"openssl","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["v102","v110"],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"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.16","kind":null,"rename":null,"optional":true,"uses_default_features":true,"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":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"socket2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.12","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.20","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":"^0.2.22","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.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.58","kind":null,"rename":"wasm-bindgen-crate","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.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-executor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.22","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["rt-core","time"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"trust_dns_proto","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/benches/lib.rs","edition":"2018","doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"name_benches","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/benches/name_benches.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["tokio-runtime"],"dnssec":[],"dnssec-openssl":["dnssec","openssl"],"dnssec-ring":["dnssec","ring"],"mdns":["socket2/reuseport"],"serde-config":["serde"],"testing":[],"tokio-runtime":["tokio/rt-core","tokio/udp","tokio/tcp","tokio/time"],"wasm-bindgen":["wasm-bindgen-crate","js-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.20.0-alpha.3/Cargo.toml","metadata":null,"publish":null,"authors":["Benjamin Fry "],"categories":["network-programming"],"keywords":["DNS","BIND","dig","named","dnssec"],"readme":"README.md","repository":"https://github.com/bluejekyll/trust-dns","homepage":"http://www.trust-dns.org/index.html","documentation":"https://docs.rs/trust-dns-proto","edition":"2018","links":null},{"name":"trust-dns-resolver","version":"0.20.0-alpha.3","id":"trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Trust-DNS is a safe and secure DNS library. This Resolver library uses the Client library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.\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":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"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.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":"lru-cache","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":"parking_lot","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":"resolv-conf","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":["system"],"target":null,"registry":null},{"name":"rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.18","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":["derive"],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.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.20","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":"^0.2.22","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-native-tls","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":"tokio-openssl","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":"tokio-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-https","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-native-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-openssl","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trust-dns-proto","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"trust-dns-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.0-alpha.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"webpki-roots","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":"env_logger","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":"futures-executor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"ipconfig","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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"trust_dns_resolver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"global_resolver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/examples/global_resolver.rs","edition":"2018","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"multithreaded_runtime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/examples/multithreaded_runtime.rs","edition":"2018","doctest":false,"test":false}],"features":{"backtrace":["trust-dns-proto/backtrace"],"default":["system-config","tokio-runtime"],"dns-over-https":[],"dns-over-https-rustls":["trust-dns-https","dns-over-rustls","dns-over-https"],"dns-over-native-tls":["dns-over-tls","tokio-native-tls","trust-dns-native-tls"],"dns-over-openssl":["dns-over-tls","trust-dns-openssl","tokio-openssl"],"dns-over-rustls":["dns-over-tls","rustls","tokio-rustls","trust-dns-rustls","webpki-roots"],"dns-over-tls":[],"dnssec":[],"dnssec-openssl":["dnssec","trust-dns-proto/dnssec-openssl"],"dnssec-ring":["dnssec","trust-dns-proto/dnssec-ring"],"mdns":["trust-dns-proto/mdns"],"serde-config":["serde","trust-dns-proto/serde-config"],"system-config":["ipconfig","resolv-conf"],"testing":[],"tokio-runtime":["tokio/rt-core","trust-dns-proto/tokio-runtime"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-resolver-0.20.0-alpha.3/Cargo.toml","metadata":null,"publish":null,"authors":["Benjamin Fry "],"categories":["network-programming"],"keywords":["DNS","BIND","dig","named","dnssec"],"readme":"README.md","repository":"https://github.com/bluejekyll/trust-dns","homepage":"http://www.trust-dns.org/index.html","documentation":"https://docs.rs/trust-dns-resolver","edition":"2018","links":null},{"name":"unicode-bidi","version":"0.3.4","id":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Implementation of the Unicode Bidirectional Algorithm","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"flame","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":"flamer","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":"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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.8, <2.0","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":">=0.8, <2.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"bench_it":[],"default":[],"flame_it":["flame","flamer"],"unstable":[],"with_serde":["serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":["rtl","unicode","text","layout","bidi"],"readme":"README.md","repository":"https://github.com/servo/unicode-bidi","homepage":null,"documentation":"http://doc.servo.org/unicode_bidi/","edition":"2015","links":null},{"name":"unicode-normalization","version":"0.1.13","id":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","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":"^0.3.3","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/benches/bench.rs","edition":"2018","doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/Cargo.toml","metadata":null,"publish":null,"authors":["kwantam "],"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},{"name":"unicode-segmentation","version":"1.7.1","id":"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"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":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-segmentation","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.7.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"graphemes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.7.1/benches/graphemes.rs","edition":"2015","doctest":false,"test":false}],"features":{"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.7.1/Cargo.toml","metadata":null,"publish":null,"authors":["kwantam ","Manish Goregaokar "],"categories":[],"keywords":["text","unicode","grapheme","word","boundary"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-segmentation","homepage":"https://github.com/unicode-rs/unicode-segmentation","documentation":"https://unicode-rs.github.io/unicode-segmentation","edition":"2015","links":null},{"name":"unicode-xid","version":"0.0.4","id":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.0.4/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"bench":[],"default":[],"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.0.4/Cargo.toml","metadata":null,"publish":null,"authors":["erick.tryzelaar ","kwantam "],"categories":[],"keywords":["text","unicode","xid"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-xid","homepage":"https://github.com/unicode-rs/unicode-xid","documentation":"https://unicode-rs.github.io/unicode-xid","edition":"2015","links":null},{"name":"unicode-xid","version":"0.1.0","id":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"bench":[],"default":[],"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["erick.tryzelaar ","kwantam "],"categories":[],"keywords":["text","unicode","xid"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-xid","homepage":"https://github.com/unicode-rs/unicode-xid","documentation":"https://unicode-rs.github.io/unicode-xid","edition":"2015","links":null},{"name":"unicode-xid","version":"0.2.1","id":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"exhaustive_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/tests/exhaustive_tests.rs","edition":"2015","doctest":false,"test":true}],"features":{"bench":[],"default":[],"no_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/Cargo.toml","metadata":null,"publish":null,"authors":["erick.tryzelaar ","kwantam "],"categories":[],"keywords":["text","unicode","xid"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-xid","homepage":"https://github.com/unicode-rs/unicode-xid","documentation":"https://unicode-rs.github.io/unicode-xid","edition":"2015","links":null},{"name":"unreachable","version":"0.1.1","id":"unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"An unreachable code optimization hint in stable rust.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"void","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unreachable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unreachable-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unreachable-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-unreachable.git","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"url","version":"1.7.2","id":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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":"encoding","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":"heapsize","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.4.1, <0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"idna","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":"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":"percent-encoding","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":"rustc-serialize","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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.6.1, <0.9","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-serialize","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":"rustc-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":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":">=0.6.1, <0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/src/lib.rs","edition":"2015","doctest":true,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/tests/unit.rs","edition":"2015","doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"data","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/tests/data.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse_url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/benches/parse_url.rs","edition":"2015","doctest":false,"test":false}],"features":{"heap_size":["heapsize"],"query_encoding":["encoding"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/Cargo.toml","metadata":{"docs":{"rs":{"features":["query_encoding"]}}},"publish":null,"authors":["The rust-url developers"],"categories":["parser-implementations","web-programming","encoding"],"keywords":["url","parser"],"readme":"README.md","repository":"https://github.com/servo/rust-url","homepage":null,"documentation":"https://docs.rs/url","edition":"2015","links":null},{"name":"url","version":"2.2.0","id":"url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/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.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"idna","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":"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":"percent-encoding","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":"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_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":"url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.0/src/lib.rs","edition":"2018","doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse_url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.0/benches/parse_url.rs","edition":"2018","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["The rust-url developers"],"categories":["parser-implementations","web-programming","encoding"],"keywords":["url","parser"],"readme":"../README.md","repository":"https://github.com/servo/rust-url","homepage":null,"documentation":"https://docs.rs/url","edition":"2018","links":null},{"name":"utf-8","version":"0.7.5","id":"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Incremental, zero-copy UTF-8 decoding with error handling","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"utf8","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/src/lib.rs","edition":"2015","doctest":true,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/tests/unit.rs","edition":"2015","doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"from_utf8_lossy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/benches/from_utf8_lossy.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/Cargo.toml","metadata":null,"publish":null,"authors":["Simon Sapin "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/SimonSapin/rust-utf8","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"void","version":"1.0.2","id":"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"The uninhabited void type for use in statically impossible cases.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"void","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/void-1.0.2/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/void-1.0.2/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Reem "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/reem/rust-void.git","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"wasi","version":"0.9.0+wasi-snapshot-preview1","id":"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.9.0+wasi-snapshot-preview1/src/lib.rs","edition":"2018","doctest":true,"test":true}],"features":{"default":["std"],"rustc-dep-of-std":["compiler_builtins","core","rustc-std-workspace-alloc"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.9.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},{"name":"widestring","version":"0.4.3","id":"widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A wide string FFI library for converting to and from wide strings, such as those often used in Windows API or other FFI libraries. Both UTF-16 and UTF-32 types are provided.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["winbase"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"widestring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/widestring-0.4.3/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/widestring-0.4.3/Cargo.toml","metadata":null,"publish":null,"authors":["Kathryn Long "],"categories":["text-processing","encoding"],"keywords":["wide","string","win32","utf-16","utf-32"],"readme":"README.md","repository":"https://github.com/starkat99/widestring-rs.git","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"winapi","version":"0.2.8","id":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Types and constants for WinAPI bindings. See README for list of crates providing function bindings.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"advapi32-sys","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":"bcrypt-sys","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":"comctl32-sys","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":"comdlg32-sys","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":"credui-sys","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":"crypt32-sys","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":"d2d1-sys","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":"d3d11-sys","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":"d3d12-sys","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":"d3d9-sys","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":"d3dcompiler-sys","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":"dbghelp-sys","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":"dsound-sys","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":"dwmapi-sys","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":"dwrite-sys","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":"dxgi-sys","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":"dxguid-sys","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":"gdi32-sys","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":"hid-sys","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":"httpapi-sys","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":"kernel32-sys","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":"ktmw32-sys","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":"mpr-sys","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":"netapi32-sys","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":"odbc32-sys","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":"ole32-sys","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":"oleaut32-sys","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":"opengl32-sys","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":"pdh-sys","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":"psapi-sys","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":"runtimeobject-sys","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":"secur32-sys","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":"setupapi-sys","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":"shell32-sys","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":"shlwapi-sys","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":"user32-sys","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":"userenv-sys","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":"usp10-sys","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":"uuid-sys","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":"vssapi-sys","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":"wevtapi-sys","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":"winhttp-sys","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":"winmm-sys","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":"winscard-sys","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":"winspool-sys","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":"winusb-sys","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":"ws2_32-sys","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":"xinput-sys","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"winapi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.2.8/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.2.8/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["windows","ffi","win32","com","directx"],"readme":"README.md","repository":"https://github.com/retep998/winapi-rs","homepage":null,"documentation":"https://retep998.github.io/doc/winapi/","edition":"2015","links":null},{"name":"winapi","version":"0.3.9","id":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs","edition":"2015","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","features":["everything","impl-debug","impl-default"],"targets":["aarch64-pc-windows-msvc","i686-pc-windows-msvc","x86_64-pc-windows-msvc"]}}},"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},{"name":"winapi-build","version":"0.1.1","id":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Common code for build.rs in WinAPI -sys crates.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-build-0.1.1/src/lib.rs","edition":"2015","doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-build-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["Windows","FFI","WinSDK"],"readme":null,"repository":"https://github.com/retep998/winapi-rs","homepage":null,"documentation":null,"edition":"2015","links":null},{"name":"winapi-i686-pc-windows-gnu","version":"0.4.0","id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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},{"name":"winapi-x86_64-pc-windows-gnu","version":"0.4.0","id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","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/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/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},{"name":"winreg","version":"0.6.2","id":"winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Rust bindings to MS Windows Registry API","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.6","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":"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":["impl-default","impl-debug","minwindef","minwinbase","timezoneapi","winerror","winnt","winreg","handleapi"],"target":null,"registry":null},{"name":"rand","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"winreg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"basic_usage","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/basic_usage.rs","edition":"2015","required-features":["chrono"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/enum.rs","edition":"2015","doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"transactions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/transactions.rs","edition":"2015","required-features":["transactions"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"serialization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/serialization.rs","edition":"2015","required-features":["serialization-serde"],"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"installed_apps","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/examples/installed_apps.rs","edition":"2015","required-features":["serialization-serde"],"doctest":false,"test":false}],"features":{"serialization-serde":["transactions","serde"],"transactions":["winapi/ktmw32"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"default-target":"x86_64-pc-windows-msvc"}}},"publish":null,"authors":["Igor Shaula "],"categories":["api-bindings","os::windows-apis"],"keywords":["Windows","WinSDK","Registry"],"readme":"README.md","repository":"https://github.com/gentoo90/winreg-rs","homepage":null,"documentation":"https://docs.rs/winreg","edition":"2015","links":null},{"name":"ws2_32-sys","version":"0.2.1","id":"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Contains function definitions for the Windows API library ws2_32. See winapi for types and constants.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"winapi-build","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ws2_32","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/src/lib.rs","edition":"2015","doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/build.rs","edition":"2015","doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/Cargo.toml","metadata":null,"publish":null,"authors":["Peter Atashian "],"categories":[],"keywords":["windows","ffi","win32"],"readme":"README.md","repository":"https://github.com/retep998/winapi-rs","homepage":null,"documentation":"https://retep998.github.io/doc/ws2_32/","edition":"2015","links":null}],"workspace_members":["advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)"],"resolve":{"nodes":[{"id":"addr2line 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["gimli 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"gimli","pkg":"gimli 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)","dependencies":["ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ammonia","pkg":"ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"artifact_serde","pkg":"artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"failure","pkg":"failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libusb","pkg":"libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"spdx","pkg":"spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"trust_dns_resolver","pkg":"trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ammonia 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"html5ever","pkg":"html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"maplit","pkg":"maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"html5ever","pkg":"html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"maplit","pkg":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"artifact_serde 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ammonia","pkg":"ammonia 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"base64","pkg":"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde_derive","pkg":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde_json","pkg":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"backtrace 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["addr2line 0.14.1 (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.77 (registry+https://github.com/rust-lang/crates.io-index)","miniz_oxide 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","object 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"addr2line","pkg":"addr2line 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"miniz_oxide","pkg":"miniz_oxide 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"object","pkg":"object 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustc_demangle","pkg":"rustc-demangle 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["addr2line","default","gimli-symbolize","miniz_oxide","object","std"]},{"id":"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"byteorder","pkg":"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bit_vec","pkg":"bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bit-vec 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bitflags","pkg":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["bitflags","default"]},{"id":"data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","std"]},{"id":"debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unreachable","pkg":"unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"heck","pkg":"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["backtrace 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)","failure_derive 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"backtrace","pkg":"backtrace 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"failure_derive","pkg":"failure_derive 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["backtrace","default","derive","failure_derive","std"]},{"id":"failure_derive 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","synstructure 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"synstructure","pkg":"synstructure 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bitflags","pkg":"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fuchsia_zircon_sys","pkg":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"debug_unreachable","pkg":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"id":"futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"once_cell","pkg":"once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","once_cell","std"]},{"id":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_task","pkg":"futures-task 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project","pkg":"pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_utils","pkg":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","slab","std"]},{"id":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"wasi","pkg":"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"wasi\")"}]}],"features":["std"]},{"id":"gimli 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["read"]},{"id":"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_segmentation","pkg":"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"redox\"))"}]},{"name":"match_cfg","pkg":"match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["default"]},{"id":"html5ever 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"markup5ever","pkg":"markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"syn","pkg":"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"html5ever 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"markup5ever","pkg":"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"quote","pkg":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"syn","pkg":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_bidi","pkg":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_normalization","pkg":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_bidi","pkg":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_normalization","pkg":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]}],"features":[]},{"id":"ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"socket2","pkg":"socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"widestring","pkg":"widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"winreg","pkg":"winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"build","pkg":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["align","default","std"]},{"id":"libusb 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bit_set","pkg":"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libusb_sys","pkg":"libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"libusb-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pkg_config","pkg":"pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"scopeguard","pkg":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","use_std"]},{"id":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"linked_hash_map","pkg":"linked-hash-map 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"markup5ever 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf","pkg":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_codegen","pkg":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"rustc_serialize","pkg":"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache","pkg":"string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"markup5ever 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf","pkg":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_codegen","pkg":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"serde_derive","pkg":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"serde_json","pkg":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache","pkg":"string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"tendril","pkg":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"match_cfg 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","use_core"]},{"id":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"miniz_oxide 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"adler","pkg":"adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"autocfg","pkg":"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fuchsia_zircon","pkg":"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"fuchsia\")"}]},{"name":"fuchsia_zircon_sys","pkg":"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"fuchsia\")"}]},{"name":"iovec","pkg":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"kernel32","pkg":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"miow","pkg":"miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"net2","pkg":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","with-deprecated"]},{"id":"miow 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"kernel32","pkg":"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"net2","pkg":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ws2_32","pkg":"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"redox\", unix, target_os = \"wasi\"))"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","duration"]},{"id":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"object 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["archive","coff","elf","macho","pe","read_core","unaligned"]},{"id":"once_cell 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"id":"parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"instant","pkg":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lock_api","pkg":"lock_api 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"parking_lot_core","pkg":"parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"parking_lot_core 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"instant","pkg":"instant 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"syscall","pkg":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"redox\")"}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_generator","pkg":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand","pkg":"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"siphasher","pkg":"siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"pin_project_internal","pkg":"pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project-internal 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"pkg-config 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["simd","std"]},{"id":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_xid","pkg":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_xid","pkg":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_chacha","pkg":"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_hc","pkg":"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_isaac","pkg":"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_jitter","pkg":"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_os","pkg":"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_pcg","pkg":"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_xorshift","pkg":"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["alloc","default","rand_os","std"]},{"id":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom_package","pkg":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_chacha","pkg":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_os = \"emscripten\"))"}]},{"name":"rand_core","pkg":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_hc","pkg":"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"emscripten\")"}]}],"features":["alloc","default","getrandom","getrandom_package","libc","std"]},{"id":"rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ppv_lite86","pkg":"ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_core","pkg":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"id":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom","pkg":"getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","getrandom","std"]},{"id":"rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))"}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["std"]},{"id":"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cloudabi","pkg":"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"cloudabi\")"}]},{"name":"fuchsia_cprng","pkg":"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"fuchsia\")"}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rdrand","pkg":"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_env = \"sgx\")"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"rand_core","pkg":"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rand_core","pkg":"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"regex_syntax","pkg":"regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"hostname","pkg":"hostname 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quick_error","pkg":"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["hostname","system"]},{"id":"rustc-demangle 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"serde_derive 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"itoa","pkg":"itoa 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ryu","pkg":"ryu 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"socket2 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"redox\"))"}]},{"name":"libc","pkg":"libc 0.2.77 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"redox\"))"}]},{"name":"syscall","pkg":"redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"redox\")"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"spdx 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"regex","pkg":"regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"debug_unreachable","pkg":"debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"precomputed_hash","pkg":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache_shared","pkg":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"debug_unreachable","pkg":"new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"precomputed_hash","pkg":"precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_codegen","pkg":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"string_cache_shared","pkg":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"phf_generator","pkg":"phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"phf_shared","pkg":"phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"string_cache_shared","pkg":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"quote","pkg":"quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"synom","pkg":"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","full","parsing","printing","quote","synom","unicode-xid","visit"]},{"id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote"]},{"id":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["clone-impls","default","derive","extra-traits","full","parsing","printing","proc-macro","quote","visit","visit-mut"]},{"id":"synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_xid","pkg":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"synstructure 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_xid","pkg":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futf","pkg":"futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mac","pkg":"mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"utf8","pkg":"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"thiserror_impl","pkg":"thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"thiserror-impl 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default"]},{"id":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"iovec","pkg":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mio","pkg":"mio 0.6.23 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","io-driver","iovec","lazy_static","mio","rt-core","slab","tcp","time","udp"]},{"id":"trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_trait","pkg":"async-trait 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"data_encoding","pkg":"data-encoding 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"enum_as_inner","pkg":"enum-as-inner 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_channel","pkg":"futures-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_io","pkg":"futures-io 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"idna","pkg":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ipnet","pkg":"ipnet 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand","pkg":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["tokio","tokio-runtime"]},{"id":"trust-dns-resolver 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ipconfig","pkg":"ipconfig 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"log","pkg":"log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lru_cache","pkg":"lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"parking_lot","pkg":"parking_lot 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"resolv_conf","pkg":"resolv-conf 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"trust_dns_proto","pkg":"trust-dns-proto 0.20.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","ipconfig","resolv-conf","system-config","tokio","tokio-runtime"]},{"id":"unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"unicode-normalization 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"tinyvec","pkg":"tinyvec 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"unicode-segmentation 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"void","pkg":"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"idna","pkg":"idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"url 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"form_urlencoded","pkg":"form_urlencoded 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"idna","pkg":"idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matches","pkg":"matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"utf-8 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"widestring 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","std"]},{"id":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi_i686_pc_windows_gnu","pkg":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"}]},{"name":"winapi_x86_64_pc_windows_gnu","pkg":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"}]}],"features":["errhandlingapi","handleapi","impl-debug","impl-default","minwinbase","minwindef","ntsecapi","ntstatus","profileapi","sysinfoapi","timezoneapi","winbase","winerror","winnt","winreg","winsock2","ws2def","ws2ipdef","ws2tcpip"]},{"id":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi","pkg":"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"build","pkg":"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]}],"root":"advisories 0.1.0 (path+file:///home/jake/code/cargo-deny/examples/06_advisories)"},"target_directory":"/home/jake/code/cargo-deny/examples/06_advisories/target","version":1,"workspace_root":"/home/jake/code/cargo-deny/examples/06_advisories","metadata":null}