diff --git a/.gitignore b/.gitignore index b6e80e2..e6ce8aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ **/target/ **/*.rs.bk -Cargo.lock \ No newline at end of file +Cargo.lock +*.snap.new diff --git a/src/lib.rs b/src/lib.rs index 80f1105..8d3e809 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -270,6 +270,34 @@ impl Krates { }) } + /// Gets the crates that have a direct dependency on the specified node + #[inline] + pub fn direct_dependents(&self, nid: NodeId) -> Vec<&N> { + let graph = self.graph(); + let mut direct_dependencies = Vec::new(); + let mut stack = vec![nid]; + let mut visited = std::collections::BTreeSet::new(); + + while let Some(nid) = stack.pop() { + for edge in graph.edges_directed(nid, Direction::Incoming) { + match &self.graph[edge.source()] { + Node::Krate { krate, .. } => { + if visited.insert(edge.source()) { + direct_dependencies.push(krate); + } + } + Node::Feature { krate_index, .. } => { + if *krate_index == nid { + stack.push(edge.source()); + } + } + } + } + } + + direct_dependencies + } + /// Get the node identifier for the specified crate identifier #[inline] pub fn nid_for_kid(&self, kid: &Kid) -> Option { diff --git a/tests/direct.json b/tests/direct.json new file mode 100644 index 0000000..36cd9a4 --- /dev/null +++ b/tests/direct.json @@ -0,0 +1 @@ +{"packages":[{"name":"adler","version":"1.0.2","id":"adler 1.0.2 (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-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/benches/bench.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std"],"rustc-dep-of-std":["core","compiler_builtins"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/Cargo.toml","metadata":{"docs":{"rs":{"rustdoc-args":["--cfg=docsrs"]}},"release":{"no-dev-version":true,"pre-release-commit-message":"Release {{version}}","tag-message":"{{version}}","pre-release-replacements":[{"file":"CHANGELOG.md","replace":"## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n","search":"## Unreleased\n"},{"file":"README.md","replace":"adler = \"{{version}}\"","search":"adler = \"[a-z0-9\\\\.-]+\""},{"file":"src/lib.rs","replace":"https://docs.rs/adler/{{version}}","search":"https://docs.rs/adler/[a-z0-9\\.-]+"}]}},"publish":null,"authors":["Jonas Schievink "],"categories":["algorithms"],"keywords":["checksum","integrity","hash","adler32","zlib"],"readme":"README.md","repository":"https://github.com/jonas-schievink/adler.git","homepage":null,"documentation":"https://docs.rs/adler/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"android_system_properties","version":"0.1.5","id":"android_system_properties 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Minimal Android system properties wrapper","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.126","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"android_system_properties","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/android_system_properties-0.1.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"time_zone","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/android_system_properties-0.1.5/examples/time_zone.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/android_system_properties-0.1.5/Cargo.toml","metadata":{"docs":{"rs":{"targets":["arm-linux-androideabi","armv7-linux-androideabi","aarch64-linux-android","i686-linux-android","x86_64-linux-android","x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Nicolas Silva "],"categories":[],"keywords":["android"],"readme":"README.md","repository":"https://github.com/nical/android_system_properties","homepage":"https://github.com/nical/android_system_properties","documentation":"https://docs.rs/android_system_properties","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"anyhow","version":"1.0.66","id":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Flexible concrete Error type built on std::error::Error","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"backtrace","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.51","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.6","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syn","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"thiserror","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.66","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["diff"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_convert","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_convert.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_autotrait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_autotrait.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_backtrace","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_backtrace.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_source","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_source.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_fmt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_fmt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_context","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_context.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_macros.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_downcast","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_downcast.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_boxed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_boxed.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ffi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_ffi.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_ensure","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_ensure.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_chain.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_repr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/tests/test_repr.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"backtrace":["dep:backtrace"],"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.66/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"],"rustdoc-args":["--cfg","doc_cfg"]}}},"publish":null,"authors":["David Tolnay "],"categories":["rust-patterns","no-std"],"keywords":["error","error-handling"],"readme":"README.md","repository":"https://github.com/dtolnay/anyhow","homepage":null,"documentation":"https://docs.rs/anyhow","edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"async-channel","version":"1.7.1","id":"async-channel 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"Async multi-producer multi-consumer channel","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"concurrent-queue","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"event-listener","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.4.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"easy-parallel","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-lite","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":"async-channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-channel-1.7.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bounded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-channel-1.7.1/tests/bounded.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unbounded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-channel-1.7.1/tests/unbounded.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-channel-1.7.1/Cargo.toml","metadata":null,"publish":null,"authors":["Stjepan Glavina "],"categories":["asynchronous","concurrency"],"keywords":["mpmc","mpsc","spmc","chan","futures"],"readme":"README.md","repository":"https://github.com/smol-rs/async-channel","homepage":"https://github.com/smol-rs/async-channel","documentation":"https://docs.rs/async-channel","edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"async-stream","version":"0.3.3","id":"async-stream 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Asynchronous streams using async & await notation","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"async-stream-impl","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},{"name":"futures-core","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-util","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":"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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"tokio-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"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":"async-stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-0.3.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"tcp_accept","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-0.3.3/examples/tcp_accept.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"for_await","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-0.3.3/tests/for_await.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"try_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-0.3.3/tests/try_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-0.3.3/tests/stream.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/async-stream","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.45"},{"name":"async-stream-impl","version":"0.3.3","id":"async-stream-impl 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"proc macros for async-stream 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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full","visit-mut"],"target":null,"registry":null},{"name":"futures-core","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":"futures-util","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async-stream-impl","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-impl-0.3.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-stream-impl-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/tokio-rs/async-stream","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.45"},{"name":"async-trait","version":"0.1.58","id":"async-trait 0.1.58 (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.96","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full","visit-mut"],"target":null,"registry":null},{"name":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["diff"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async-trait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.58/src/lib.rs","edition":"2018","doc":true,"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.58/tests/compiletest.rs","edition":"2018","doc":false,"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.58/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.58/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.58/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["asynchronous","no-std"],"keywords":["async"],"readme":"README.md","repository":"https://github.com/dtolnay/async-trait","homepage":null,"documentation":"https://docs.rs/async-trait","edition":"2018","links":null,"default_run":null,"rust_version":"1.39"},{"name":"autocfg","version":"1.1.0","id":"autocfg 1.1.0 (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.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"integers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"traits","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"paths","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"versions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"rustflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs","edition":"2015","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["Josh Stone "],"categories":["development-tools::build-utils"],"keywords":["rustc","build","autoconf"],"readme":"README.md","repository":"https://github.com/cuviper/autocfg","homepage":null,"documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"axum","version":"0.5.17","id":"axum 0.5.17 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Web framework that focuses on ergonomics and modularity","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.43","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"axum-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"axum-macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bitflags","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":"bytes","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":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["alloc"],"target":null,"registry":null},{"name":"headers","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":"http","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":"http-body","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14.14","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["server","tcp","stream"],"target":null,"registry":null},{"name":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"matchit","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":"memchr","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.4.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"multer","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"percent-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","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_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["raw_value"],"target":null,"registry":null},{"name":"serde_urlencoded","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"sha-1","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"sync_wrapper","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["time"],"target":null,"registry":null},{"name":"tokio-tungstenite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.17.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.13","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["util","make"],"target":null,"registry":null},{"name":"tower-http","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":["util","map-response-body"],"target":null,"registry":null},{"name":"tower-layer","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":"tower-service","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":"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":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck_macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"reqwest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11.11","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["json","stream","multipart"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["macros","rt","rt-multi-thread","net","test-util"],"target":null,"registry":null},{"name":"tokio-stream","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":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.10","kind":"dev","rename":"tower","optional":false,"uses_default_features":true,"features":["util","timeout","limit","load-shed","steer","filter"],"target":null,"registry":null},{"name":"tower-http","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":["full"],"target":null,"registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"uuid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["serde","v4"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"axum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/axum-0.5.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"__private_docs":["tower/full","tower-http/full"],"axum-macros":["dep:axum-macros"],"base64":["dep:base64"],"default":["form","http1","json","matched-path","original-uri","query","tower-log"],"form":["serde_urlencoded"],"headers":["dep:headers"],"http1":["hyper/http1"],"http2":["hyper/http2"],"json":["serde_json"],"macros":["axum-macros"],"matched-path":[],"multer":["dep:multer"],"multipart":["multer"],"original-uri":[],"query":["serde_urlencoded"],"serde_json":["dep:serde_json"],"serde_urlencoded":["dep:serde_urlencoded"],"sha-1":["dep:sha-1"],"tokio-tungstenite":["dep:tokio-tungstenite"],"tower-log":["tower/log"],"ws":["tokio-tungstenite","sha-1","base64"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/axum-0.5.17/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["http1","http2","json","multipart","ws"]}},"publish":null,"authors":[],"categories":["asynchronous","network-programming","web-programming::http-server"],"keywords":["http","web","framework"],"readme":"README.md","repository":"https://github.com/tokio-rs/axum","homepage":"https://github.com/tokio-rs/axum","documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"axum-core","version":"0.2.9","id":"axum-core 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Core types and traits for axum","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","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":"^1.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","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["alloc"],"target":null,"registry":null},{"name":"http","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http-body","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tower-layer","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":"tower-service","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":"axum","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-util","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":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["macros"],"target":null,"registry":null},{"name":"tower-http","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":["limit"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"axum-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/axum-core-0.2.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/axum-core-0.2.9/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["asynchronous","network-programming","web-programming"],"keywords":["http","web","framework"],"readme":"README.md","repository":"https://github.com/tokio-rs/axum","homepage":"https://github.com/tokio-rs/axum","documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"base64","version":"0.13.1","id":"base64 0.13.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":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.3.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"structopt","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"base64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/base64.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"make_tables","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/make_tables.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"encode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/encode.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"decode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/decode.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"helpers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/helpers.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/benches/benchmarks.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/Cargo.toml","metadata":null,"publish":null,"authors":["Alice Maz ","Marshall Pierce "],"categories":["encoding"],"keywords":["base64","utf8","encode","decode","no_std"],"readme":"README.md","repository":"https://github.com/marshallpierce/rust-base64","homepage":null,"documentation":"https://docs.rs/base64","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"bitflags","version":"1.3.2","id":"bitflags 1.3.2 (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":[{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"walkdir","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compile","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":[],"example_generated":[],"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml","metadata":{"docs":{"rs":{"features":["example_generated"]}}},"publish":null,"authors":["The Rust Project Developers"],"categories":["no-std"],"keywords":["bit","bitmask","bitflags","flags"],"readme":"README.md","repository":"https://github.com/bitflags/bitflags","homepage":"https://github.com/bitflags/bitflags","documentation":"https://docs.rs/bitflags","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"bumpalo","version":"3.11.1","id":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A fast bump allocation arena for Rust.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.6","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bumpalo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.11.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"try_alloc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.11.1/tests/try_alloc.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benches","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.11.1/benches/benches.rs","edition":"2021","required-features":["collections"],"doc":false,"doctest":false,"test":false}],"features":{"allocator_api":[],"boxed":[],"collections":[],"default":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.11.1/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Nick Fitzgerald "],"categories":["memory-management","rust-patterns","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/fitzgen/bumpalo","homepage":null,"documentation":"https://docs.rs/bumpalo","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"bytes","version":"1.2.1","id":"bytes 1.2.1 (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.5","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-1.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_serde.rs","edition":"2018","doc":false,"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-1.2.1/tests/test_bytes_vec_alloc.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_bytes.rs","edition":"2018","doc":false,"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-1.2.1/tests/test_bytes_odd_alloc.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_take","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_take.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_iter.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_buf_mut","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_buf_mut.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_reader.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_buf.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_debug.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/tests/test_chain.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/benches/buf.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bytes_mut","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/benches/bytes_mut.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/benches/bytes.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"serde":["dep:serde"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.2.1/Cargo.toml","metadata":{"docs":{"rs":{"rustdoc-args":["--cfg","docsrs"]}}},"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":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"cache-padded","version":"1.2.0","id":"cache-padded 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"Prevent false sharing by padding and aligning to the length of a cache line","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cache-padded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cache-padded-1.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"padding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cache-padded-1.2.0/tests/padding.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cache-padded-1.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Stjepan Glavina "],"categories":["concurrency","no-std"],"keywords":["cache","padding","lock-free","atomic"],"readme":"README.md","repository":"https://github.com/smol-rs/cache-padded","homepage":"https://github.com/smol-rs/cache-padded","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"cc","version":"1.0.73","id":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"jobserver","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.16","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tempfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bin"],"crate_types":["bin"],"name":"gcc-shim","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/src/bin/gcc-shim.rs","edition":"2018","doc":true,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/tests/cflags.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cxxflags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/tests/cxxflags.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cc_env","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/tests/cc_env.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"jobserver":["dep:jobserver"],"parallel":["jobserver"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":["development-tools::build-utils"],"keywords":["build-dependencies"],"readme":"README.md","repository":"https://github.com/alexcrichton/cc-rs","homepage":"https://github.com/alexcrichton/cc-rs","documentation":"https://docs.rs/cc","edition":"2018","links":null,"default_run":null,"rust_version":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","doc":true,"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","doc":false,"doctest":false,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"rustc-dep-of-std":["core","compiler_builtins"]},"manifest_path":"/home/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,"default_run":null,"rust_version":null},{"name":"chrono","version":"0.4.22","id":"chrono 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Date and time library for Rust","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"criterion","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":"iana-time-zone","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.44","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["fallback"],"target":null,"registry":null},{"name":"num-integer","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.36","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"num-traits","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"pure-rust-locales","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rkyv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":true,"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.20","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.99","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"time","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.43","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.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"doc-comment","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"num-iter","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.35","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))","registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))","registry":null},{"name":"winapi","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":["std","minwinbase","minwindef","timezoneapi"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"chrono","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.22/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.22/tests/wasm.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"chrono","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.22/benches/chrono.rs","edition":"2018","required-features":["__internal_bench"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.22/benches/serde.rs","edition":"2018","required-features":["__internal_bench","serde"],"doc":false,"doctest":false,"test":false}],"features":{"__doctest":[],"__internal_bench":["criterion"],"alloc":[],"clock":["std","winapi","iana-time-zone"],"criterion":["dep:criterion"],"default":["clock","std","oldtime","wasmbind"],"iana-time-zone":["dep:iana-time-zone"],"js-sys":["dep:js-sys"],"libc":[],"oldtime":["time"],"pure-rust-locales":["dep:pure-rust-locales"],"rkyv":["dep:rkyv"],"rustc-serialize":["dep:rustc-serialize"],"serde":["dep:serde"],"std":[],"time":["dep:time"],"unstable-locales":["pure-rust-locales","alloc"],"wasm-bindgen":["dep:wasm-bindgen"],"wasmbind":["wasm-bindgen","js-sys"],"winapi":["dep:winapi"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.22/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde"]}},"playground":{"features":["serde"]}},"publish":null,"authors":[],"categories":["date-and-time"],"keywords":["date","time","calendar"],"readme":"README.md","repository":"https://github.com/chronotope/chrono","homepage":"https://github.com/chronotope/chrono","documentation":"https://docs.rs/chrono/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"codespan-reporting","version":"0.11.1","id":"codespan-reporting 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"Beautiful diagnostic reporting for text-based programming languages","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":"termcolor","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":"unicode-width","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"anyhow","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"insta","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"peg","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":"rustyline","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^6","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"structopt","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"unindent","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":"codespan-reporting","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"peg_calculator","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/examples/peg_calculator.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"custom_files","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/examples/custom_files.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"term","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/examples/term.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"reusable_diagnostic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/examples/reusable_diagnostic.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"readme_preview","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/examples/readme_preview.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"term","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/tests/term.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"ascii-only":[],"serde":["dep:serde"],"serialization":["serde","serde/rc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/codespan-reporting-0.11.1/Cargo.toml","metadata":null,"publish":null,"authors":["Brendan Zabarauskas "],"categories":[],"keywords":[],"readme":"../README.md","repository":"https://github.com/brendanzab/codespan","homepage":"https://github.com/brendanzab/codespan","documentation":"https://docs.rs/codespan-reporting","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"concurrent-queue","version":"1.2.4","id":"concurrent-queue 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"Concurrent multi-producer multi-consumer queue","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cache-padded","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"easy-parallel","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":"fastrand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"concurrent-queue","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/concurrent-queue-1.2.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bounded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/concurrent-queue-1.2.4/tests/bounded.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"single","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/concurrent-queue-1.2.4/tests/single.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unbounded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/concurrent-queue-1.2.4/tests/unbounded.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/concurrent-queue-1.2.4/Cargo.toml","metadata":null,"publish":null,"authors":["Stjepan Glavina "],"categories":["concurrency"],"keywords":["channel","mpmc","spsc","spmc","mpsc"],"readme":"README.md","repository":"https://github.com/smol-rs/concurrent-queue","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"core-foundation-sys","version":"0.8.3","id":"core-foundation-sys 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"Bindings to Core Foundation for macOS","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"core-foundation-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.3/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"mac_os_10_7_support":[],"mac_os_10_8_features":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.3/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-apple-darwin"}}},"publish":null,"authors":["The Servo Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/servo/core-foundation-rs","homepage":"https://github.com/servo/core-foundation-rs","documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"crc32fast","version":"1.3.2","id":"crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Fast, SIMD-accelerated CRC32 (IEEE) checksum computation","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bencher","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/benches/bench.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"nightly":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/Cargo.toml","metadata":null,"publish":null,"authors":["Sam Rijs ","Alex Crichton "],"categories":[],"keywords":["checksum","crc","crc32","simd","fast"],"readme":"README.md","repository":"https://github.com/srijs/rust-crc32fast","homepage":null,"documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"cxx","version":"1.0.80","id":"cxx 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Safe interop between Rust and C++","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cxxbridge-macro","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=1.0.80","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"link-cplusplus","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":"cxx-build","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=1.0.80","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cxx-gen","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":"cxx-test-suite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.66","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["diff"],"target":null,"registry":null},{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cxxbridge-flags","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=1.0.80","kind":"build","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cxx","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cxx_string","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/tests/cxx_string.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cxx_gen","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/tests/cxx_gen.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unique_ptr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/tests/unique_ptr.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"c++14":["cxxbridge-flags/c++14"],"c++17":["cxxbridge-flags/c++17"],"c++20":["cxxbridge-flags/c++20"],"default":["std","cxxbridge-flags/default"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-1.0.80/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"],"rustdoc-args":["--cfg","doc_cfg"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::ffi","api-bindings","no-std"],"keywords":["ffi","c++"],"readme":"README.md","repository":"https://github.com/dtolnay/cxx","homepage":"https://cxx.rs","documentation":"https://docs.rs/cxx","edition":"2018","links":"cxxbridge1","default_run":null,"rust_version":"1.48"},{"name":"cxx-build","version":"1.0.80","id":"cxx-build 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"C++ code generator for integrating `cxx` crate into a Cargo build.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"codespan-reporting","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.9","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.39","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["span-locations"],"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":false,"features":[],"target":null,"registry":null},{"name":"scratch","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.95","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["parsing","printing","clone-impls","full"],"target":null,"registry":null},{"name":"cxx-gen","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":"pkg-config","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":"cxx-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-build-1.0.80/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"experimental-async-fn":[],"parallel":["cc/parallel"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxx-build-1.0.80/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::build-utils","development-tools::ffi"],"keywords":["ffi","build-dependencies"],"readme":null,"repository":"https://github.com/dtolnay/cxx","homepage":"https://cxx.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.48"},{"name":"cxxbridge-flags","version":"1.0.80","id":"cxxbridge-flags 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Compiler configuration of the `cxx` crate (implementation detail)","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cxxbridge-flags","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxxbridge-flags-1.0.80/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"c++14":[],"c++17":[],"c++20":[],"default":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxxbridge-flags-1.0.80/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::ffi","compilers"],"keywords":[],"readme":null,"repository":"https://github.com/dtolnay/cxx","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.48"},{"name":"cxxbridge-macro","version":"1.0.80","id":"cxxbridge-macro 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Implementation detail of the `cxx` crate.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"clang-ast","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":"flate2","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":"memmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.39","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.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.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syn","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.95","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"cxx","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":"cxxbridge-macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxxbridge-macro-1.0.80/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"clang-ast":["dep:clang-ast"],"experimental-async-fn":[],"experimental-enum-variants-from-header":["clang-ast","flate2","memmap","serde","serde_json"],"flate2":["dep:flate2"],"memmap":["dep:memmap"],"serde":["dep:serde"],"serde_json":["dep:serde_json"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cxxbridge-macro-1.0.80/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::ffi"],"keywords":["ffi"],"readme":"README.md","repository":"https://github.com/dtolnay/cxx","homepage":"https://cxx.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.48"},{"name":"direct","version":"0.1.0","id":"direct 0.1.0 (path+file:///home/jake/code/krates/tests/direct)","license":null,"license_file":null,"description":null,"source":null,"dependencies":[{"name":"google-cloud-gax","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["rustls-tls"],"target":null,"registry":null},{"name":"google-cloud-googleapis","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":"google-cloud-pubsub","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["rustls-tls"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"direct","src_path":"/home/jake/code/krates/tests/direct/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/code/krates/tests/direct/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":[],"keywords":[],"readme":null,"repository":null,"homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"either","version":"1.8.0","id":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":["use_std"],"serde":["dep:serde"],"use_std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/Cargo.toml","metadata":{"release":{"no-dev-version":true,"tag-name":"{{version}}"},"docs":{"rs":{"features":["serde"]}}},"publish":null,"authors":["bluss"],"categories":["data-structures","no-std"],"keywords":["data-structure","no_std"],"readme":"README-crates.io.md","repository":"https://github.com/bluss/either","homepage":null,"documentation":"https://docs.rs/either/1/","edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"encoding_rs","version":"0.8.31","id":"encoding_rs 0.8.31 (registry+https://github.com/rust-lang/crates.io-index)","license":"(Apache-2.0 OR MIT) AND BSD-3-Clause","license_file":null,"description":"A Gecko-oriented implementation of the Encoding Standard","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":"packed_simd_2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.4","kind":null,"rename":"packed_simd","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":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"encoding_rs","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.31/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"default":["alloc"],"fast-big5-hanzi-encode":[],"fast-gb-hanzi-encode":[],"fast-hangul-encode":[],"fast-hanja-encode":[],"fast-kanji-encode":[],"fast-legacy-encode":["fast-hangul-encode","fast-hanja-encode","fast-kanji-encode","fast-gb-hanzi-encode","fast-big5-hanzi-encode"],"less-slow-big5-hanzi-encode":[],"less-slow-gb-hanzi-encode":[],"less-slow-kanji-encode":[],"packed_simd":["dep:packed_simd"],"serde":["dep:serde"],"simd-accel":["packed_simd","packed_simd/into_bits"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.31/Cargo.toml","metadata":null,"publish":null,"authors":["Henri Sivonen "],"categories":["text-processing","encoding","web-programming","internationalization"],"keywords":["encoding","web","unicode","charset"],"readme":"README.md","repository":"https://github.com/hsivonen/encoding_rs","homepage":"https://docs.rs/encoding_rs/","documentation":"https://docs.rs/encoding_rs/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"event-listener","version":"2.5.3","id":"event-listener 2.5.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"Notify async tasks or threads","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"waker-fn","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":"event-listener","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/event-listener-2.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"mutex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/event-listener-2.5.3/examples/mutex.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"notify","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/event-listener-2.5.3/tests/notify.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/event-listener-2.5.3/Cargo.toml","metadata":null,"publish":null,"authors":["Stjepan Glavina "],"categories":["asynchronous","concurrency"],"keywords":["condvar","eventcount","wake","blocking","park"],"readme":"README.md","repository":"https://github.com/smol-rs/event-listener","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"fastrand","version":"1.8.0","id":"fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A simple and fast random number generator","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"getrandom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wyhash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"instant","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":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"getrandom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["js"],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"instant","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["wasm-bindgen"],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"smoke","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/smoke.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"char","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/char.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/Cargo.toml","metadata":null,"publish":null,"authors":["Stjepan Glavina "],"categories":["algorithms"],"keywords":["simple","fast","rand","random","wyrand"],"readme":"README.md","repository":"https://github.com/smol-rs/fastrand","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.34"},{"name":"fixedbitset","version":"0.4.2","id":"fixedbitset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"FixedBitSet is a simple bitset collection","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fixedbitset","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.4.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benches","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.4.2/benches/benches.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"serde":["dep:serde"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.4.2/Cargo.toml","metadata":{"release":{"no-dev-version":true,"tag-name":"{{version}}"}},"publish":null,"authors":["bluss"],"categories":["data-structures"],"keywords":["container","data-structure","bitvec","bitset","no_std"],"readme":"README.md","repository":"https://github.com/petgraph/fixedbitset","homepage":null,"documentation":"https://docs.rs/fixedbitset/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"flate2","version":"1.0.24","id":"flate2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cloudflare-zlib-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"crc32fast","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libz-ng-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.8","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libz-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.8","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"miniz_oxide","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"miniz_oxide","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"gzmultidecoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzmultidecoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"deflatedecoder-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/deflatedecoder-write.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzbuilder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzbuilder.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"zlibencoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/zlibencoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzencoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzencoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"deflatedecoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/deflatedecoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzdecoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzdecoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"zlibdecoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/zlibdecoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzdecoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzdecoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"deflatedecoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/deflatedecoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"zlibdecoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/zlibdecoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"zlibdecoder-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/zlibdecoder-write.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"zlibencoder-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/zlibencoder-write.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzdecoder-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzdecoder-write.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"deflateencoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/deflateencoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"compress_file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/compress_file.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzencoder-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzencoder-write.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"deflateencoder-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/deflateencoder-write.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzencoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzencoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"deflateencoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/deflateencoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gzmultidecoder-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/gzmultidecoder-read.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"zlibencoder-bufread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/examples/zlibencoder-bufread.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"gunzip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/tests/gunzip.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"empty-read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/tests/empty-read.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"early-flush","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/tests/early-flush.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zero-write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/tests/zero-write.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"any_zlib":[],"cloudflare-zlib-sys":["dep:cloudflare-zlib-sys"],"cloudflare_zlib":["any_zlib","cloudflare-zlib-sys"],"default":["rust_backend"],"libz-ng-sys":["dep:libz-ng-sys"],"libz-sys":["dep:libz-sys"],"miniz-sys":["rust_backend"],"miniz_oxide":["dep:miniz_oxide"],"rust_backend":["miniz_oxide"],"zlib":["any_zlib","libz-sys"],"zlib-ng":["any_zlib","libz-ng-sys"],"zlib-ng-compat":["zlib","libz-sys/zlib-ng"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.24/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton ","Josh Triplett "],"categories":["compression","api-bindings"],"keywords":["gzip","deflate","zlib","zlib-ng","encoding"],"readme":"README.md","repository":"https://github.com/rust-lang/flate2-rs","homepage":"https://github.com/rust-lang/flate2-rs","documentation":"https://docs.rs/flate2","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"fnv","version":"1.0.7","id":"fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 / MIT","license_file":null,"description":"Fowler–Noll–Vo hash function","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/servo/rust-fnv","homepage":null,"documentation":"https://doc.servo.org/fnv/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"form_urlencoded","version":"1.1.0","id":"form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"percent-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.2.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.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.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":"2018","links":null,"default_run":null,"rust_version":"1.51"},{"name":"futures-channel","version":"0.3.25","id":"futures-channel 0.3.25 (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.25","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.25","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.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.25/tests/channel.rs","edition":"2018","doc":false,"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.25/tests/oneshot.rs","edition":"2018","doc":false,"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.25/tests/mpsc.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mpsc-close","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.25/tests/mpsc-close.rs","edition":"2018","doc":false,"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.25/benches/sync_mpsc.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.25/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":["futures-core/alloc"],"cfg-target-has-atomic":[],"default":["std"],"futures-sink":["dep:futures-sink"],"sink":["futures-sink"],"std":["alloc","futures-core/std"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.25/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":[],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.45"},{"name":"futures-core","version":"0.3.25","id":"futures-core 0.3.25 (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.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.25/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"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.25/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":[],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"futures-sink","version":"0.3.25","id":"futures-sink 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"The asynchronous `Sink` trait 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-sink","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.25/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":[],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"futures-task","version":"0.3.25","id":"futures-task 0.3.25 (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":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"futures-task","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.25/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"cfg-target-has-atomic":[],"default":["std"],"std":["alloc"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.25/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":[],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.45"},{"name":"futures-util","version":"0.3.25","id":"futures-util 0.3.25 (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.25","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.25","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.25","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.25","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.25","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.25","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-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"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},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.11","kind":"dev","rename":null,"optional":false,"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.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"flatten_unordered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.25/benches/flatten_unordered.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"futures_unordered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.25/benches/futures_unordered.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"select","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.25/benches/select.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.25/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":["futures-core/alloc","futures-task/alloc"],"async-await":[],"async-await-macro":["async-await","futures-macro"],"bilock":[],"cfg-target-has-atomic":[],"channel":["std","futures-channel"],"compat":["std","futures_01"],"default":["std","async-await","async-await-macro"],"futures-channel":["dep:futures-channel"],"futures-io":["dep:futures-io"],"futures-macro":["dep:futures-macro"],"futures-sink":["dep:futures-sink"],"futures_01":["dep:futures_01"],"io":["std","futures-io","memchr"],"io-compat":["io","compat","tokio-io"],"memchr":["dep:memchr"],"sink":["futures-sink"],"slab":["dep:slab"],"std":["alloc","futures-core/std","futures-task/std","slab"],"tokio-io":["dep:tokio-io"],"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.25/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":[],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/futures-rs","homepage":"https://rust-lang.github.io/futures-rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.45"},{"name":"getrandom","version":"0.2.8","id":"getrandom 0.2.8 (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":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))","registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.62","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":"cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.18","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))","registry":null},{"name":"wasi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"wasi\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.120","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"custom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/tests/custom.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"normal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/tests/normal.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rdrand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/tests/rdrand.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/benches/mod.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"custom":[],"js":["wasm-bindgen","js-sys"],"js-sys":["dep:js-sys"],"rdrand":[],"rustc-dep-of-std":["compiler_builtins","core","libc/rustc-dep-of-std","wasi/rustc-dep-of-std"],"std":[],"test-in-browser":[],"wasm-bindgen":["dep:wasm-bindgen"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/Cargo.toml","metadata":{"docs":{"rs":{"features":["std","custom"],"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["The Rand Project Developers"],"categories":["os","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-random/getrandom","homepage":null,"documentation":"https://docs.rs/getrandom","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"google-cloud-auth","version":"0.5.0","id":"google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Google Cloud Platform server application authentication library.","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","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.13","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"chrono","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"google-cloud-metadata","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"home","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":"json","optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"jsonwebtoken","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^8","kind":null,"rename":"jwt","optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"reqwest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["json"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"thiserror","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["fs"],"target":null,"registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"urlencoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ctor","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":"serial_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["test-util","rt-multi-thread","macros"],"target":null,"registry":null},{"name":"tracing-subscriber","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["env-filter","std"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"google-cloud-auth","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-auth-0.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"default":["default-tls"],"default-tls":["reqwest/default-tls","google-cloud-metadata/default-tls"],"rustls-tls":["reqwest/rustls-tls","google-cloud-metadata/rustls-tls"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-auth-0.5.0/Cargo.toml","metadata":null,"publish":null,"authors":["yoshidan "],"categories":[],"keywords":["gcp","auth","googleapis","google-cloud-rust"],"readme":"README.md","repository":"https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"google-cloud-gax","version":"0.9.0","id":"google-cloud-gax 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Google Cloud Platform gRPC retry library.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"google-cloud-auth","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"http","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":"thiserror","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["macros"],"target":null,"registry":null},{"name":"tokio-retry","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":"tokio-util","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":"tonic","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["prost","tls-webpki-roots"],"target":null,"registry":null},{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["filter"],"target":null,"registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"google-cloud-gax","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-gax-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":["default-tls"],"default-tls":["google-cloud-auth/default-tls"],"rustls-tls":["google-cloud-auth/rustls-tls"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-gax-0.9.0/Cargo.toml","metadata":null,"publish":null,"authors":["yoshidan "],"categories":[],"keywords":["gcp","googleapis","google-cloud-rust"],"readme":"README.md","repository":"https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"google-cloud-googleapis","version":"0.6.0","id":"google-cloud-googleapis 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Google Cloud Platform rust client.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"prost","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":"prost-types","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":"tonic","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["tls","prost","gzip"],"target":null,"registry":null},{"name":"tonic-build","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"google-cloud-googleapis","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-googleapis-0.6.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-googleapis-0.6.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"pubsub":[],"spanner":[],"storage":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-googleapis-0.6.0/Cargo.toml","metadata":null,"publish":null,"authors":["yoshidan "],"categories":[],"keywords":["gcp","googleapis","google-cloud-rust"],"readme":"README.md","repository":"https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"google-cloud-metadata","version":"0.3.1","id":"google-cloud-metadata 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Google Cloud Platform rust client.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"reqwest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"thiserror","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["sync","net","parking_lot"],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["test-util","rt-multi-thread","macros"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"google-cloud-metadata","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-metadata-0.3.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-metadata-0.3.1/tests/test.rs","edition":"2021","doc":false,"doctest":false,"test":true}],"features":{"default":["default-tls"],"default-tls":["reqwest/default-tls"],"rustls-tls":["reqwest/rustls-tls"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-metadata-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["yoshidan "],"categories":[],"keywords":["gcp","googleapis","google-cloud-rust"],"readme":"README.md","repository":"https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"google-cloud-pubsub","version":"0.8.0","id":"google-cloud-pubsub 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Google Cloud Platform pubsub client library.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"async-channel","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-stream","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":"google-cloud-auth","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"google-cloud-gax","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"google-cloud-googleapis","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":["pubsub"],"target":null,"registry":null},{"name":"prost","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"prost-types","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":"thiserror","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"anyhow","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.48","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ctor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.21","kind":"dev","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serial_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.20","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["rt-multi-thread"],"target":null,"registry":null},{"name":"tracing-subscriber","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":"uuid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["v4"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"google-cloud-pubsub","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-pubsub-0.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"default":["default-tls"],"default-tls":["google-cloud-auth/default-tls","google-cloud-gax/default-tls"],"rustls-tls":["google-cloud-auth/rustls-tls","google-cloud-gax/rustls-tls"],"trace":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/google-cloud-pubsub-0.8.0/Cargo.toml","metadata":null,"publish":null,"authors":["yoshidan "],"categories":[],"keywords":["gcp","pubsub","googleapis","google-cloud-rust"],"readme":"README.md","repository":"https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub","homepage":null,"documentation":"https://docs.rs/google-cloud-pubsub/latest/google_cloud_pubsub/","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"h2","version":"0.3.15","id":"h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"An HTTP/2 client and server","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-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":"futures-sink","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":"futures-util","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":"http","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":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["std"],"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":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["io-util"],"target":null,"registry":null},{"name":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["codec"],"target":null,"registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.21","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"env_logger","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"hex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["rt-multi-thread","macros","sync","net"],"target":null,"registry":null},{"name":"tokio-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.23.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"walkdir","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.3.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"webpki-roots","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"h2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.15/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.15/examples/client.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.15/examples/server.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"akamai","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.15/examples/akamai.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"stream":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.15/Cargo.toml","metadata":{"docs":{"rs":{"features":["stream"]}}},"publish":null,"authors":["Carl Lerche ","Sean McArthur "],"categories":["asynchronous","web-programming","network-programming"],"keywords":["http","async","non-blocking"],"readme":"README.md","repository":"https://github.com/hyperium/h2","homepage":null,"documentation":"https://docs.rs/h2","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"hashbrown","version":"0.12.3","id":"hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A Rust port of Google's SwissTable hash map","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"ahash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bumpalo","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.5.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.25","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"doc-comment","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["small_rng"],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"hasher","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rayon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"insert_unique_unchecked","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs","edition":"2021","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"ahash":["dep:ahash"],"ahash-compile-time-rng":["ahash/compile-time-rng"],"alloc":["dep:alloc"],"bumpalo":["dep:bumpalo"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["ahash","inline-more"],"inline-more":[],"nightly":[],"raw":[],"rayon":["dep:rayon"],"rustc-dep-of-std":["nightly","core","compiler_builtins","alloc","rustc-internal-api"],"rustc-internal-api":[],"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml","metadata":{"docs":{"rs":{"features":["nightly","rayon","serde","raw"]}}},"publish":null,"authors":["Amanieu d'Antras "],"categories":["data-structures","no-std"],"keywords":["hash","no_std","hashmap","swisstable"],"readme":"README.md","repository":"https://github.com/rust-lang/hashbrown","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":"1.56.0"},{"name":"heck","version":"0.4.0","id":"heck 0.4.0 (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":true,"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.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":[],"unicode":["unicode-segmentation"],"unicode-segmentation":["dep:unicode-segmentation"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.4.0/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":"2018","links":null,"default_run":null,"rust_version":null},{"name":"home","version":"0.5.4","id":"home 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Shared definitions of home directories","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":["shlobj","std","winerror"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"home","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.4/Cargo.toml","metadata":null,"publish":null,"authors":["Brian Anderson "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/brson/home","homepage":null,"documentation":"https://docs.rs/home","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"http","version":"0.2.8","id":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A set of types for representing HTTP requests and responses.\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":"^1","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.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"seahash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","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":"http","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"header_map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/tests/header_map.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"status_code","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/tests/status_code.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"header_map_fuzz","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/tests/header_map_fuzz.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"header_map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/benches/header_map/mod.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"header_name","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/benches/header_name.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"header_name2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/benches/header_name2.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"header_value","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/benches/header_value.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"method","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/benches/method.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"uri","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/benches/uri.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.8/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton ","Carl Lerche ","Sean McArthur "],"categories":["web-programming"],"keywords":["http"],"readme":"README.md","repository":"https://github.com/hyperium/http","homepage":null,"documentation":"https://docs.rs/http","edition":"2018","links":null,"default_run":null,"rust_version":"1.49.0"},{"name":"http-body","version":"0.4.5","id":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Trait representing an asynchronous, streaming, HTTP request or response body.\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":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["macros","rt"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"http-body","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.4.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"is_end_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.4.5/tests/is_end_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.4.5/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche ","Lucio Franco ","Sean McArthur "],"categories":["web-programming"],"keywords":["http"],"readme":"README.md","repository":"https://github.com/hyperium/http-body","homepage":null,"documentation":"https://docs.rs/http-body","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"http-range-header","version":"0.3.0","id":"http-range-header 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"No-dep range header parser","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck_macros","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.5.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"http-range-header","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-range-header-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-range-header-0.3.0/benches/benchmark.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"with_error_cause":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/http-range-header-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["parser-implementations","network-programming","web-programming"],"keywords":["http","parser","http-headers","headers","range"],"readme":"./README.md","repository":"https://github.com/MarcusGrass/parse-range-headers","homepage":"https://github.com/MarcusGrass/parse-range-headers","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"httparse","version":"1.8.0","id":"httparse 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A tiny, safe, speedy, zero-copy HTTP/1.x parser.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"httparse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uri","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.8.0/tests/uri.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.8.0/benches/parse.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.8.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.8.0/Cargo.toml","metadata":null,"publish":null,"authors":["Sean McArthur "],"categories":["network-programming","no-std","parser-implementations","web-programming"],"keywords":["http","parser","no_std"],"readme":"README.md","repository":"https://github.com/seanmonstar/httparse","homepage":null,"documentation":"https://docs.rs/httparse","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"httpdate","version":"1.0.2","id":"httpdate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"HTTP date parsing and formatting","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"httpdate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-1.0.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-1.0.2/benches/benchmarks.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-1.0.2/Cargo.toml","metadata":null,"publish":null,"authors":["Pyfisch "],"categories":[],"keywords":["http","date","time","simple","timestamp"],"readme":"README.md","repository":"https://github.com/pyfisch/httpdate","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"hyper","version":"0.14.20","id":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A fast and correct HTTP library.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-channel","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-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":"futures-util","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":"h2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.9","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http-body","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":"httparse","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"httpdate","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":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","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":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"socket2","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["sync"],"target":null,"registry":null},{"name":"tower-service","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"want","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-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["alloc"],"target":null,"registry":null},{"name":"matches","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"num_cpus","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":"pretty_env_logger","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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"spmc","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["fs","macros","io-std","io-util","rt","rt-multi-thread","sync","time","test-util"],"target":null,"registry":null},{"name":"tokio-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["codec"],"target":null,"registry":null},{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["make","util"],"target":null,"registry":null},{"name":"url","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pnet_datalink","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.27.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"macos\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/client.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"client_json","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/client_json.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"echo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/echo.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"gateway","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/gateway.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"hello","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/hello.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"http_proxy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/http_proxy.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"multi_server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/multi_server.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"params","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/params.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"send_file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/send_file.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"service_struct_impl","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/service_struct_impl.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"single_threaded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/single_threaded.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"state","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/state.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tower_client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/tower_client.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tower_server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/tower_server.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"upgrades","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/upgrades.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"web_api","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/examples/web_api.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/tests/client.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"integration","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/tests/integration.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/tests/server.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"body","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/benches/body.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"connect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/benches/connect.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"end_to_end","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/benches/end_to_end.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"pipeline","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/benches/pipeline.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/benches/server.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false}],"features":{"__internal_happy_eyeballs_tests":[],"client":[],"default":[],"ffi":["libc"],"full":["client","http1","http2","server","stream","runtime"],"h2":["dep:h2"],"http1":[],"http2":["h2"],"libc":["dep:libc"],"nightly":[],"runtime":["tcp","tokio/rt","tokio/time"],"server":[],"socket2":["dep:socket2"],"stream":[],"tcp":["socket2","tokio/net","tokio/rt","tokio/time"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/Cargo.toml","metadata":{"docs":{"rs":{"features":["ffi","full"],"rustdoc-args":["--cfg","docsrs","--cfg","hyper_unstable_ffi"]}},"playground":{"features":["full"]}},"publish":null,"authors":["Sean McArthur "],"categories":["network-programming","web-programming::http-client","web-programming::http-server"],"keywords":["http","hyper","hyperium"],"readme":"README.md","repository":"https://github.com/hyperium/hyper","homepage":"https://hyper.rs","documentation":"https://docs.rs/hyper","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"hyper-rustls","version":"0.23.0","id":"hyper-rustls 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/ISC/MIT","license_file":null,"description":"Rustls+hyper integration for pure rust HTTPS","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"http","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":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["client"],"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":"rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rustls-native-certs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","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":"tokio-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.23","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"webpki-roots","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-stream","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":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.1","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20.1","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["tls12"],"target":null,"registry":null},{"name":"rustls-pemfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["io-std","macros","net","rt-multi-thread"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hyper-rustls","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.23.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.23.0/examples/client.rs","edition":"2018","required-features":["native-tokio","http1"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.23.0/examples/server.rs","edition":"2018","required-features":["tokio-runtime"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.23.0/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"default":["native-tokio","http1","tls12","logging"],"http1":["hyper/http1"],"http2":["hyper/http2"],"log":["dep:log"],"logging":["log","tokio-rustls/logging","rustls/logging"],"native-tokio":["tokio-runtime","rustls-native-certs"],"rustls-native-certs":["dep:rustls-native-certs"],"tls12":["tokio-rustls/tls12","rustls/tls12"],"tokio-runtime":["hyper/runtime"],"webpki-roots":["dep:webpki-roots"],"webpki-tokio":["tokio-runtime","webpki-roots"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.23.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Joseph Birr-Pixton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/ctz/hyper-rustls","homepage":"https://github.com/ctz/hyper-rustls","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"hyper-timeout","version":"0.4.1","id":"hyper-timeout 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A connect, read and write timeout aware connector to be used with hyper Client.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["client"],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-io-timeout","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["client","http1","tcp"],"target":null,"registry":null},{"name":"hyper-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","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":["io-std","io-util","macros"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hyper-timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-timeout-0.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-timeout-0.4.1/examples/client.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-timeout-0.4.1/Cargo.toml","metadata":null,"publish":null,"authors":["Herman J. Radtke III "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/hjr3/hyper-timeout","homepage":"https://github.com/hjr3/hyper-timeout","documentation":"https://github.com/hjr3/hyper-timeout","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"iana-time-zone","version":"0.1.51","id":"iana-time-zone 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"get the IANA time zone for the current system","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"core-foundation-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))","registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.50","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.70","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"android_system_properties","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"android\")","registry":null},{"name":"iana-time-zone-haiku","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"haiku\")","registry":null},{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["activation","combaseapi","objbase","roapi","winerror","winstring"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"iana-time-zone","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-0.1.51/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"stress-test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-0.1.51/examples/stress-test.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"get_timezone","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-0.1.51/examples/get_timezone.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"fallback":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-0.1.51/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Straw "],"categories":["date-and-time","internationalization","os"],"keywords":["IANA","time"],"readme":"README.md","repository":"https://github.com/strawlab/iana-time-zone","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"iana-time-zone-haiku","version":"0.1.1","id":"iana-time-zone-haiku 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"iana-time-zone support crate for Haiku OS","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cxx","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.34","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cxx-build","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.34","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"iana-time-zone-haiku","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-haiku-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-haiku-0.1.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/iana-time-zone-haiku-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["René Kijewski "],"categories":["date-and-time","internationalization","os"],"keywords":["IANA","time"],"readme":"README.md","repository":"https://github.com/strawlab/iana-time-zone","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"idna","version":"0.3.0","id":"idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"IDNA (Internationalizing Domain Names in Applications) and Punycode.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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.17","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"assert_matches","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bencher","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tester","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/unit.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"all","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/benches/all.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.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":"2018","links":null,"default_run":null,"rust_version":"1.51"},{"name":"indexmap","version":"1.9.1","id":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A hash table with consistent order and fast iteration.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["raw"],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.4.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.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":false,"features":[],"target":null,"registry":null},{"name":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fxhash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["small_rng"],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"equivalent_trait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/equivalent_trait.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_full_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/macros_full_path.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/tests.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"quick","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/quick.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"faststring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/faststring.rs","edition":"2021","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/bench.rs","edition":"2021","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"rayon":["dep:rayon"],"rustc-rayon":["dep:rustc-rayon"],"serde":["dep:serde"],"serde-1":["serde"],"std":[],"test_debug":[],"test_low_transition_point":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/Cargo.toml","metadata":{"release":{"no-dev-version":true,"tag-name":"{{version}}"},"docs":{"rs":{"features":["serde-1","rayon"]}}},"publish":null,"authors":[],"categories":["data-structures","no-std"],"keywords":["hashmap","no_std"],"readme":"README.md","repository":"https://github.com/bluss/indexmap","homepage":null,"documentation":"https://docs.rs/indexmap/","edition":"2021","links":null,"default_run":null,"rust_version":"1.56"},{"name":"instant","version":"0.1.12","id":"instant 0.1.12 (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":"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.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"inaccurate":[],"js-sys":["dep:js-sys"],"now":[],"stdweb":["dep:stdweb"],"wasm-bindgen":["js-sys","wasm-bindgen_rs","web-sys"],"wasm-bindgen_rs":["dep:wasm-bindgen_rs"],"web-sys":["dep:web-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml","metadata":null,"publish":null,"authors":["sebcrozet "],"categories":[],"keywords":["time","wasm"],"readme":"README.md","repository":"https://github.com/sebcrozet/instant","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"ipnet","version":"2.5.0","id":"ipnet 2.5.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":"schemars","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":"serde","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.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":[],"json":["serde","schemars"],"schemars":["dep:schemars"],"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.5.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":"2018","links":null,"default_run":null,"rust_version":null},{"name":"itertools","version":"0.10.5","id":"itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Extra iterator adaptors, iterator methods, free functions, and macros.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"either","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"paste","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"permutohedron","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"itertools","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"iris","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/examples/iris.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"macros_hygiene","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/macros_hygiene.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tuples","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/tuples.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_core.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/zip.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"flatten_ok","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/flatten_ok.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"adaptors_no_collect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/adaptors_no_collect.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"specializations","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/specializations.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_std.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"merge_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/merge_join.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"quick","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/quick.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"peeking_take_while","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/peeking_take_while.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"tuple_combinations","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuple_combinations.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"tuples","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuples.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"fold_specialization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/fold_specialization.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"combinations_with_replacement","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations_with_replacement.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"tree_fold1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tree_fold1.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bench1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/bench1.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"combinations","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"powerset","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/powerset.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["use_std"],"use_alloc":[],"use_std":["use_alloc","either/use_std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/Cargo.toml","metadata":{"release":{"no-dev-version":true}},"publish":null,"authors":["bluss"],"categories":["algorithms","rust-patterns"],"keywords":["iterator","data-structure","zip","product","group-by"],"readme":"README.md","repository":"https://github.com/rust-itertools/itertools","homepage":null,"documentation":"https://docs.rs/itertools/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"itoa","version":"1.0.4","id":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Fast integer primitive to string conversion","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"no-panic","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.4/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.4/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"no-panic":["dep:no-panic"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.4/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["value-formatting","no-std"],"keywords":["integer"],"readme":"README.md","repository":"https://github.com/dtolnay/itoa","homepage":null,"documentation":"https://docs.rs/itoa","edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"js-sys","version":"0.3.60","id":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.3.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"web-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.60","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["Headers","Response","ResponseInit"],"target":"cfg(target_arch = \"wasm32\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"js-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.60/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"headless","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.60/tests/headless.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.60/tests/wasm/main.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.60/Cargo.toml","metadata":null,"publish":null,"authors":["The wasm-bindgen Developers"],"categories":["wasm"],"keywords":[],"readme":"./README.md","repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys","homepage":"https://rustwasm.github.io/wasm-bindgen/","documentation":"https://docs.rs/js-sys","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"jsonwebtoken","version":"8.1.1","id":"jsonwebtoken 8.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Create and decode JWTs in a strongly typed way.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pem","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":"ring","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.16.5","kind":null,"rename":null,"optional":false,"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":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"simple_asn1","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"time","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":"jsonwebtoken","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonwebtoken-8.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonwebtoken-8.1.1/tests/lib.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"hmac","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonwebtoken-8.1.1/tests/hmac.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"jwt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonwebtoken-8.1.1/benches/jwt.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"default":["use_pem"],"pem":["dep:pem"],"simple_asn1":["dep:simple_asn1"],"use_pem":["pem","simple_asn1"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonwebtoken-8.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Vincent Prouillet "],"categories":[],"keywords":["jwt","api","token","jwk"],"readme":"README.md","repository":"https://github.com/Keats/jsonwebtoken","homepage":"https://github.com/Keats/jsonwebtoken","documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":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","doc":true,"doctest":true,"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","doc":false,"doctest":false,"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","doc":false,"doctest":false,"test":true}],"features":{"spin":["dep:spin"],"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,"default_run":null,"rust_version":null},{"name":"libc","version":"0.2.136","id":"libc 0.2.136 (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.136/src/lib.rs","edition":"2015","doc":true,"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.136/tests/const_fn.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.136/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"align":[],"const-extern-fn":[],"default":["std"],"extra_traits":[],"rustc-dep-of-std":["align","rustc-std-workspace-core"],"rustc-std-workspace-core":["dep:rustc-std-workspace-core"],"std":[],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.136/Cargo.toml","metadata":{"docs":{"rs":{"features":["const-extern-fn","extra_traits"]}}},"publish":null,"authors":["The Rust Project Developers"],"categories":["external-ffi-bindings","no-std","os"],"keywords":["libc","ffi","bindings","operating","system"],"readme":"README.md","repository":"https://github.com/rust-lang/libc","homepage":"https://github.com/rust-lang/libc","documentation":"https://docs.rs/libc/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"link-cplusplus","version":"1.0.7","id":"link-cplusplus 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Link libstdc++ or libc++ automatically or manually","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"link-cplusplus","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/link-cplusplus-1.0.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/link-cplusplus-1.0.7/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":[],"libc++":[],"libcxx":["libc++"],"libstdc++":[],"libstdcxx":["libstdc++"],"nothing":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/link-cplusplus-1.0.7/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["external-ffi-bindings","development-tools::ffi","compilers","no-std"],"keywords":["linkage","c++"],"readme":"README.md","repository":"https://github.com/dtolnay/link-cplusplus","homepage":null,"documentation":"https://docs.rs/link-cplusplus","edition":"2018","links":"cplusplus","default_run":null,"rust_version":"1.34"},{"name":"lock_api","version":"0.4.9","id":"lock_api 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"owning_ref","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"scopeguard","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.126","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.9/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"arc_lock":[],"nightly":[],"owning_ref":["dep:owning_ref"],"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.9/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,"default_run":null,"rust_version":null},{"name":"log","version":"0.4.17","id":"log 0.4.17 (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":"^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":false,"features":[],"target":null,"registry":null},{"name":"sval","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=1.0.0-alpha.5","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"value-bag","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=1.0.0-alpha.9","kind":null,"rename":null,"optional":true,"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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_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":"=1.0.0-alpha.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"value-bag","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=1.0.0-alpha.9","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.17/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filters","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/filters.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/macros.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"value","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/benches/value.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"kv_unstable":["value-bag"],"kv_unstable_serde":["kv_unstable_std","value-bag/serde","serde"],"kv_unstable_std":["std","kv_unstable","value-bag/error"],"kv_unstable_sval":["kv_unstable","value-bag/sval","sval"],"max_level_debug":[],"max_level_error":[],"max_level_info":[],"max_level_off":[],"max_level_trace":[],"max_level_warn":[],"release_max_level_debug":[],"release_max_level_error":[],"release_max_level_info":[],"release_max_level_off":[],"release_max_level_trace":[],"release_max_level_warn":[],"serde":["dep:serde"],"std":[],"sval":["dep:sval"],"value-bag":["dep:value-bag"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/Cargo.toml","metadata":{"docs":{"rs":{"features":["std","serde","kv_unstable_std","kv_unstable_sval","kv_unstable_serde"]}}},"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,"default_run":null,"rust_version":null},{"name":"matchit","version":"0.5.0","id":"matchit 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A blazing fast URL router.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"actix-router","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gonzales","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.3-beta","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"path-tree","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"route-recognizer","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"matchit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matchit-0.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tree","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matchit-0.5.0/tests/tree.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matchit-0.5.0/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"__test_helpers":[],"default":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/matchit-0.5.0/Cargo.toml","metadata":null,"publish":null,"authors":["ibraheem "],"categories":["network-programming","algorithms"],"keywords":["router","path","tree","match","url"],"readme":"README.md","repository":"https://github.com/ibraheemdev/matchit","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"memchr","version":"2.5.0","id":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Unlicense/MIT","license_file":null,"description":"Safe interface to memchr.","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":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.18","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std"],"libc":["dep:libc"],"rustc-dep-of-std":["core","compiler_builtins"],"std":[],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Gallant ","bluss"],"categories":[],"keywords":["memchr","char","scan","strchr","string"],"readme":"README.md","repository":"https://github.com/BurntSushi/memchr","homepage":"https://github.com/BurntSushi/memchr","documentation":"https://docs.rs/memchr/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"mime","version":"0.3.16","id":"mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Strongly Typed Mimes","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/benches/parse.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"fmt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/benches/fmt.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"cmp","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/benches/cmp.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/Cargo.toml","metadata":null,"publish":null,"authors":["Sean McArthur "],"categories":[],"keywords":["mime","media-extensions","media-types"],"readme":"README.md","repository":"https://github.com/hyperium/mime","homepage":null,"documentation":"https://docs.rs/mime","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"miniz_oxide","version":"0.5.4","id":"miniz_oxide 0.5.4 (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":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"simd-adler32","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.5.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":["dep:alloc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":[],"rustc-dep-of-std":["core","alloc","compiler_builtins","adler/rustc-dep-of-std"],"simd":["simd-adler32"],"simd-adler32":["dep:simd-adler32"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.5.4/Cargo.toml","metadata":null,"publish":null,"authors":["Frommi ","oyvindln "],"categories":["compression"],"keywords":["zlib","miniz","deflate","encoding"],"readme":"Readme.md","repository":"https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide","homepage":"https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide","documentation":"https://docs.rs/miniz_oxide","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"mio","version":"0.8.5","id":"mio 0.8.5 (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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"env_logger","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.4","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.121","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"wasi\")","registry":null},{"name":"wasi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"wasi\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.121","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_Foundation","Win32_Networking_WinSock","Win32_Storage_FileSystem","Win32_System_IO","Win32_System_WindowsProgramming"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"tcp_server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/examples/tcp_server.rs","edition":"2018","required-features":["os-poll","net"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tcp_listenfd_server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/examples/tcp_listenfd_server.rs","edition":"2018","required-features":["os-poll","net"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"udp_server","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/examples/udp_server.rs","edition":"2018","required-features":["os-poll","net"],"doc":false,"doctest":false,"test":false}],"features":{"default":[],"net":[],"os-ext":["os-poll","windows-sys/Win32_System_Pipes","windows-sys/Win32_Security"],"os-poll":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.8.5/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"],"targets":["aarch64-apple-ios","aarch64-linux-android","wasm32-wasi","x86_64-apple-darwin","x86_64-pc-windows-msvc","x86_64-unknown-dragonfly","x86_64-unknown-freebsd","x86_64-unknown-illumos","x86_64-unknown-linux-gnu","x86_64-unknown-netbsd","x86_64-unknown-openbsd"]}},"playground":{"features":["os-poll","os-ext","net"]}},"publish":null,"authors":["Carl Lerche ","Thomas de Zeeuw ","Tokio Contributors "],"categories":["asynchronous"],"keywords":["io","async","non-blocking"],"readme":"README.md","repository":"https://github.com/tokio-rs/mio","homepage":"https://github.com/tokio-rs/mio","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"multimap","version":"0.8.3","id":"multimap 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A multimap implementation.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"~1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"~1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"multimap","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/multimap-0.8.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"default":["serde_impl"],"serde":["dep:serde"],"serde_impl":["serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/multimap-0.8.3/Cargo.toml","metadata":null,"publish":null,"authors":["Håvar Nøvik "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/havarnov/multimap","homepage":null,"documentation":"https://docs.rs/multimap/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"num-bigint","version":"0.4.3","id":"num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Big integer implementation for Rust","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"arbitrary","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"num-integer","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.42","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["i128"],"target":null,"registry":null},{"name":"num-traits","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.11","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["i128"],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"num-bigint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"biguint_scalar","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/biguint_scalar.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"biguint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/biguint.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"modpow","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/modpow.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bigint_scalar","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/bigint_scalar.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bigint_bitwise","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/bigint_bitwise.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fuzzed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/fuzzed.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bigint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/bigint.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"roots","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/tests/roots.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bigint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/benches/bigint.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"factorial","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/benches/factorial.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"gcd","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/benches/gcd.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"roots","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/benches/roots.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"shootout-pidigits","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/benches/shootout-pidigits.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"arbitrary":["dep:arbitrary"],"default":["std"],"quickcheck":["dep:quickcheck"],"rand":["dep:rand"],"serde":["dep:serde"],"std":["num-integer/std","num-traits/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/Cargo.toml","metadata":{"docs":{"rs":{"features":["std","serde","rand","quickcheck","arbitrary"]}}},"publish":null,"authors":["The Rust Project Developers"],"categories":["algorithms","data-structures","science"],"keywords":["mathematics","numerics","bignum"],"readme":"README.md","repository":"https://github.com/rust-num/num-bigint","homepage":"https://github.com/rust-num/num-bigint","documentation":"https://docs.rs/num-bigint","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"num-integer","version":"0.1.45","id":"num-integer 0.1.45 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Integer traits and functions","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"num-traits","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.11","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":"^1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"num-integer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"average","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/tests/average.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"roots","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/tests/roots.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"average","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/benches/average.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"gcd","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/benches/gcd.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"roots","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/benches/roots.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"i128":["num-traits/i128"],"std":["num-traits/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.45/Cargo.toml","metadata":{"docs":{"rs":{"features":["std"]}}},"publish":null,"authors":["The Rust Project Developers"],"categories":["algorithms","science","no-std"],"keywords":["mathematics","numerics"],"readme":"README.md","repository":"https://github.com/rust-num/num-integer","homepage":"https://github.com/rust-num/num-integer","documentation":"https://docs.rs/num-integer","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"num-traits","version":"0.2.15","id":"num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Numeric traits for generic mathematics","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"libm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"num-traits","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cast","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/tests/cast.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"libm":["dep:libm"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/Cargo.toml","metadata":{"docs":{"rs":{"features":["std"]}}},"publish":null,"authors":["The Rust Project Developers"],"categories":["algorithms","science","no-std"],"keywords":["mathematics","numerics"],"readme":"README.md","repository":"https://github.com/rust-num/num-traits","homepage":"https://github.com/rust-num/num-traits","documentation":"https://docs.rs/num-traits","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"num_threads","version":"0.1.6","id":"num_threads 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A minimal library that determines the number of running threads for the current process.","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.107","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"num_threads","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_threads-0.1.6/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_threads-0.1.6/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Jacob Pratt "],"categories":["api-bindings","hardware-support","os"],"keywords":[],"readme":null,"repository":"https://github.com/jhpratt/num_threads","homepage":null,"documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"once_cell","version":"1.15.0","id":"once_cell 1.15.0 (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":"atomic-polyfill","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":"parking_lot_core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.3","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"crossbeam-utils","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.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.15.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/examples/bench.rs","edition":"2021","required-features":["std"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"bench_acquire","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/examples/bench_acquire.rs","edition":"2021","required-features":["std"],"doc":false,"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.15.0/examples/bench_vs_lazy_static.rs","edition":"2021","required-features":["std"],"doc":false,"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.15.0/examples/lazy_static.rs","edition":"2021","required-features":["std"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"reentrant_init_deadlocks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/examples/reentrant_init_deadlocks.rs","edition":"2021","required-features":["std"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/examples/regex.rs","edition":"2021","required-features":["std"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"test_synchronization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/examples/test_synchronization.rs","edition":"2021","required-features":["std"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"it","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/tests/it.rs","edition":"2021","doc":false,"doctest":false,"test":true}],"features":{"alloc":["race"],"atomic-polyfill":["dep:atomic-polyfill"],"default":["std"],"parking_lot":["parking_lot_core"],"parking_lot_core":["dep:parking_lot_core"],"race":[],"std":["alloc"],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.15.0/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":"2021","links":null,"default_run":null,"rust_version":"1.56"},{"name":"parking_lot","version":"0.12.1","id":"parking_lot 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"More compact and efficient implementations of the standard synchronization primitives.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"lock_api","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"parking_lot_core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.12.1/src/lib.rs","edition":"2018","doc":true,"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.12.1/tests/issue_203.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"arc_lock":["lock_api/arc_lock"],"deadlock_detection":["parking_lot_core/deadlock_detection"],"default":[],"hardware-lock-elision":[],"nightly":["parking_lot_core/nightly","lock_api/nightly"],"owning_ref":["lock_api/owning_ref"],"send_guard":[],"serde":["lock_api/serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.12.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,"default_run":null,"rust_version":null},{"name":"parking_lot_core","version":"0.9.4","id":"parking_lot_core 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"An advanced API for creating custom synchronization primitives.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"backtrace","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.60","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"petgraph","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"thread-id","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^4.0.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"redox_syscall","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"redox\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.95","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_Foundation","Win32_System_LibraryLoader","Win32_System_SystemServices","Win32_System_WindowsProgramming"],"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.9.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.9.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"backtrace":["dep:backtrace"],"deadlock_detection":["petgraph","thread-id","backtrace"],"nightly":[],"petgraph":["dep:petgraph"],"thread-id":["dep:thread-id"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.9.4/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,"default_run":null,"rust_version":null},{"name":"pem","version":"1.1.0","id":"pem 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Parse and encode PEM-encoded data.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13.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","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["serde_derive"],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"pem","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"pem_benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-1.1.0/benches/pem_benchmark.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-1.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["Jonathan Creekmore "],"categories":["cryptography"],"keywords":[],"readme":"README.md","repository":"https://github.com/jcreekmore/pem-rs.git","homepage":"https://github.com/jcreekmore/pem-rs.git","documentation":"https://docs.rs/pem/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"percent-encoding","version":"2.2.0","id":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Percent encoding and decoding","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"percent-encoding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"default":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.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":"2018","links":null,"default_run":null,"rust_version":"1.51"},{"name":"petgraph","version":"0.6.2","id":"petgraph 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Graph data structure library. Provides graph types and graph algorithms.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"fixedbitset","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","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":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.3.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"defmac","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10.1","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"odds","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"petgraph","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"quickcheck","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/quickcheck.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"graph","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/graph.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"k_shortest_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/k_shortest_path.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"matching","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/matching.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"floyd_warshall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/floyd_warshall.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stable_graph","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/stable_graph.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"graphmap","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/graphmap.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"list","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/list.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unionfind","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/unionfind.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"operator","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/operator.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"iso","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/tests/iso.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"k_shortest_path","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/k_shortest_path.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"feedback_arc_set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/feedback_arc_set.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"bellman_ford","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/bellman_ford.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"matching","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/matching.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"dijkstra","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/dijkstra.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"floyd_warshall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/floyd_warshall.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"stable_graph","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/stable_graph.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"serialize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/serialize.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"unionfind","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/unionfind.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"matrix_graph","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/matrix_graph.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"iso","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/iso.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"ograph","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/benches/ograph.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"all":["unstable","quickcheck","matrix_graph","stable_graph","graphmap"],"default":["graphmap","stable_graph","matrix_graph"],"generate":[],"graphmap":[],"matrix_graph":[],"quickcheck":["dep:quickcheck"],"serde":["dep:serde"],"serde-1":["serde","serde_derive"],"serde_derive":["dep:serde_derive"],"stable_graph":[],"unstable":["generate"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/petgraph-0.6.2/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde-1","quickcheck"]}},"release":{"no-dev-version":true}},"publish":null,"authors":["bluss","mitchmindtree"],"categories":["data-structures"],"keywords":["data-structure","graph","unionfind","graph-algorithms"],"readme":"README.md","repository":"https://github.com/petgraph/petgraph","homepage":null,"documentation":"https://docs.rs/petgraph/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"pin-project","version":"1.0.12","id":"pin-project 1.0.12 (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.12","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"macrotest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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.0.49","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.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"enum-default-expanded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.12/examples/enum-default-expanded.rs","edition":"2018","doc":false,"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.12/examples/struct-default-expanded.rs","edition":"2018","doc":false,"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.12/examples/not_unpin.rs","edition":"2018","doc":false,"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.12/examples/pinned_drop-expanded.rs","edition":"2018","doc":false,"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.12/examples/pinned_drop.rs","edition":"2018","doc":false,"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.12/examples/enum-default.rs","edition":"2018","doc":false,"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.12/examples/not_unpin-expanded.rs","edition":"2018","doc":false,"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.12/examples/unsafe_unpin-expanded.rs","edition":"2018","doc":false,"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.12/examples/unsafe_unpin.rs","edition":"2018","doc":false,"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.12/examples/project_replace.rs","edition":"2018","doc":false,"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.12/examples/project_replace-expanded.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"struct-default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.12/examples/struct-default.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"repr_packed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.12/tests/repr_packed.rs","edition":"2018","doc":false,"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.12/tests/compiletest.rs","edition":"2018","doc":false,"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.12/tests/pinned_drop.rs","edition":"2018","doc":false,"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.12/tests/proper_unpin.rs","edition":"2018","doc":false,"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.12/tests/unsafe_unpin.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"pin_project","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.12/tests/pin_project.rs","edition":"2018","doc":false,"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.12/tests/drop_order.rs","edition":"2018","doc":false,"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.12/tests/lint.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"expandtest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.12/tests/expandtest.rs","edition":"2018","doc":false,"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.12/tests/cfg.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-1.0.12/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":[],"categories":["no-std","rust-patterns"],"keywords":["pin","macros","attribute"],"readme":"README.md","repository":"https://github.com/taiki-e/pin-project","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.37"},{"name":"pin-project-internal","version":"1.0.12","id":"pin-project-internal 1.0.12 (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.56","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.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-1.0.12/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":[],"categories":["no-std","rust-patterns"],"keywords":["pin","macros","attribute"],"readme":null,"repository":"https://github.com/taiki-e/pin-project","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.37"},{"name":"pin-project-lite","version":"0.2.9","id":"pin-project-lite 0.2.9 (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.0.49","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.2.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.9/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"proper_unpin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.9/tests/proper_unpin.rs","edition":"2018","doc":false,"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.2.9/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"drop_order","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.9/tests/drop_order.rs","edition":"2018","doc":false,"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.2.9/tests/lint.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"expandtest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.9/tests/expandtest.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.9/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":[],"categories":["no-std","rust-patterns"],"keywords":["pin","macros"],"readme":"README.md","repository":"https://github.com/taiki-e/pin-project-lite","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.37"},{"name":"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","doc":true,"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","doc":false,"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","doc":false,"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,"default_run":null,"rust_version":null},{"name":"ppv-lite86","version":"0.2.16","id":"ppv-lite86 0.2.16 (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.16/src/lib.rs","edition":"2018","doc":true,"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.16/Cargo.toml","metadata":null,"publish":null,"authors":["The CryptoCorrosion Contributors"],"categories":["cryptography","no-std"],"keywords":["crypto","simd","x86"],"readme":null,"repository":"https://github.com/cryptocorrosion/cryptocorrosion","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"prettyplease","version":"0.1.21","id":"prettyplease 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A minimal `syn` syntax tree pretty-printer","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":"syn","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.90","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["full"],"target":null,"registry":null},{"name":"syn","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.90","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["parsing"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"prettyplease","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prettyplease-0.1.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prettyplease-0.1.21/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"verbatim":["syn/parsing"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prettyplease-0.1.21/Cargo.toml","metadata":null,"publish":null,"authors":["David Tolnay "],"categories":["development-tools"],"keywords":["rustfmt"],"readme":"README.md","repository":"https://github.com/dtolnay/prettyplease","homepage":null,"documentation":"https://docs.rs/prettyplease","edition":"2021","links":"prettyplease01","default_run":null,"rust_version":"1.56"},{"name":"proc-macro2","version":"1.0.47","id":"proc-macro2 1.0.47 (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 token-based libraries from the procedural macro use case.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"unicode-ident","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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.47/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"comments","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.47/tests/comments.rs","edition":"2018","doc":false,"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.47/tests/test_fmt.rs","edition":"2018","doc":false,"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.47/tests/marker.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.47/tests/test.rs","edition":"2018","doc":false,"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.47/tests/features.rs","edition":"2018","doc":false,"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.47/build.rs","edition":"2018","doc":false,"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.47/Cargo.toml","metadata":{"docs":{"rs":{"rustc-args":["--cfg","procmacro2_semver_exempt"],"rustdoc-args":["--cfg","procmacro2_semver_exempt","--cfg","doc_cfg"],"targets":["x86_64-unknown-linux-gnu"]}},"playground":{"features":["span-locations"]}},"publish":null,"authors":["David Tolnay ","Alex Crichton "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["macros","syn"],"readme":"README.md","repository":"https://github.com/dtolnay/proc-macro2","homepage":null,"documentation":"https://docs.rs/proc-macro2","edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"name":"prost","version":"0.10.4","id":"prost 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A Protocol Buffers implementation for the Rust Language.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"prost-derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"env_logger","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"prost","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-0.10.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"varint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-0.10.4/benches/varint.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["prost-derive","std"],"no-recursion-limit":[],"prost-derive":["dep:prost-derive"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-0.10.4/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Burkert ","Tokio Contributors "],"categories":["encoding"],"keywords":["protobuf","serialization"],"readme":"README.md","repository":"https://github.com/tokio-rs/prost","homepage":null,"documentation":"https://docs.rs/prost","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"prost","version":"0.11.0","id":"prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A Protocol Buffers implementation for the Rust Language.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"prost-derive","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":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"env_logger","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"prost","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-0.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"varint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-0.11.0/benches/varint.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"default":["prost-derive","std"],"no-recursion-limit":[],"prost-derive":["dep:prost-derive"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-0.11.0/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Burkert ","Lucio Franco "],"categories":["encoding"],"keywords":["protobuf","serialization"],"readme":"README.md","repository":"https://github.com/tokio-rs/prost","homepage":null,"documentation":"https://docs.rs/prost","edition":"2021","links":null,"default_run":null,"rust_version":"1.56"},{"name":"prost-build","version":"0.11.1","id":"prost-build 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A Protocol Buffers implementation for the Rust Language.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"heck","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":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"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":"multimap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"petgraph","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"prost","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"prost-types","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"pulldown-cmark","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"pulldown-cmark-to-cmark","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^10.0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std","unicode-bool"],"target":null,"registry":null},{"name":"tempfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"which","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"env_logger","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"prost-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-build-0.11.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"cleanup-markdown":["pulldown-cmark","pulldown-cmark-to-cmark"],"default":[],"pulldown-cmark":["dep:pulldown-cmark"],"pulldown-cmark-to-cmark":["dep:pulldown-cmark-to-cmark"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-build-0.11.1/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Burkert ","Lucio Franco ","Tokio Contributors "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/prost","homepage":null,"documentation":"https://docs.rs/prost-build","edition":"2021","links":null,"default_run":null,"rust_version":"1.56"},{"name":"prost-derive","version":"0.10.1","id":"prost-derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A Protocol Buffers implementation for the Rust Language.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"anyhow","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":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["extra-traits"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"prost-derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-derive-0.10.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-derive-0.10.1/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Burkert ","Tokio Contributors "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/prost","homepage":null,"documentation":"https://docs.rs/prost-derive","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"prost-derive","version":"0.11.0","id":"prost-derive 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A Protocol Buffers implementation for the Rust Language.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"anyhow","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":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":["extra-traits"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"prost-derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-derive-0.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-derive-0.11.0/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Burkert ","Lucio Franco ","Tokio Contributors "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/prost","homepage":null,"documentation":"https://docs.rs/prost-derive","edition":"2021","links":null,"default_run":null,"rust_version":"1.56"},{"name":"prost-types","version":"0.11.1","id":"prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A Protocol Buffers implementation for the Rust Language.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bytes","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":"prost","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["prost-derive"],"target":null,"registry":null},{"name":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"prost-types","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-types-0.11.1/src/lib.rs","edition":"2021","doc":true,"doctest":false,"test":true}],"features":{"default":["std"],"std":["prost/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-types-0.11.1/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Burkert ","Lucio Franco "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/prost","homepage":null,"documentation":"https://docs.rs/prost-types","edition":"2021","links":null,"default_run":null,"rust_version":"1.56"},{"name":"quote","version":"1.0.21","id":"quote 1.0.21 (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.40","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.52","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.21/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["proc-macro"],"proc-macro":["proc-macro2/proc-macro"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers"],"keywords":["macros","syn"],"readme":"README.md","repository":"https://github.com/dtolnay/quote","homepage":null,"documentation":"https://docs.rs/quote/","edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"name":"rand","version":"0.8.5","id":"rand 0.8.5 (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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.4","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"packed_simd_2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.7","kind":null,"rename":"packed_simd","optional":true,"uses_default_features":true,"features":["into_bits"],"target":null,"registry":null},{"name":"rand_chacha","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand_core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.103","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_pcg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.22","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":["rand_core/alloc"],"default":["std","std_rng"],"getrandom":["rand_core/getrandom"],"libc":["dep:libc"],"log":["dep:log"],"min_const_gen":[],"nightly":[],"packed_simd":["dep:packed_simd"],"rand_chacha":["dep:rand_chacha"],"serde":["dep:serde"],"serde1":["serde","rand_core/serde1"],"simd_support":["packed_simd"],"small_rng":[],"std":["rand_core/std","rand_chacha/std","alloc","getrandom","libc"],"std_rng":["rand_chacha"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","doc_cfg"]}},"playground":{"features":["small_rng","serde1"]}},"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://rust-random.github.io/book","documentation":"https://docs.rs/rand","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"rand_chacha","version":"0.3.1","id":"rand_chacha 0.3.1 (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.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["simd"],"target":null,"registry":null},{"name":"rand_core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":["std"],"serde":["dep:serde"],"serde1":["serde"],"simd":[],"std":["ppv-lite86/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers","The CryptoCorrosion Contributors"],"categories":["algorithms","no-std"],"keywords":["random","rng","chacha"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://rust-random.github.io/book","documentation":"https://docs.rs/rand_chacha","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"rand_core","version":"0.6.4","id":"rand_core 0.6.4 (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.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"getrandom":["dep:getrandom"],"serde":["dep:serde"],"serde1":["serde"],"std":["alloc","getrandom","getrandom/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","doc_cfg"]}},"playground":{"all-features":true}},"publish":null,"authors":["The Rand Project Developers","The Rust Project Developers"],"categories":["algorithms","no-std"],"keywords":["random","rng"],"readme":"README.md","repository":"https://github.com/rust-random/rand","homepage":"https://rust-random.github.io/book","documentation":"https://docs.rs/rand_core","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"redox_syscall","version":"0.2.16","id":"redox_syscall 0.2.16 (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":[{"name":"bitflags","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"syscall","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml","metadata":null,"publish":null,"authors":["Jeremy Soller "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://gitlab.redox-os.org/redox-os/syscall","homepage":null,"documentation":"https://docs.rs/redox_syscall","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"regex","version":"1.6.0","id":"regex 1.6.0 (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.18","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memchr","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.4.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"regex-syntax","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.27","kind":null,"rename":null,"optional":false,"uses_default_features":false,"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":"^1.0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["getrandom","small_rng"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/examples/shootout-regex-dna.rs","edition":"2018","doc":false,"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.6.0/examples/shootout-regex-dna-single-cheat.rs","edition":"2018","doc":false,"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.6.0/examples/shootout-regex-dna-cheat.rs","edition":"2018","doc":false,"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.6.0/examples/shootout-regex-dna-bytes.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"shootout-regex-dna-single","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/examples/shootout-regex-dna-single.rs","edition":"2018","doc":false,"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.6.0/examples/shootout-regex-dna-replace.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_default.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"default-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_default_bytes.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_nfa.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa-utf8bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_nfa_utf8bytes.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nfa-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_nfa_bytes.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_backtrack.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack-utf8bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_backtrack_utf8bytes.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"backtrack-bytes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_backtrack_bytes.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"crates-regex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/tests/test_crates_regex.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"aho-corasick":["dep:aho-corasick"],"default":["std","perf","unicode","regex-syntax/default"],"memchr":["dep:memchr"],"pattern":[],"perf":["perf-cache","perf-dfa","perf-inline","perf-literal"],"perf-cache":[],"perf-dfa":[],"perf-inline":[],"perf-literal":["aho-corasick","memchr"],"std":[],"unicode":["unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","regex-syntax/unicode"],"unicode-age":["regex-syntax/unicode-age"],"unicode-bool":["regex-syntax/unicode-bool"],"unicode-case":["regex-syntax/unicode-case"],"unicode-gencat":["regex-syntax/unicode-gencat"],"unicode-perl":["regex-syntax/unicode-perl"],"unicode-script":["regex-syntax/unicode-script"],"unicode-segment":["regex-syntax/unicode-segment"],"unstable":["pattern"],"use_std":["std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.6.0/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":"2018","links":null,"default_run":null,"rust_version":null},{"name":"regex-syntax","version":"0.6.27","id":"regex-syntax 0.6.27 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A regular expression parser.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"regex-syntax","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.27/src/lib.rs","edition":"2018","doc":true,"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.27/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["unicode"],"unicode":["unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"unicode-age":[],"unicode-bool":[],"unicode-case":[],"unicode-gencat":[],"unicode-perl":[],"unicode-script":[],"unicode-segment":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.27/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rust-lang/regex","homepage":"https://github.com/rust-lang/regex","documentation":"https://docs.rs/regex-syntax","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"remove_dir_all","version":"0.5.3","id":"remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A safe, reliable implementation of remove_dir_all for Windows","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"doc-comment","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["std","errhandlingapi","winerror","fileapi","winbase"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"remove_dir_all","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/Cargo.toml","metadata":null,"publish":null,"authors":["Aaronepower "],"categories":["filesystem"],"keywords":["utility","filesystem","remove_dir","windows"],"readme":"README.md","repository":"https://github.com/XAMPPRocky/remove_dir_all.git","homepage":null,"documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"reqwest","version":"0.11.12","id":"reqwest 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"higher level HTTP client library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bytes","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":"http","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":"mime_guess","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_urlencoded","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tower-service","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":"url","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-compression","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.13","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["tokio"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"cookie","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.16","kind":null,"rename":"cookie_crate","optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"cookie_store","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.16","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"encoding_rs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"h2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"http-body","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(not(target_arch = \"wasm32\"))","registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14.18","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["tcp","http1","http2","client","runtime"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"hyper-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.23","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"hyper-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"ipnet","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","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":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"mime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"native-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":null,"rename":"native-tls-crate","optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"percent-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"pin-project-lite","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":"cfg(not(target_arch = \"wasm32\"))","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":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["dangerous_configuration"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"rustls-native-certs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"rustls-pemfile","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":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["net","time"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"tokio-native-tls","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":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"tokio-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.23","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"tokio-socks","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":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["codec","io"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"trust-dns-resolver","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.21","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"webpki-roots","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"brotli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.3.0","kind":"dev","rename":"brotli_crate","optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"doc-comment","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","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":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["tcp","stream","http1","http2","client","server","runtime"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"libflate","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["macros","rt-multi-thread"],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.45","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","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":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.68","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.18","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"web-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.25","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Headers","Request","RequestInit","RequestMode","Response","Window","FormData","Blob","BlobPropertyBag","ServiceWorkerGlobalScope","RequestCredentials","File"],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.68","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["serde-serialize"],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"winreg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"blocking","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/examples/blocking.rs","edition":"2018","required-features":["blocking"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"json_dynamic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/examples/json_dynamic.rs","edition":"2018","required-features":["json"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"json_typed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/examples/json_typed.rs","edition":"2018","required-features":["json"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"tor_socks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/examples/tor_socks.rs","edition":"2018","required-features":["socks"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"form","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/examples/form.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/examples/simple.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"blocking","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/blocking.rs","edition":"2018","required-features":["blocking"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cookie","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/cookie.rs","edition":"2018","required-features":["cookies"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"gzip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/gzip.rs","edition":"2018","required-features":["gzip"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"brotli","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/brotli.rs","edition":"2018","required-features":["brotli"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"deflate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/deflate.rs","edition":"2018","required-features":["deflate"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"multipart","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/multipart.rs","edition":"2018","required-features":["multipart"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"client","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/client.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"redirect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/redirect.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"badssl","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/badssl.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"timeouts","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/timeouts.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"proxy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/proxy.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"upgrade","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/upgrade.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm_simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/tests/wasm_simple.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"__internal_proxy_sys_no_cache":[],"__rustls":["hyper-rustls","tokio-rustls","rustls","__tls","rustls-pemfile"],"__tls":[],"async-compression":["dep:async-compression"],"blocking":["futures-util/io","tokio/rt-multi-thread","tokio/sync"],"brotli":["async-compression","async-compression/brotli","tokio-util"],"cookie_crate":["dep:cookie_crate"],"cookie_store":["dep:cookie_store"],"cookies":["cookie_crate","cookie_store","proc-macro-hack"],"default":["default-tls"],"default-tls":["hyper-tls","native-tls-crate","__tls","tokio-native-tls"],"deflate":["async-compression","async-compression/zlib","tokio-util"],"gzip":["async-compression","async-compression/gzip","tokio-util"],"hyper-rustls":["dep:hyper-rustls"],"hyper-tls":["dep:hyper-tls"],"json":["serde_json"],"mime_guess":["dep:mime_guess"],"multipart":["mime_guess"],"native-tls":["default-tls"],"native-tls-alpn":["native-tls","native-tls-crate/alpn"],"native-tls-crate":["dep:native-tls-crate"],"native-tls-vendored":["native-tls","native-tls-crate/vendored"],"proc-macro-hack":["dep:proc-macro-hack"],"rustls":["dep:rustls"],"rustls-native-certs":["dep:rustls-native-certs"],"rustls-pemfile":["dep:rustls-pemfile"],"rustls-tls":["rustls-tls-webpki-roots"],"rustls-tls-manual-roots":["__rustls"],"rustls-tls-native-roots":["rustls-native-certs","__rustls"],"rustls-tls-webpki-roots":["webpki-roots","__rustls"],"serde_json":["dep:serde_json"],"socks":["tokio-socks"],"stream":["tokio/fs","tokio-util"],"tokio-native-tls":["dep:tokio-native-tls"],"tokio-rustls":["dep:tokio-rustls"],"tokio-socks":["dep:tokio-socks"],"tokio-util":["dep:tokio-util"],"trust-dns":["trust-dns-resolver"],"trust-dns-resolver":["dep:trust-dns-resolver"],"webpki-roots":["dep:webpki-roots"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.12/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"],"targets":["x86_64-unknown-linux-gnu","wasm32-unknown-unknown"]}},"playground":{"features":["blocking","cookies","json","multipart"]}},"publish":null,"authors":["Sean McArthur "],"categories":["web-programming::http-client","wasm"],"keywords":["http","request","client"],"readme":"README.md","repository":"https://github.com/seanmonstar/reqwest","homepage":null,"documentation":"https://docs.rs/reqwest","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"ring","version":"0.16.20","id":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","license":null,"license_file":"LICENSE","description":"Safe, fast, small crypto using Rust.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"untrusted","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.62","kind":"build","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"web-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.37","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["Crypto","Window"],"target":"cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))","registry":null},{"name":"spin","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(target_arch = \"x86\", target_arch = \"x86_64\", all(any(target_arch = \"aarch64\", target_arch = \"arm\"), any(target_os = \"android\", target_os = \"fuchsia\", target_os = \"linux\"))))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.69","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(target_os = \"android\", target_os = \"linux\"))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":"cfg(any(target_os = \"android\", target_os = \"linux\"))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["std"],"target":"cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.80","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(unix, windows))","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.18","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(target_arch = \"wasm32\")","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":false,"features":["ntsecapi","wtypesbase"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"hkdf_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/hkdf_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rsa_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/rsa_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"constant_time_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/constant_time_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"hmac_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/hmac_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ed25519_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/ed25519_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"digest_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/digest_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signature_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/signature_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ecdsa_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/ecdsa_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"quic_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/quic_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"agreement_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/agreement_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"pbkdf2_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/pbkdf2_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rand_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/rand_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"aead_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/tests/aead_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"default":["alloc","dev_urandom_fallback"],"dev_urandom_fallback":["once_cell"],"internal_benches":[],"once_cell":["dep:once_cell"],"slow_tests":[],"std":["alloc"],"test_logging":[],"wasm32_c":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Brian Smith "],"categories":["cryptography","no-std"],"keywords":["crypto","cryptography","rand","ECC","RSA"],"readme":"doc/link-to-readme.md","repository":"https://github.com/briansmith/ring","homepage":null,"documentation":"https://briansmith.org/rustdoc/ring/","edition":"2018","links":"ring-asm","default_run":null,"rust_version":null},{"name":"rustls","version":"0.20.7","id":"rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/ISC/MIT","license_file":null,"description":"Rustls is a modern TLS library written in Rust.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"ring","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.16.20","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"sct","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":"webpki","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["alloc","std"],"target":null,"registry":null},{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"env_logger","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustls-pemfile","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":"webpki-roots","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22.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.6","kind":"build","rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"bogo_shim","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/examples/internal/bogo_shim.rs","edition":"2018","required-features":["dangerous_configuration","quic"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"trytls_shim","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/examples/internal/trytls_shim.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/examples/internal/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"client_cert_verifier","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/tests/client_cert_verifier.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"key_log_file_env","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/tests/key_log_file_env.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"api","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/tests/api.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/tests/benchmarks.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"server_cert_verifier","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/tests/server_cert_verifier.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/tests/benchmarks.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"dangerous_configuration":[],"default":["logging","tls12"],"log":["dep:log"],"logging":["log"],"quic":[],"read_buf":["rustversion"],"rustversion":["dep:rustversion"],"secret_extraction":[],"tls12":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.20.7/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":[],"categories":["network-programming","cryptography"],"keywords":[],"readme":"README.md","repository":"https://github.com/rustls/rustls","homepage":"https://github.com/rustls/rustls","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.56"},{"name":"rustls-pemfile","version":"1.0.1","id":"rustls-pemfile 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR ISC OR MIT","license_file":null,"description":"Basic .pem file parser for keys and certificates","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustls-pemfile","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-pemfile-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"integration","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-pemfile-1.0.1/tests/integration.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-pemfile-1.0.1/benches/benchmark.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-pemfile-1.0.1/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["network-programming","cryptography"],"keywords":[],"readme":"README.md","repository":"https://github.com/rustls/pemfile","homepage":"https://github.com/rustls/pemfile","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"ryu","version":"1.0.11","id":"ryu 1.0.11 (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.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_xorshift","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.11/src/lib.rs","edition":"2018","doc":true,"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.11/examples/upstream_benchmark.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"d2s_table_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.11/tests/d2s_table_test.rs","edition":"2018","doc":false,"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.11/tests/f2s_test.rs","edition":"2018","doc":false,"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.11/tests/s2d_test.rs","edition":"2018","doc":false,"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.11/tests/common_test.rs","edition":"2018","doc":false,"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.11/tests/d2s_test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"exhaustive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.11/tests/exhaustive.rs","edition":"2018","doc":false,"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.11/tests/s2f_test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.11/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"no-panic":["dep:no-panic"],"small":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.11/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["value-formatting","no-std"],"keywords":["float"],"readme":"README.md","repository":"https://github.com/dtolnay/ryu","homepage":null,"documentation":"https://docs.rs/ryu","edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"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","doc":true,"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","doc":false,"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,"default_run":null,"rust_version":null},{"name":"scratch","version":"1.0.2","id":"scratch 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Compile-time temporary directory shared by multiple crates and erased by `cargo clean`","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"fs2","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":"scratch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scratch-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scratch-1.0.2/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scratch-1.0.2/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::build-utils","filesystem"],"keywords":[],"readme":"README.md","repository":"https://github.com/dtolnay/scratch","homepage":null,"documentation":"https://docs.rs/scratch","edition":"2015","links":null,"default_run":null,"rust_version":"1.0"},{"name":"sct","version":"0.7.0","id":"sct 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/ISC/MIT","license_file":null,"description":"Certificate transparency SCT verification library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"ring","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.16.20","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"untrusted","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"sct","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sct-0.7.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sct-0.7.0/Cargo.toml","metadata":null,"publish":null,"authors":["Joseph Birr-Pixton "],"categories":["network-programming","cryptography"],"keywords":[],"readme":"README.md","repository":"https://github.com/ctz/sct.rs","homepage":"https://github.com/ctz/sct.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"serde","version":"1.0.147","id":"serde 1.0.147 (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.147","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.147/src/lib.rs","edition":"2015","doc":true,"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.147/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"default":["std"],"derive":["serde_derive"],"rc":[],"serde_derive":["dep:serde_derive"],"std":[],"unstable":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.147/Cargo.toml","metadata":{"playground":{"features":["derive","rc"]},"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["encoding","no-std"],"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,"default_run":null,"rust_version":"1.13"},{"name":"serde_derive","version":"1.0.147","id":"serde_derive 1.0.147 (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.90","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":"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.147/src/lib.rs","edition":"2015","doc":true,"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.147/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":[],"deserialize_in_place":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.147/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["no-std"],"keywords":["serde","serialization","no_std","derive"],"readme":"crates-io.md","repository":"https://github.com/serde-rs/serde","homepage":"https://serde.rs","documentation":"https://serde.rs/derive.html","edition":"2015","links":null,"default_run":null,"rust_version":"1.31"},{"name":"serde_json","version":"1.0.87","id":"serde_json 1.0.87 (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.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["std"],"target":null,"registry":null},{"name":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"indoc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^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":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.100","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"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.49","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.87/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"regression","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/regression.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/debug.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/map.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lexical","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/lexical.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/tests/stream.rs","edition":"2018","doc":false,"doctest":false,"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.87/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":["serde/alloc"],"arbitrary_precision":[],"default":["std"],"float_roundtrip":[],"indexmap":["dep:indexmap"],"preserve_order":["indexmap","std"],"raw_value":[],"std":["serde/std"],"unbounded_depth":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.87/Cargo.toml","metadata":{"docs":{"rs":{"features":["raw_value","unbounded_depth"],"targets":["x86_64-unknown-linux-gnu"],"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["raw_value"]}},"publish":null,"authors":["Erick Tryzelaar ","David Tolnay "],"categories":["encoding","parser-implementations","no-std"],"keywords":["json","serde","serialization"],"readme":"README.md","repository":"https://github.com/serde-rs/json","homepage":null,"documentation":"https://docs.serde.rs/serde_json/","edition":"2018","links":null,"default_run":null,"rust_version":"1.36"},{"name":"serde_urlencoded","version":"0.7.1","id":"serde_urlencoded 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"`x-www-form-urlencoded` meets Serde","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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ryu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.69","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"serde_urlencoded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"test_serialize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.1/tests/test_serialize.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_deserialize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.1/tests/test_deserialize.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.1/Cargo.toml","metadata":null,"publish":null,"authors":["Anthony Ramine "],"categories":["encoding","web-programming"],"keywords":["serde","serialization","urlencoded"],"readme":"README.md","repository":"https://github.com/nox/serde_urlencoded","homepage":null,"documentation":"https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"simple_asn1","version":"0.6.2","id":"simple_asn1 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"ISC","license_file":null,"description":"A simple DER/ASN.1 encoding/decoding library.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"num-bigint","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"num-traits","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"thiserror","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":"time","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["formatting","macros","parsing"],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"time","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["formatting","macros","parsing","quickcheck"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"simple_asn1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/simple_asn1-0.6.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/simple_asn1-0.6.2/Cargo.toml","metadata":null,"publish":null,"authors":["Adam Wick "],"categories":["encoding"],"keywords":["ASN1","encoding","DER"],"readme":"README.md","repository":"https://github.com/acw/simple_asn1","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"slab","version":"0.4.7","id":"slab 0.4.7 (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":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.95","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["alloc"],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"serde_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},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"slab","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.7/tests/slab.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.7/tests/serde.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.7/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"serde":["dep:serde"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.7/Cargo.toml","metadata":null,"publish":null,"authors":["Carl Lerche "],"categories":["memory-management","data-structures","no-std"],"keywords":["slab","allocator","no_std"],"readme":"README.md","repository":"https://github.com/tokio-rs/slab","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"name":"smallvec","version":"1.10.0","id":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"'Small vector' optimization: store up to a small number of items on the stack","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"arbitrary","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"debugger_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"debugger_test_parser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"debugger_visualizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.10.0/tests/debugger_visualizer.rs","edition":"2018","required-features":["debugger_visualizer"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.10.0/tests/macro.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.10.0/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"arbitrary":["dep:arbitrary"],"const_generics":[],"const_new":["const_generics"],"debugger_visualizer":[],"may_dangle":[],"serde":["dep:serde"],"specialization":[],"union":[],"write":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.10.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["The Servo Project Developers"],"categories":["data-structures"],"keywords":["small","vec","vector","stack","no_std"],"readme":"README.md","repository":"https://github.com/servo/rust-smallvec","homepage":null,"documentation":"https://docs.rs/smallvec/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"socket2","version":"0.4.7","id":"socket2 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR 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":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.124","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.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["handleapi","ws2ipdef","ws2tcpip"],"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.4.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"all":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.7/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["all"]}},"publish":null,"authors":["Alex Crichton ","Thomas de Zeeuw "],"categories":["api-bindings","network-programming"],"keywords":["io","socket","network"],"readme":"README.md","repository":"https://github.com/rust-lang/socket2","homepage":"https://github.com/rust-lang/socket2","documentation":"https://docs.rs/socket2","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"spin","version":"0.5.2","id":"spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Synchronization primitives based on spinning.\nThey may contain data, are usable without `std`,\nand static initializers are available.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/examples/debug.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/Cargo.toml","metadata":null,"publish":null,"authors":["Mathijs van de Nes ","John Ericson "],"categories":[],"keywords":["spinlock","mutex","rwlock"],"readme":"README.md","repository":"https://github.com/mvdnes/spin-rs.git","homepage":null,"documentation":"https://mvdnes.github.io/rust-docs/spin-rs/spin/index.html","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"syn","version":"1.0.103","id":"syn 1.0.103 (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.46","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"unicode-ident","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"anyhow","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"automod","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"flate2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"insta","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ref-cast","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"reqwest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["blocking"],"target":null,"registry":null},{"name":"syn-test-suite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tar","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.16","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"termcolor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"walkdir","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/tests/test_meta.rs","edition":"2018","doc":false,"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.103/tests/test_receiver.rs","edition":"2018","doc":false,"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.103/tests/test_shebang.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"regression","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/tests/regression.rs","edition":"2018","doc":false,"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.103/tests/test_grouping.rs","edition":"2018","doc":false,"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.103/tests/test_generics.rs","edition":"2018","doc":false,"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.103/tests/test_pat.rs","edition":"2018","doc":false,"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.103/tests/test_iterators.rs","edition":"2018","doc":false,"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.103/tests/test_round_trip.rs","edition":"2018","doc":false,"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.103/tests/test_ty.rs","edition":"2018","doc":false,"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.103/tests/test_size.rs","edition":"2018","doc":false,"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.103/tests/test_token_trees.rs","edition":"2018","doc":false,"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.103/tests/test_attribute.rs","edition":"2018","doc":false,"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.103/tests/test_parse_stream.rs","edition":"2018","doc":false,"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.103/tests/test_asyncness.rs","edition":"2018","doc":false,"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.103/tests/test_precedence.rs","edition":"2018","doc":false,"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.103/tests/test_item.rs","edition":"2018","doc":false,"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.103/tests/test_parse_buffer.rs","edition":"2018","doc":false,"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.103/tests/test_ident.rs","edition":"2018","doc":false,"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.103/tests/test_expr.rs","edition":"2018","doc":false,"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.103/tests/test_lit.rs","edition":"2018","doc":false,"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.103/tests/test_path.rs","edition":"2018","doc":false,"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.103/tests/test_derive_input.rs","edition":"2018","doc":false,"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.103/tests/test_stmt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zzz_stable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/tests/zzz_stable.rs","edition":"2018","doc":false,"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.103/tests/test_visibility.rs","edition":"2018","doc":false,"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.103/tests/test_should_parse.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"rust","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/benches/rust.rs","edition":"2018","required-features":["full","parsing"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/benches/file.rs","edition":"2018","required-features":["full","parsing"],"doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"clone-impls":[],"default":["derive","parsing","printing","clone-impls","proc-macro"],"derive":[],"extra-traits":[],"fold":[],"full":[],"parsing":[],"printing":["quote"],"proc-macro":["proc-macro2/proc-macro","quote/proc-macro"],"quote":["dep:quote"],"test":["syn-test-suite/all-features"],"visit":[],"visit-mut":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.103/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"targets":["x86_64-unknown-linux-gnu"],"rustdoc-args":["--cfg","doc_cfg"]}},"playground":{"features":["full","visit","visit-mut","fold","extra-traits"]}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers","parser-implementations"],"keywords":["macros","syn"],"readme":"README.md","repository":"https://github.com/dtolnay/syn","homepage":null,"documentation":"https://docs.rs/syn","edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"name":"sync_wrapper","version":"0.1.1","id":"sync_wrapper 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0","license_file":null,"description":"A tool for enlisting the compiler’s help in proving the absence of concurrency","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"sync_wrapper","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sync_wrapper-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sync_wrapper-0.1.1/Cargo.toml","metadata":null,"publish":null,"authors":["Actyx AG "],"categories":["concurrency"],"keywords":["concurrency"],"readme":"README.md","repository":"https://github.com/Actyx/sync_wrapper","homepage":"https://docs.rs/sync_wrapper","documentation":"https://docs.rs/sync_wrapper","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tempfile","version":"3.3.0","id":"tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A library for managing temporary files and directories.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fastrand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"remove_dir_all","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.27","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(unix, target_os = \"wasi\"))","registry":null},{"name":"redox_syscall","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(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":["fileapi","handleapi","winbase"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tempfile","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tempdir","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempdir.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tempfile","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempfile.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"spooled","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/spooled.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"namedtempfile","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/namedtempfile.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"nightly":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Allen ","The Rust Project Developers","Ashley Mannix ","Jason White "],"categories":[],"keywords":["tempfile","tmpfile","filesystem"],"readme":"README.md","repository":"https://github.com/Stebalien/tempfile","homepage":"http://stebalien.com/projects/tempfile-rs","documentation":"https://docs.rs/tempfile","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"termcolor","version":"1.1.3","id":"termcolor 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"Unlicense OR MIT","license_file":null,"description":"A simple cross platform library for writing colored text to a terminal.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"winapi-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"termcolor","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.3/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Gallant "],"categories":[],"keywords":["windows","win","color","ansi","console"],"readme":"README.md","repository":"https://github.com/BurntSushi/termcolor","homepage":"https://github.com/BurntSushi/termcolor","documentation":"https://docs.rs/termcolor","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"thiserror","version":"1.0.37","id":"thiserror 1.0.37 (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.37","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.65","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.49","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.37/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_from","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.37/tests/test_from.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compiletest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.37/tests/compiletest.rs","edition":"2018","doc":false,"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.37/tests/test_backtrace.rs","edition":"2018","doc":false,"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.37/tests/test_source.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.37/tests/test_generics.rs","edition":"2018","doc":false,"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.37/tests/test_deprecated.rs","edition":"2018","doc":false,"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.37/tests/test_display.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_option","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.37/tests/test_option.rs","edition":"2018","doc":false,"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.37/tests/test_expr.rs","edition":"2018","doc":false,"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.37/tests/test_path.rs","edition":"2018","doc":false,"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.37/tests/test_lints.rs","edition":"2018","doc":false,"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.37/tests/test_transparent.rs","edition":"2018","doc":false,"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.37/tests/test_error.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.37/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.37/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["rust-patterns"],"keywords":["error","error-handling","derive"],"readme":"README.md","repository":"https://github.com/dtolnay/thiserror","homepage":null,"documentation":"https://docs.rs/thiserror","edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"name":"thiserror-impl","version":"1.0.37","id":"thiserror-impl 1.0.37 (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.37/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.37/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,"default_run":null,"rust_version":"1.31"},{"name":"time","version":"0.1.44","id":"time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Utilities for working with time-related functions in Rust.\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.69","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"winapi","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":["std","processthreadsapi","winbase"],"target":null,"registry":null},{"name":"wasi","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":"cfg(target_os = \"wasi\")","registry":null},{"name":"winapi","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":["std","minwinbase","minwindef","ntdef","profileapi","sysinfoapi","timezoneapi"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.44/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"rustc-serialize":["dep:rustc-serialize"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.44/Cargo.toml","metadata":null,"publish":null,"authors":["The Rust Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/time-rs/time","homepage":"https://github.com/time-rs/time","documentation":"https://docs.rs/time/~0.1","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"time","version":"0.3.16","id":"time 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.4","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.126","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"time-core","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":"time-macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.2.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck_macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.4","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.126","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["derive"],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.68","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.126","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.68","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(__ui_tests)","registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.58","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))","registry":null},{"name":"criterion","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":"cfg(bench)","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.98","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_family = \"unix\")","registry":null},{"name":"num_threads","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_family = \"unix\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.16/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.16/../tests/main.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"benchmarks","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.16/../benchmarks/main.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"alloc":["serde?/alloc"],"default":["std"],"formatting":["dep:itoa","std","time-macros?/formatting"],"large-dates":["time-macros?/large-dates"],"local-offset":["std"],"macros":["dep:time-macros"],"parsing":["time-macros?/parsing"],"quickcheck":["dep:quickcheck","alloc"],"rand":["dep:rand"],"serde":["dep:serde","time-macros?/serde"],"serde-human-readable":["serde","formatting","parsing"],"serde-well-known":["serde","formatting","parsing"],"std":["alloc"],"wasm-bindgen":["dep:js-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.16/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"targets":["x86_64-unknown-linux-gnu"],"rustdoc-args":["--cfg","__time_03_docs"]}}},"publish":null,"authors":["Jacob Pratt ","Time contributors"],"categories":["date-and-time","no-std","parser-implementations","value-formatting"],"keywords":["date","time","calendar","duration"],"readme":"README.md","repository":"https://github.com/time-rs/time","homepage":"https://time-rs.github.io","documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":"1.60.0"},{"name":"time-core","version":"0.1.0","id":"time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"This crate is an implementation detail and should not be relied upon directly.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"time-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["Jacob Pratt ","Time contributors"],"categories":["date-and-time"],"keywords":["date","time","calendar","duration"],"readme":null,"repository":"https://github.com/time-rs/time","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":"1.60.0"},{"name":"time-macros","version":"0.2.5","id":"time-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":" Procedural macros for the time crate.\n This crate is an implementation detail and should not be relied upon directly.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"time-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"time-macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"formatting":[],"large-dates":[],"parsing":[],"serde":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.5/Cargo.toml","metadata":null,"publish":null,"authors":["Jacob Pratt ","Time contributors"],"categories":["date-and-time"],"keywords":["date","time","calendar","duration"],"readme":null,"repository":"https://github.com/time-rs/time","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":"1.60.0"},{"name":"tinyvec","version":"1.6.0","id":"tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Zlib OR Apache-2.0 OR MIT","license_file":null,"description":"`tinyvec` provides 100% safe vec-like data structures.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"arbitrary","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tinyvec_macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tinyvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/tinyvec.rs","edition":"2018","required-features":["alloc","std"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"arrayvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/arrayvec.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/macros.rs","edition":"2018","required-features":["alloc"],"doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"smallvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/smallvec.rs","edition":"2018","required-features":["alloc","real_blackbox"],"doc":false,"doctest":false,"test":false}],"features":{"alloc":["tinyvec_macros"],"arbitrary":["dep:arbitrary"],"default":[],"experimental_write_impl":[],"grab_spare_slice":[],"nightly_slice_partition_dedup":[],"real_blackbox":["criterion/real_blackbox"],"rustc_1_40":[],"rustc_1_55":["rustc_1_40"],"rustc_1_57":["rustc_1_55"],"serde":["dep:serde"],"std":["alloc"],"tinyvec_macros":["dep:tinyvec_macros"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/Cargo.toml","metadata":{"docs":{"rs":{"features":["alloc","std","grab_spare_slice","rustc_1_40","rustc_1_55","serde"],"rustdoc-args":["--cfg","docs_rs"]}},"playground":{"features":["alloc","std","grab_spare_slice","rustc_1_40","rustc_1_55","serde"]}},"publish":null,"authors":["Lokathor "],"categories":["data-structures","no-std"],"keywords":["vec","no_std","no-std"],"readme":"README.md","repository":"https://github.com/Lokathor/tinyvec","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tinyvec_macros","version":"0.1.0","id":"tinyvec_macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0 OR Zlib","license_file":null,"description":"Some macros for tiny containers","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.0/Cargo.toml","metadata":null,"publish":null,"authors":["Soveu "],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/Soveu/tinyvec_macros","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tokio","version":"1.21.2","id":"tokio 1.21.2 (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":"^1.0.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.8.4","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.12.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.2.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.7.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-stream","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":"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":"mockall","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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-stream","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":"tokio-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"autocfg","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1","kind":"build","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.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), not(target_os = \"wasi\")))","registry":null},{"name":"loom","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":["futures","checkpoint"],"target":"cfg(loom)","registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\")))","registry":null},{"name":"socket2","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":["all"],"target":"cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))","registry":null},{"name":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))","registry":null},{"name":"socket2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))","registry":null},{"name":"mio-aio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["tokio"],"target":"cfg(target_os = \"freebsd\")","registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.25","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":"cfg(tokio_unstable)","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":"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":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.42","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"nix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.24","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["fs","socket"],"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":true,"uses_default_features":false,"features":["std"],"target":"cfg(windows)","registry":null},{"name":"ntapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.6","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_poll_aio","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_poll_aio.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_cred","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/uds_cred.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_copy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/fs_copy.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_write_buf.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_issue_42","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/process_issue_42.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_join_set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_join_set.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_rename_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/macros_rename_test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_all_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_write_all_buf.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"join_handle_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/join_handle_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_util_empty","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_util_empty.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_select","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/macros_select.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/rt_basic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_into_std","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_into_std.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/uds_split.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_lookup_host","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/net_lookup_host.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_read_line.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/time_rt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_exact","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_read_exact.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/fs.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/time_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/rt_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_bind_resource","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/net_bind_resource.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_buf_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_buf_reader.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_errors","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_errors.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_split.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_no_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_no_rt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/macros_pin.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_until","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_read_until.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_int","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_write_int.rs","edition":"2018","doc":false,"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-1.21.2/tests/io_read_to_end.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_blocking","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_blocking.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"udp","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/udp.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_async_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_async_read.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_chain.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_driver","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_driver.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_lines","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_lines.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_multi_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_multi_rt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_file","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/fs_file.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_local_set","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_local_set.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_once_cell","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_once_cell.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_issue_2174","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/process_issue_2174.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_mem_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_mem_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_abort","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_abort.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_peek","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_peek.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_interval","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/time_interval.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mutex_owned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_mutex_owned.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_read_buf.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_write.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_async_fd","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_async_fd.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_smoke","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/process_smoke.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_try_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/macros_try_join.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_buf_writer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_buf_writer.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_metrics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/rt_metrics.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_socket","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_socket.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_clock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/test_clock.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_signal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_drop_signal.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_threaded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/rt_threaded.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mutex","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_mutex.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unwindsafe","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/unwindsafe.rs","edition":"2018","doc":false,"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-1.21.2/tests/io_read_to_string.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_barrier","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_barrier.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/macros_test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_raw_handle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/process_raw_handle.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"net_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/net_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_mpsc.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/no_rt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_semaphore_owned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_semaphore_owned.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_copy","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_copy.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_datagram","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/uds_datagram.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_rt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_drop_rt.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_semaphore","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_semaphore.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_dir","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/fs_dir.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"_require_full","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/_require_full.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_driver_drop","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_driver_drop.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"async_send_sync","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/async_send_sync.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_shutdown","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_shutdown.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_connect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_connect.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_write_all","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_write_all.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_split.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_read.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"named_pipe","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/named_pipe.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_local","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_local.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_notify_both","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_notify_both.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_ctrl_c","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_ctrl_c.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_into_split","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_into_split.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/task_builder.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_pause","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/time_pause.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_sleep","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/time_sleep.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"process_arg0","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/process_arg0.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/macros_join.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_handle_block_on","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/rt_handle_block_on.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_oneshot","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_oneshot.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_twice","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_twice.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_drop_recv","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_drop_recv.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"signal_usr1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/signal_usr1.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"rt_common","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/rt_common.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"uds_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/uds_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"buffered","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/buffered.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_rwlock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_rwlock.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_take","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_take.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_watch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_watch.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_broadcast","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_broadcast.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_accept","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_accept.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_copy_bidirectional","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_copy_bidirectional.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_notify","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/sync_notify.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_fill_buf","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/io_fill_buf.rs","edition":"2018","doc":false,"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-1.21.2/tests/process_kill_on_drop.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fs_link","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/fs_link.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/time_timeout.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tcp_echo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/tests/tcp_echo.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"bytes":["dep:bytes"],"default":[],"fs":[],"full":["fs","io-util","io-std","macros","net","parking_lot","process","rt","rt-multi-thread","signal","sync","time"],"io-std":[],"io-util":["memchr","bytes"],"libc":["dep:libc"],"macros":["tokio-macros"],"memchr":["dep:memchr"],"mio":["dep:mio"],"net":["libc","mio/os-poll","mio/os-ext","mio/net","socket2","winapi/fileapi","winapi/handleapi","winapi/namedpipeapi","winapi/winbase","winapi/winnt","winapi/minwindef","winapi/accctrl","winapi/aclapi"],"num_cpus":["dep:num_cpus"],"parking_lot":["dep:parking_lot"],"process":["bytes","libc","mio/os-poll","mio/os-ext","mio/net","signal-hook-registry","winapi/handleapi","winapi/minwindef","winapi/processthreadsapi","winapi/threadpoollegacyapiset","winapi/winbase","winapi/winnt"],"rt":[],"rt-multi-thread":["num_cpus","rt"],"signal":["libc","mio/os-poll","mio/net","mio/os-ext","signal-hook-registry","winapi/consoleapi","winapi/wincon","winapi/minwindef"],"signal-hook-registry":["dep:signal-hook-registry"],"socket2":["dep:socket2"],"stats":[],"sync":[],"test-util":["rt","sync","time"],"time":[],"tokio-macros":["dep:tokio-macros"],"tracing":["dep:tracing"],"winapi":["dep:winapi"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.21.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs","--cfg","tokio_unstable"],"rustc-args":["--cfg","tokio_unstable"]}},"playground":{"features":["full","test-util"]}},"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":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49"},{"name":"tokio-io-timeout","version":"1.2.0","id":"tokio-io-timeout 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Tokio wrappers which apply timeouts to IO operations","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["time"],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio-io-timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-io-timeout-1.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-io-timeout-1.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/sfackler/tokio-io-timeout","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tokio-macros","version":"1.8.0","id":"tokio-macros 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Tokio's proc macros.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.7","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.56","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"tokio","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":["full"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tokio-macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-macros-1.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-macros-1.8.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Tokio Contributors "],"categories":["asynchronous"],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/tokio","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49"},{"name":"tokio-retry","version":"0.3.0","id":"tokio-retry 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Extensible, asynchronous retry behaviours for futures/tokio","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"pin-project","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["time"],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio-retry","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-retry-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"future","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-retry-0.3.0/tests/future.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-retry-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Sam Rijs "],"categories":[],"keywords":["futures","tokio","retry","exponential","backoff"],"readme":"README.md","repository":"https://github.com/srijs/rust-tokio-retry","homepage":null,"documentation":"https://docs.rs/tokio-retry","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tokio-rustls","version":"0.23.4","id":"tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Asynchronous TLS/SSL streams for Tokio using Rustls.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.20","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"webpki","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":"futures-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"rustls-pemfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"webpki-roots","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio-rustls","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.23.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"badssl","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.23.4/tests/badssl.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.23.4/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"utils","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.23.4/tests/utils.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"early-data","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.23.4/tests/early-data.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"dangerous_configuration":["rustls/dangerous_configuration"],"default":["logging","tls12"],"early-data":[],"logging":["rustls/logging"],"tls12":["rustls/tls12"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.23.4/Cargo.toml","metadata":null,"publish":null,"authors":["quininer kel "],"categories":["asynchronous","cryptography","network-programming"],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/tls","homepage":"https://github.com/tokio-rs/tls","documentation":"https://docs.rs/tokio-rustls","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tokio-stream","version":"0.1.11","id":"tokio-stream 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Utilities to work with `Stream` and `tokio`.\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.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.8.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["sync"],"target":null,"registry":null},{"name":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-stream","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":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"parking_lot","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","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":["full","test-util"],"target":null,"registry":null},{"name":"proptest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(target_arch = \"wasm32\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio-stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_pending","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_pending.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"watch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/watch.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_empty","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_empty.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_timeout.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_fuse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_fuse.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"chunks_timeout","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/chunks_timeout.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_once","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_once.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_collect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_collect.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_chain","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_chain.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"async_send_sync","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/async_send_sync.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_stream_map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_stream_map.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_iter.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stream_merge","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/stream_merge.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_throttle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/tests/time_throttle.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"default":["time"],"fs":["tokio/fs"],"io-util":["tokio/io-util"],"net":["tokio/net"],"signal":["tokio/signal"],"sync":["tokio/sync","tokio-util"],"time":["tokio/time"],"tokio-util":["dep:tokio-util"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-stream-0.1.11/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"],"rustc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Tokio Contributors "],"categories":["asynchronous"],"keywords":[],"readme":null,"repository":"https://github.com/tokio-rs/tokio","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49"},{"name":"tokio-util","version":"0.7.4","id":"tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Additional utilities for working with Tokio.\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":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-io","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":"futures-sink","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":"futures-util","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":"pin-project-lite","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":"slab","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.21.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["sync"],"target":null,"registry":null},{"name":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.25","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"async-stream","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":"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":[],"target":null,"registry":null},{"name":"futures-test","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":"parking_lot","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","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":["full"],"target":null,"registry":null},{"name":"tokio-stream","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":"tokio-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(tokio_unstable)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tokio-util","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sync_cancellation_token","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/sync_cancellation_token.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_stream_reader","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/io_stream_reader.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"framed_write","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/framed_write.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"udp","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/udp.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"length_delimited","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/length_delimited.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"time_delay_queue","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/time_delay_queue.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"task_join_map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/task_join_map.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mpsc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/mpsc.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"framed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/framed.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"framed_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/framed_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"_require_full","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/_require_full.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"codecs","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/codecs.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"reusable_box","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/reusable_box.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"framed_read","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/framed_read.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"spawn_pinned","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/spawn_pinned.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_sync_bridge","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/io_sync_bridge.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"context","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/context.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"io_reader_stream","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/io_reader_stream.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"poll_semaphore","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/tests/poll_semaphore.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"__docs_rs":["futures-util"],"codec":["tracing"],"compat":["futures-io"],"default":[],"full":["codec","compat","io-util","time","net","rt"],"futures-io":["dep:futures-io"],"futures-util":["dep:futures-util"],"hashbrown":["dep:hashbrown"],"io":[],"io-util":["io","tokio/rt","tokio/io-util"],"net":["tokio/net"],"rt":["tokio/rt","tokio/sync","futures-util","hashbrown"],"slab":["dep:slab"],"time":["tokio/time","slab"],"tracing":["dep:tracing"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.7.4/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs","--cfg","tokio_unstable"],"rustc-args":["--cfg","docsrs","--cfg","tokio_unstable"]}}},"publish":null,"authors":["Tokio Contributors "],"categories":["asynchronous"],"keywords":[],"readme":"README.md","repository":"https://github.com/tokio-rs/tokio","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49"},{"name":"tonic","version":"0.8.2","id":"tonic 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"async-stream","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":"async-trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.13","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"axum","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5.15","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bytes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"flate2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":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","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"futures-util","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":"h2","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":"http","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":"http-body","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14.14","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"hyper-timeout","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":"percent-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project","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":"prost-derive","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":"prost","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":null,"rename":"prost1","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustls-native-certs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustls-pemfile","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["net"],"target":null,"registry":null},{"name":"tokio-rustls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.23.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-stream","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":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["codec"],"target":null,"registry":null},{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.7","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["balance","buffer","discover","limit","load","make","timeout","util"],"target":null,"registry":null},{"name":"tower-layer","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":"tower-service","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-futures","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":"webpki-roots","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bencher","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck_macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["rt","macros"],"target":null,"registry":null},{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tonic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tonic-0.8.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"decode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tonic-0.8.2/benches/decode.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"async-trait":["dep:async-trait"],"axum":["dep:axum"],"channel":["h2","hyper","tokio","tower","tracing-futures","tokio/macros","tokio/time","hyper-timeout"],"codegen":["async-trait"],"default":["transport","codegen","prost"],"flate2":["dep:flate2"],"gzip":["flate2"],"h2":["dep:h2"],"hyper":["dep:hyper"],"hyper-timeout":["dep:hyper-timeout"],"prost":["prost1","prost-derive"],"prost-derive":["dep:prost-derive"],"prost1":["dep:prost1"],"rustls-native-certs":["dep:rustls-native-certs"],"rustls-pemfile":["dep:rustls-pemfile"],"tls":["rustls-pemfile","transport","tokio-rustls"],"tls-roots":["tls-roots-common","rustls-native-certs"],"tls-roots-common":["tls"],"tls-webpki-roots":["tls-roots-common","webpki-roots"],"tokio":["dep:tokio"],"tokio-rustls":["dep:tokio-rustls"],"tower":["dep:tower"],"tracing-futures":["dep:tracing-futures"],"transport":["axum","channel"],"webpki-roots":["dep:webpki-roots"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tonic-0.8.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Lucio Franco "],"categories":["web-programming","network-programming","asynchronous"],"keywords":["rpc","grpc","async","futures","protobuf"],"readme":"README.md","repository":"https://github.com/hyperium/tonic","homepage":"https://github.com/hyperium/tonic","documentation":"https://docs.rs/tonic/0.8.2/tonic/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tonic-build","version":"0.8.2","id":"tonic-build 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Codegen module of `tonic` gRPC implementation.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"prettyplease","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":"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":"prost-build","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":"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":["lib"],"crate_types":["lib"],"name":"tonic-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tonic-build-0.8.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"cleanup-markdown":["prost-build/cleanup-markdown"],"default":["transport","prost"],"prost":["prost-build"],"prost-build":["dep:prost-build"],"transport":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tonic-build-0.8.2/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Lucio Franco "],"categories":["network-programming","asynchronous"],"keywords":["rpc","grpc","async","codegen","protobuf"],"readme":"README.md","repository":"https://github.com/hyperium/tonic","homepage":"https://github.com/hyperium/tonic","documentation":"https://docs.rs/tonic-build/0.8.2/tonic_build/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tower","version":"0.4.13","id":"tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Tower is a library of modular and reusable components for building robust\nclients and servers.\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","kind":null,"rename":null,"optional":true,"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","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["alloc"],"target":null,"registry":null},{"name":"hdrhistogram","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^7.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":"pin-project","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":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["small_rng"],"target":null,"registry":null},{"name":"slab","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["sync"],"target":null,"registry":null},{"name":"tokio-stream","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tower-layer","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":"tower-service","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["std"],"target":null,"registry":null},{"name":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hdrhistogram","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^7.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"http","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":"lazy_static","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["macros","sync","test-util","rt-multi-thread"],"target":null,"registry":null},{"name":"tokio-stream","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":"tokio-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tower-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-subscriber","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["fmt","ansi"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tower","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"tower-balance","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/examples/tower-balance.rs","edition":"2018","required-features":["full"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"spawn_ready","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/spawn_ready/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"limit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/limit/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ready_cache","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/ready_cache/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"hedge","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/hedge/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"util","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/util/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"steer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/steer/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"support","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/support.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/buffer/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"retry","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/retry/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"load_shed","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/load_shed/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"balance","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/balance/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"builder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/tests/builder.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"__common":["futures-core","pin-project-lite"],"balance":["discover","load","ready-cache","make","rand","slab"],"buffer":["__common","tokio/sync","tokio/rt","tokio-util","tracing"],"default":["log"],"discover":["__common"],"filter":["__common","futures-util"],"full":["balance","buffer","discover","filter","hedge","limit","load","load-shed","make","ready-cache","reconnect","retry","spawn-ready","steer","timeout","util"],"futures-core":["dep:futures-core"],"futures-util":["dep:futures-util"],"hdrhistogram":["dep:hdrhistogram"],"hedge":["util","filter","futures-util","hdrhistogram","tokio/time","tracing"],"indexmap":["dep:indexmap"],"limit":["__common","tokio/time","tokio/sync","tokio-util","tracing"],"load":["__common","tokio/time","tracing"],"load-shed":["__common"],"log":["tracing/log"],"make":["futures-util","pin-project-lite","tokio/io-std"],"pin-project":["dep:pin-project"],"pin-project-lite":["dep:pin-project-lite"],"rand":["dep:rand"],"ready-cache":["futures-core","futures-util","indexmap","tokio/sync","tracing","pin-project-lite"],"reconnect":["make","tokio/io-std","tracing"],"retry":["__common","tokio/time"],"slab":["dep:slab"],"spawn-ready":["__common","futures-util","tokio/sync","tokio/rt","util","tracing"],"steer":[],"timeout":["pin-project-lite","tokio/time"],"tokio":["dep:tokio"],"tokio-stream":["dep:tokio-stream"],"tokio-util":["dep:tokio-util"],"tracing":["dep:tracing"],"util":["__common","futures-util","pin-project"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.13/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["full"]}},"publish":null,"authors":["Tower Maintainers "],"categories":["asynchronous","network-programming"],"keywords":["io","async","non-blocking","futures","service"],"readme":"README.md","repository":"https://github.com/tower-rs/tower","homepage":"https://github.com/tower-rs/tower","documentation":"https://docs.rs/tower/0.4.13","edition":"2018","links":null,"default_run":null,"rust_version":"1.49.0"},{"name":"tower-http","version":"0.3.4","id":"tower-http 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Tower middleware and utilities for HTTP clients and servers","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"async-compression","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["tokio"],"target":null,"registry":null},{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.13","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bitflags","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.3.1","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":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","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.14","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"http","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http-body","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http-range-header","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":"httpdate","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":"iri-string","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":"mime","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":"mime_guess","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"percent-encoding","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.7","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tokio-util","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["io"],"target":null,"registry":null},{"name":"tower","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":"tower-layer","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":"tower-service","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"uuid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["v4"],"target":null,"registry":null},{"name":"brotli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bytes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"flate2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hyper","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["buffer","util","retry","make","timeout"],"target":null,"registry":null},{"name":"tracing-subscriber","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":"uuid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["v4"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tower-http","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-http-0.3.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"add-extension":[],"async-compression":["dep:async-compression"],"auth":["base64"],"base64":["dep:base64"],"catch-panic":["tracing","futures-util/std"],"compression-br":["async-compression/brotli","tokio-util","tokio"],"compression-deflate":["async-compression/zlib","tokio-util","tokio"],"compression-full":["compression-br","compression-deflate","compression-gzip"],"compression-gzip":["async-compression/gzip","tokio-util","tokio"],"cors":[],"decompression-br":["async-compression/brotli","tokio-util","tokio"],"decompression-deflate":["async-compression/zlib","tokio-util","tokio"],"decompression-full":["decompression-br","decompression-deflate","decompression-gzip"],"decompression-gzip":["async-compression/gzip","tokio-util","tokio"],"default":[],"follow-redirect":["iri-string","tower/util"],"fs":["tokio/fs","tokio-util/io","tokio/io-util","mime_guess","mime","percent-encoding","httpdate","set-status","futures-util/alloc"],"full":["add-extension","auth","catch-panic","compression-full","cors","decompression-full","follow-redirect","fs","limit","map-request-body","map-response-body","metrics","propagate-header","redirect","request-id","sensitive-headers","set-header","set-status","timeout","trace","util"],"httpdate":["dep:httpdate"],"iri-string":["dep:iri-string"],"limit":[],"map-request-body":[],"map-response-body":[],"metrics":["tokio/time"],"mime":["dep:mime"],"mime_guess":["dep:mime_guess"],"percent-encoding":["dep:percent-encoding"],"propagate-header":[],"redirect":[],"request-id":["uuid"],"sensitive-headers":[],"set-header":[],"set-status":[],"timeout":["tokio/time"],"tokio":["dep:tokio"],"tokio-util":["dep:tokio-util"],"tower":["dep:tower"],"trace":["tracing"],"tracing":["dep:tracing"],"util":["tower"],"uuid":["dep:uuid"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-http-0.3.4/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}},"playground":{"features":["full"]}},"publish":null,"authors":["Tower Maintainers "],"categories":["asynchronous","network-programming","web-programming"],"keywords":["io","async","futures","service","http"],"readme":"../README.md","repository":"https://github.com/tower-rs/tower-http","homepage":"https://github.com/tower-rs/tower-http","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.51"},{"name":"tower-layer","version":"0.3.2","id":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Decorates a `Service` to allow easy composition between `Service`s.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"tower","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tower-service","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":"tower-layer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-layer-0.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-layer-0.3.2/Cargo.toml","metadata":null,"publish":null,"authors":["Tower Maintainers "],"categories":["asynchronous","network-programming"],"keywords":[],"readme":"README.md","repository":"https://github.com/tower-rs/tower","homepage":"https://github.com/tower-rs/tower","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tower-service","version":"0.3.2","id":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Trait representing an asynchronous, request / response based, client or server.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"http","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":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["macros","time"],"target":null,"registry":null},{"name":"tower-layer","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":"tower-service","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.2/Cargo.toml","metadata":null,"publish":null,"authors":["Tower Maintainers "],"categories":["asynchronous","network-programming"],"keywords":[],"readme":"README.md","repository":"https://github.com/tower-rs/tower","homepage":"https://github.com/tower-rs/tower","documentation":"https://docs.rs/tower-service/0.3.2","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"tracing","version":"0.1.37","id":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Application-level tracing 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":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.17","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"pin-project-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-attributes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.23","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.30","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.6","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.17","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"max_level_hint","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/max_level_hint.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"register_callsite_deadlock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/register_callsite_deadlock.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_incompatible_concat","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/macros_incompatible_concat.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"scoped_clobbers_default","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/scoped_clobbers_default.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros_redefined_core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/macros_redefined_core.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"enabled","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/enabled.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"no_subscriber","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/no_subscriber.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"future_send","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/future_send.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macro_imports","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/macro_imports.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filters_are_reevaluated_for_different_call_sites","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/filters_are_reevaluated_for_different_call_sites.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filters_are_not_reevaluated_for_the_same_span","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/filters_are_not_reevaluated_for_the_same_span.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"event","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/event.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"multiple_max_level_hints","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/multiple_max_level_hints.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filters_dont_leak","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/filters_dont_leak.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"span","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/span.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"filter_caching_is_lexically_scoped","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/filter_caching_is_lexically_scoped.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/macros.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"subscriber","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/tests/subscriber.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"baseline","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/baseline.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"dispatch_get_clone","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/dispatch_get_clone.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"dispatch_get_ref","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/dispatch_get_ref.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"empty_span","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/empty_span.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"enter_span","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/enter_span.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"event","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/event.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"span_fields","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/span_fields.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"span_no_fields","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/span_no_fields.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"span_repeated","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/span_repeated.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/benches/shared.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"async-await":[],"attributes":["tracing-attributes"],"default":["std","attributes"],"log":["dep:log"],"log-always":["log"],"max_level_debug":[],"max_level_error":[],"max_level_info":[],"max_level_off":[],"max_level_trace":[],"max_level_warn":[],"release_max_level_debug":[],"release_max_level_error":[],"release_max_level_info":[],"release_max_level_off":[],"release_max_level_trace":[],"release_max_level_warn":[],"std":["tracing-core/std"],"tracing-attributes":["dep:tracing-attributes"],"valuable":["tracing-core/valuable"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.37/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs","--cfg","tracing_unstable"],"rustc-args":["--cfg","tracing_unstable"]}}},"publish":null,"authors":["Eliza Weisman ","Tokio Contributors "],"categories":["development-tools::debugging","development-tools::profiling","asynchronous","no-std"],"keywords":["logging","tracing","metrics","async"],"readme":"README.md","repository":"https://github.com/tokio-rs/tracing","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49.0"},{"name":"tracing-attributes","version":"0.1.23","id":"tracing-attributes 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Procedural macro attributes for automatically instrumenting functions.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","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.98","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["full","parsing","printing","visit","visit-mut","clone-impls","extra-traits","proc-macro"],"target":null,"registry":null},{"name":"async-trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.56","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.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.35","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.28","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-subscriber","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["env-filter"],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.64","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tracing-attributes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fields","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/fields.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"destructuring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/destructuring.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"err","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/err.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"instrument","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/instrument.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"levels","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/levels.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"async_fn","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/async_fn.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ui","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/ui.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"names","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/names.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parents","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/parents.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"targets","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/targets.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ret","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/ret.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"follows_from","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/tests/follows_from.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"async-await":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-attributes-0.1.23/Cargo.toml","metadata":null,"publish":null,"authors":["Tokio Contributors ","Eliza Weisman ","David Barsky "],"categories":["development-tools::debugging","development-tools::profiling","asynchronous"],"keywords":["logging","tracing","macro","instrument","log"],"readme":"README.md","repository":"https://github.com/tokio-rs/tracing","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49.0"},{"name":"tracing-core","version":"0.1.30","id":"tracing-core 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Core primitives for application-level tracing.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.13.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"valuable","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":"cfg(tracing_unstable)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tracing-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.30/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"dispatch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.30/tests/dispatch.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"global_dispatch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.30/tests/global_dispatch.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.30/tests/macros.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"default":["std","valuable/std"],"once_cell":["dep:once_cell"],"std":["once_cell"],"valuable":["dep:valuable"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.30/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs","--cfg","tracing_unstable"],"rustc-args":["--cfg","tracing_unstable"]}}},"publish":null,"authors":["Tokio Contributors "],"categories":["development-tools::debugging","development-tools::profiling","asynchronous"],"keywords":["logging","tracing","profiling"],"readme":"README.md","repository":"https://github.com/tokio-rs/tracing","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49.0"},{"name":"tracing-futures","version":"0.2.5","id":"tracing-futures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Utilities for instrumenting `futures` with `tracing`.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"futures","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":"futures-task","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":"futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":"futures_01","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","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-executor","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":"tracing","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.22","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tracing-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"tracing-futures","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"support","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.5/tests/support.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"std_future","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.5/tests/std_future.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"default":["std-future","std"],"futures":["dep:futures"],"futures-01":["futures_01","std"],"futures-03":["std-future","futures","futures-task","std"],"futures-task":["dep:futures-task"],"futures_01":["dep:futures_01"],"pin-project":["dep:pin-project"],"std":["tracing/std"],"std-future":["pin-project"],"tokio":["dep:tokio"],"tokio-executor":["dep:tokio-executor"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.5/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["Eliza Weisman ","Tokio Contributors "],"categories":["development-tools::debugging","development-tools::profiling","asynchronous"],"keywords":["logging","profiling","tracing","futures","async"],"readme":"README.md","repository":"https://github.com/tokio-rs/tracing","homepage":"https://tokio.rs","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"try-lock","version":"0.2.3","id":"try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A lightweight atomic lock.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"try-lock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.3/Cargo.toml","metadata":null,"publish":null,"authors":["Sean McArthur "],"categories":["concurrency","no-std"],"keywords":["lock","atomic"],"readme":"README.md","repository":"https://github.com/seanmonstar/try-lock","homepage":"https://github.com/seanmonstar/try-lock","documentation":"https://docs.rs/try-lock","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"unicode-bidi","version":"0.3.8","id":"unicode-bidi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR 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.2","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.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":">=0.8, <2.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"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.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"bench_it":[],"default":["std","hardcoded-data"],"flame":["dep:flame"],"flame_it":["flame","flamer"],"flamer":["dep:flamer"],"hardcoded-data":[],"serde":["dep:serde"],"std":[],"unstable":[],"with_serde":["serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.8/Cargo.toml","metadata":null,"publish":null,"authors":["The Servo Project Developers"],"categories":["no-std","encoding","text-processing"],"keywords":["rtl","unicode","text","layout","bidi"],"readme":"README.md","repository":"https://github.com/servo/unicode-bidi","homepage":null,"documentation":"https://docs.rs/unicode-bidi/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"unicode-ident","version":"1.0.5","id":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"(MIT OR Apache-2.0) AND Unicode-DFS-2016","license_file":null,"description":"Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"criterion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"fst","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["small_rng"],"target":null,"registry":null},{"name":"roaring","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ucd-trie","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"unicode-xid","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-ident","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"static_size","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.5/tests/static_size.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"compare","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.5/tests/compare.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"xid","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.5/benches/xid.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.5/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools::procedural-macro-helpers","no-std"],"keywords":["unicode","xid"],"readme":"README.md","repository":"https://github.com/dtolnay/unicode-ident","homepage":null,"documentation":"https://docs.rs/unicode-ident","edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"name":"unicode-normalization","version":"0.1.22","id":"unicode-normalization 0.1.22 (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":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["alloc"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-normalization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/src/lib.rs","edition":"2018","doc":true,"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.22/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/Cargo.toml","metadata":null,"publish":null,"authors":["kwantam ","Manish Goregaokar "],"categories":[],"keywords":["text","unicode","normalization","decomposition","recomposition"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-normalization","homepage":"https://github.com/unicode-rs/unicode-normalization","documentation":"https://docs.rs/unicode-normalization/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"unicode-width","version":"0.1.10","id":"unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-std","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":"std","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"unicode-width","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"bench":[],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":[],"no_std":[],"rustc-dep-of-std":["std","core","compiler_builtins"],"std":["dep:std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/Cargo.toml","metadata":null,"publish":null,"authors":["kwantam ","Manish Goregaokar "],"categories":[],"keywords":["text","width","unicode"],"readme":"README.md","repository":"https://github.com/unicode-rs/unicode-width","homepage":"https://github.com/unicode-rs/unicode-width","documentation":"https://unicode-rs.github.io/unicode-width","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"untrusted","version":"0.7.1","id":"untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"ISC","license_file":null,"description":"Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"untrusted","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1/src/untrusted.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1/Cargo.toml","metadata":null,"publish":null,"authors":["Brian Smith "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/briansmith/untrusted","homepage":null,"documentation":"https://briansmith.org/rustdoc/untrusted/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"url","version":"2.3.1","id":"url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"URL library for Rust, based on the WHATWG URL Standard","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"form_urlencoded","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.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.3.0","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.2.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":"debugger_test","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":"debugger_test_parser","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.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"debugger_visualizer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/debugger_visualizer.rs","edition":"2018","required-features":["debugger_visualizer"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"data","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/data.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/unit.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"parse_url","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/benches/parse_url.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"debugger_visualizer":[],"default":[],"expose_internals":[],"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/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,"default_run":null,"rust_version":"1.51"},{"name":"urlencoding","version":"2.1.2","id":"urlencoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A Rust library for doing URL percentage encoding.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/urlencoding-2.1.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/urlencoding-2.1.2/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/urlencoding-2.1.2/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["Kornel ","Bertram Truong "],"categories":["encoding","web-programming"],"keywords":["url","percent","escape","urlencode","urldecode"],"readme":"README.md","repository":"https://github.com/kornelski/rust_urlencoding","homepage":"https://lib.rs/urlencoding","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"want","version":"0.3.0","id":"want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Detect when another Future wants a result.","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":"try-lock","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-executor","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.0-alpha.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tokio-sync","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.0-alpha.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"want","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"throughput","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/benches/throughput.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Sean McArthur "],"categories":[],"keywords":["futures","channel","async"],"readme":"README.md","repository":"https://github.com/seanmonstar/want","homepage":null,"documentation":"https://docs.rs/want","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasi","version":"0.10.0+wasi-snapshot-preview1","id":"wasi 0.10.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.10.0+wasi-snapshot-preview1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std"],"rustc-dep-of-std":["compiler_builtins","core","rustc-std-workspace-alloc"],"rustc-std-workspace-alloc":["dep:rustc-std-workspace-alloc"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.10.0+wasi-snapshot-preview1/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std","wasm"],"keywords":["webassembly","wasm"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasi","homepage":null,"documentation":"https://docs.rs/wasi","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasi","version":"0.11.0+wasi-snapshot-preview1","id":"wasi 0.11.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.11.0+wasi-snapshot-preview1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std"],"rustc-dep-of-std":["compiler_builtins","core","rustc-std-workspace-alloc"],"rustc-std-workspace-alloc":["dep:rustc-std-workspace-alloc"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std","wasm"],"keywords":["webassembly","wasm"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasi","homepage":null,"documentation":"https://docs.rs/wasi","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasm-bindgen","version":"0.2.83","id":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Easy support for interacting between JS and Rust.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-macro","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.2.83","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.60","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.4.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.3.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test-crate-a","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":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test-crate-b","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":"cfg(target_arch = \"wasm32\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasm-bindgen","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"std-crate-no-std-dep","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/tests/std-crate-no-std-dep.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"must_use","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/tests/must_use.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"headless","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/tests/headless/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unwrap_throw","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/tests/unwrap_throw.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"non_wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/tests/non_wasm.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/tests/wasm/main.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["spans","std"],"enable-interning":["std"],"serde":["dep:serde"],"serde-serialize":["serde","serde_json","std"],"serde_json":["dep:serde_json"],"spans":["wasm-bindgen-macro/spans"],"std":[],"strict-macro":["wasm-bindgen-macro/strict-macro"],"xxx_debug_only_print_generated_code":["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.83/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde-serialize"]}}},"publish":null,"authors":["The wasm-bindgen Developers"],"categories":["wasm"],"keywords":[],"readme":"README.md","repository":"https://github.com/rustwasm/wasm-bindgen","homepage":"https://rustwasm.github.io/","documentation":"https://docs.rs/wasm-bindgen","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasm-bindgen-backend","version":"0.2.83","id":"wasm-bindgen-backend 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Backend code generation of the wasm-bindgen tool\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bumpalo","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syn","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["full"],"target":null,"registry":null},{"name":"wasm-bindgen-shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.2.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasm-bindgen-backend","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.83/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"extra-traits":["syn/extra-traits"],"spans":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.83/Cargo.toml","metadata":null,"publish":null,"authors":["The wasm-bindgen Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend","homepage":"https://rustwasm.github.io/wasm-bindgen/","documentation":"https://docs.rs/wasm-bindgen-backend","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasm-bindgen-futures","version":"0.4.33","id":"wasm-bindgen-futures 0.4.33 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Bridging the gap between Rust Futures and JavaScript Promises","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.8","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.60","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.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"futures-channel-preview","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0-alpha.18","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"futures-lite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.11.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"web-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.24","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["MessageEvent","Worker"],"target":"cfg(target_feature = \"atomics\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasm-bindgen-futures","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-futures-0.4.33/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-futures-0.4.33/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"futures-core":["dep:futures-core"],"futures-core-03-stream":["futures-core"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-futures-0.4.33/Cargo.toml","metadata":null,"publish":null,"authors":["The wasm-bindgen Developers"],"categories":[],"keywords":[],"readme":"./README.md","repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures","homepage":"https://rustwasm.github.io/wasm-bindgen/","documentation":"https://docs.rs/wasm-bindgen-futures","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasm-bindgen-macro","version":"0.2.83","id":"wasm-bindgen-macro 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-macro-support","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.2.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.83","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"wasm-bindgen-macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.83/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ui","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.83/tests/ui.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"spans":["wasm-bindgen-macro-support/spans"],"strict-macro":["wasm-bindgen-macro-support/strict-macro"],"xxx_debug_only_print_generated_code":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.83/Cargo.toml","metadata":null,"publish":null,"authors":["The wasm-bindgen Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro","homepage":"https://rustwasm.github.io/wasm-bindgen/","documentation":"https://docs.rs/wasm-bindgen","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasm-bindgen-macro-support","version":"0.2.83","id":"wasm-bindgen-macro-support 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"proc-macro2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"syn","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.67","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["visit","full"],"target":null,"registry":null},{"name":"wasm-bindgen-backend","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.2.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.2.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasm-bindgen-macro-support","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.83/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"extra-traits":["syn/extra-traits"],"spans":["wasm-bindgen-backend/spans"],"strict-macro":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.83/Cargo.toml","metadata":null,"publish":null,"authors":["The wasm-bindgen Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support","homepage":"https://rustwasm.github.io/wasm-bindgen/","documentation":"https://docs.rs/wasm-bindgen","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"wasm-bindgen-shared","version":"0.2.83","id":"wasm-bindgen-shared 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasm-bindgen-shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.83/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.83/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.83/Cargo.toml","metadata":null,"publish":null,"authors":["The wasm-bindgen Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared","homepage":"https://rustwasm.github.io/wasm-bindgen/","documentation":"https://docs.rs/wasm-bindgen-shared","edition":"2018","links":"wasm_bindgen","default_run":null,"rust_version":null},{"name":"web-sys","version":"0.3.60","id":"web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Bindings for all Web APIs, a procedurally generated crate from WebIDL\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.60","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.83","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-futures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.33","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"wasm32\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"web-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/web-sys-0.3.60/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/web-sys-0.3.60/tests/wasm/main.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"AbortController":[],"AbortSignal":["EventTarget"],"AddEventListenerOptions":[],"AesCbcParams":[],"AesCtrParams":[],"AesDerivedKeyParams":[],"AesGcmParams":[],"AesKeyAlgorithm":[],"AesKeyGenParams":[],"Algorithm":[],"AlignSetting":[],"AllowedBluetoothDevice":[],"AllowedUsbDevice":[],"AlphaOption":[],"AnalyserNode":["AudioNode","EventTarget"],"AnalyserOptions":[],"AngleInstancedArrays":[],"Animation":["EventTarget"],"AnimationEffect":[],"AnimationEvent":["Event"],"AnimationEventInit":[],"AnimationPlayState":[],"AnimationPlaybackEvent":["Event"],"AnimationPlaybackEventInit":[],"AnimationPropertyDetails":[],"AnimationPropertyValueDetails":[],"AnimationTimeline":[],"AssignedNodesOptions":[],"AttestationConveyancePreference":[],"Attr":["EventTarget","Node"],"AttributeNameValue":[],"AudioBuffer":[],"AudioBufferOptions":[],"AudioBufferSourceNode":["AudioNode","AudioScheduledSourceNode","EventTarget"],"AudioBufferSourceOptions":[],"AudioConfiguration":[],"AudioContext":["BaseAudioContext","EventTarget"],"AudioContextOptions":[],"AudioContextState":[],"AudioData":[],"AudioDataCopyToOptions":[],"AudioDataInit":[],"AudioDecoder":[],"AudioDecoderConfig":[],"AudioDecoderInit":[],"AudioDecoderSupport":[],"AudioDestinationNode":["AudioNode","EventTarget"],"AudioEncoder":[],"AudioEncoderConfig":[],"AudioEncoderInit":[],"AudioEncoderSupport":[],"AudioListener":[],"AudioNode":["EventTarget"],"AudioNodeOptions":[],"AudioParam":[],"AudioParamMap":[],"AudioProcessingEvent":["Event"],"AudioSampleFormat":[],"AudioScheduledSourceNode":["AudioNode","EventTarget"],"AudioStreamTrack":["EventTarget","MediaStreamTrack"],"AudioTrack":[],"AudioTrackList":["EventTarget"],"AudioWorklet":["Worklet"],"AudioWorkletGlobalScope":["WorkletGlobalScope"],"AudioWorkletNode":["AudioNode","EventTarget"],"AudioWorkletNodeOptions":[],"AudioWorkletProcessor":[],"AuthenticationExtensionsClientInputs":[],"AuthenticationExtensionsClientOutputs":[],"AuthenticatorAssertionResponse":["AuthenticatorResponse"],"AuthenticatorAttachment":[],"AuthenticatorAttestationResponse":["AuthenticatorResponse"],"AuthenticatorResponse":[],"AuthenticatorSelectionCriteria":[],"AuthenticatorTransport":[],"AutoKeyword":[],"AutocompleteInfo":[],"BarProp":[],"BaseAudioContext":["EventTarget"],"BaseComputedKeyframe":[],"BaseKeyframe":[],"BasePropertyIndexedKeyframe":[],"BasicCardRequest":[],"BasicCardResponse":[],"BasicCardType":[],"BatteryManager":["EventTarget"],"BeforeUnloadEvent":["Event"],"BinaryType":[],"BiquadFilterNode":["AudioNode","EventTarget"],"BiquadFilterOptions":[],"BiquadFilterType":[],"Blob":[],"BlobEvent":["Event"],"BlobEventInit":[],"BlobPropertyBag":[],"BlockParsingOptions":[],"Bluetooth":["EventTarget"],"BluetoothAdvertisingEvent":["Event"],"BluetoothAdvertisingEventInit":[],"BluetoothCharacteristicProperties":[],"BluetoothDataFilterInit":[],"BluetoothDevice":["EventTarget"],"BluetoothLeScanFilterInit":[],"BluetoothManufacturerDataMap":[],"BluetoothPermissionDescriptor":[],"BluetoothPermissionResult":["EventTarget","PermissionStatus"],"BluetoothPermissionStorage":[],"BluetoothRemoteGattCharacteristic":["EventTarget"],"BluetoothRemoteGattDescriptor":[],"BluetoothRemoteGattServer":[],"BluetoothRemoteGattService":["EventTarget"],"BluetoothServiceDataMap":[],"BluetoothUuid":[],"BoxQuadOptions":[],"BroadcastChannel":["EventTarget"],"BrowserElementDownloadOptions":[],"BrowserElementExecuteScriptOptions":[],"BrowserFeedWriter":[],"BrowserFindCaseSensitivity":[],"BrowserFindDirection":[],"ByteLengthQueuingStrategy":[],"Cache":[],"CacheBatchOperation":[],"CacheQueryOptions":[],"CacheStorage":[],"CacheStorageNamespace":[],"CanvasCaptureMediaStream":["EventTarget","MediaStream"],"CanvasGradient":[],"CanvasPattern":[],"CanvasRenderingContext2d":[],"CanvasWindingRule":[],"CaretChangedReason":[],"CaretPosition":[],"CaretStateChangedEventInit":[],"CdataSection":["CharacterData","EventTarget","Node","Text"],"ChannelCountMode":[],"ChannelInterpretation":[],"ChannelMergerNode":["AudioNode","EventTarget"],"ChannelMergerOptions":[],"ChannelPixelLayout":[],"ChannelPixelLayoutDataType":[],"ChannelSplitterNode":["AudioNode","EventTarget"],"ChannelSplitterOptions":[],"CharacterData":["EventTarget","Node"],"CheckerboardReason":[],"CheckerboardReport":[],"CheckerboardReportService":[],"ChromeFilePropertyBag":[],"ChromeWorker":["EventTarget","Worker"],"Client":[],"ClientQueryOptions":[],"ClientRectsAndTexts":[],"ClientType":[],"Clients":[],"Clipboard":["EventTarget"],"ClipboardEvent":["Event"],"ClipboardEventInit":[],"ClipboardItem":[],"ClipboardItemOptions":[],"ClipboardPermissionDescriptor":[],"CloseEvent":["Event"],"CloseEventInit":[],"CodecState":[],"CollectedClientData":[],"Comment":["CharacterData","EventTarget","Node"],"CompositeOperation":[],"CompositionEvent":["Event","UiEvent"],"CompositionEventInit":[],"ComputedEffectTiming":[],"ConnStatusDict":[],"ConnectionType":[],"ConsoleCounter":[],"ConsoleCounterError":[],"ConsoleEvent":[],"ConsoleInstance":[],"ConsoleInstanceOptions":[],"ConsoleLevel":[],"ConsoleLogLevel":[],"ConsoleProfileEvent":[],"ConsoleStackEntry":[],"ConsoleTimerError":[],"ConsoleTimerLogOrEnd":[],"ConsoleTimerStart":[],"ConstantSourceNode":["AudioNode","AudioScheduledSourceNode","EventTarget"],"ConstantSourceOptions":[],"ConstrainBooleanParameters":[],"ConstrainDomStringParameters":[],"ConstrainDoubleRange":[],"ConstrainLongRange":[],"ContextAttributes2d":[],"ConvertCoordinateOptions":[],"ConvolverNode":["AudioNode","EventTarget"],"ConvolverOptions":[],"Coordinates":[],"CountQueuingStrategy":[],"Credential":[],"CredentialCreationOptions":[],"CredentialRequestOptions":[],"CredentialsContainer":[],"Crypto":[],"CryptoKey":[],"CryptoKeyPair":[],"Csp":[],"CspPolicies":[],"CspReport":[],"CspReportProperties":[],"CssAnimation":["Animation","EventTarget"],"CssBoxType":[],"CssConditionRule":["CssGroupingRule","CssRule"],"CssCounterStyleRule":["CssRule"],"CssFontFaceRule":["CssRule"],"CssFontFeatureValuesRule":["CssRule"],"CssGroupingRule":["CssRule"],"CssImportRule":["CssRule"],"CssKeyframeRule":["CssRule"],"CssKeyframesRule":["CssRule"],"CssMediaRule":["CssConditionRule","CssGroupingRule","CssRule"],"CssNamespaceRule":["CssRule"],"CssPageRule":["CssRule"],"CssPseudoElement":[],"CssRule":[],"CssRuleList":[],"CssStyleDeclaration":[],"CssStyleRule":["CssRule"],"CssStyleSheet":["StyleSheet"],"CssStyleSheetParsingMode":[],"CssSupportsRule":["CssConditionRule","CssGroupingRule","CssRule"],"CssTransition":["Animation","EventTarget"],"CustomElementRegistry":[],"CustomEvent":["Event"],"CustomEventInit":[],"DataTransfer":[],"DataTransferItem":[],"DataTransferItemList":[],"DateTimeValue":[],"DecoderDoctorNotification":[],"DecoderDoctorNotificationType":[],"DedicatedWorkerGlobalScope":["EventTarget","WorkerGlobalScope"],"DelayNode":["AudioNode","EventTarget"],"DelayOptions":[],"DeviceAcceleration":[],"DeviceAccelerationInit":[],"DeviceLightEvent":["Event"],"DeviceLightEventInit":[],"DeviceMotionEvent":["Event"],"DeviceMotionEventInit":[],"DeviceOrientationEvent":["Event"],"DeviceOrientationEventInit":[],"DeviceProximityEvent":["Event"],"DeviceProximityEventInit":[],"DeviceRotationRate":[],"DeviceRotationRateInit":[],"DhKeyDeriveParams":[],"DirectionSetting":[],"Directory":[],"DisplayMediaStreamConstraints":[],"DisplayNameOptions":[],"DisplayNameResult":[],"DistanceModelType":[],"DnsCacheDict":[],"DnsCacheEntry":[],"DnsLookupDict":[],"Document":["EventTarget","Node"],"DocumentFragment":["EventTarget","Node"],"DocumentTimeline":["AnimationTimeline"],"DocumentTimelineOptions":[],"DocumentType":["EventTarget","Node"],"DomError":[],"DomException":[],"DomImplementation":[],"DomMatrix":["DomMatrixReadOnly"],"DomMatrixReadOnly":[],"DomParser":[],"DomPoint":["DomPointReadOnly"],"DomPointInit":[],"DomPointReadOnly":[],"DomQuad":[],"DomQuadInit":[],"DomQuadJson":[],"DomRect":["DomRectReadOnly"],"DomRectInit":[],"DomRectList":[],"DomRectReadOnly":[],"DomRequest":["EventTarget"],"DomRequestReadyState":[],"DomStringList":[],"DomStringMap":[],"DomTokenList":[],"DomWindowResizeEventDetail":[],"DragEvent":["Event","MouseEvent","UiEvent"],"DragEventInit":[],"DynamicsCompressorNode":["AudioNode","EventTarget"],"DynamicsCompressorOptions":[],"EcKeyAlgorithm":[],"EcKeyGenParams":[],"EcKeyImportParams":[],"EcdhKeyDeriveParams":[],"EcdsaParams":[],"EffectTiming":[],"Element":["EventTarget","Node"],"ElementCreationOptions":[],"ElementDefinitionOptions":[],"EncodedAudioChunk":[],"EncodedAudioChunkInit":[],"EncodedAudioChunkMetadata":[],"EncodedAudioChunkType":[],"EncodedVideoChunk":[],"EncodedVideoChunkInit":[],"EncodedVideoChunkMetadata":[],"EncodedVideoChunkType":[],"EndingTypes":[],"ErrorCallback":[],"ErrorEvent":["Event"],"ErrorEventInit":[],"Event":[],"EventInit":[],"EventListener":[],"EventListenerOptions":[],"EventModifierInit":[],"EventSource":["EventTarget"],"EventSourceInit":[],"EventTarget":[],"Exception":[],"ExtBlendMinmax":[],"ExtColorBufferFloat":[],"ExtColorBufferHalfFloat":[],"ExtDisjointTimerQuery":[],"ExtFragDepth":[],"ExtSRgb":[],"ExtShaderTextureLod":[],"ExtTextureFilterAnisotropic":[],"ExtendableEvent":["Event"],"ExtendableEventInit":[],"ExtendableMessageEvent":["Event","ExtendableEvent"],"ExtendableMessageEventInit":[],"External":[],"FakePluginMimeEntry":[],"FakePluginTagInit":[],"FetchEvent":["Event","ExtendableEvent"],"FetchEventInit":[],"FetchObserver":["EventTarget"],"FetchReadableStreamReadDataArray":[],"FetchReadableStreamReadDataDone":[],"FetchState":[],"File":["Blob"],"FileCallback":[],"FileList":[],"FilePropertyBag":[],"FileReader":["EventTarget"],"FileReaderSync":[],"FileSystem":[],"FileSystemDirectoryEntry":["FileSystemEntry"],"FileSystemDirectoryReader":[],"FileSystemEntriesCallback":[],"FileSystemEntry":[],"FileSystemEntryCallback":[],"FileSystemFileEntry":["FileSystemEntry"],"FileSystemFlags":[],"FillMode":[],"FlashClassification":[],"FlexLineGrowthState":[],"FocusEvent":["Event","UiEvent"],"FocusEventInit":[],"FontFace":[],"FontFaceDescriptors":[],"FontFaceLoadStatus":[],"FontFaceSet":["EventTarget"],"FontFaceSetIterator":[],"FontFaceSetIteratorResult":[],"FontFaceSetLoadEvent":["Event"],"FontFaceSetLoadEventInit":[],"FontFaceSetLoadStatus":[],"FormData":[],"FrameType":[],"FuzzingFunctions":[],"GainNode":["AudioNode","EventTarget"],"GainOptions":[],"Gamepad":[],"GamepadAxisMoveEvent":["Event","GamepadEvent"],"GamepadAxisMoveEventInit":[],"GamepadButton":[],"GamepadButtonEvent":["Event","GamepadEvent"],"GamepadButtonEventInit":[],"GamepadEvent":["Event"],"GamepadEventInit":[],"GamepadHand":[],"GamepadHapticActuator":[],"GamepadHapticActuatorType":[],"GamepadMappingType":[],"GamepadPose":[],"GamepadServiceTest":[],"Geolocation":[],"GetNotificationOptions":[],"GetRootNodeOptions":[],"GetUserMediaRequest":[],"Gpu":[],"GpuAdapter":[],"GpuAdapterInfo":[],"GpuAddressMode":[],"GpuAutoLayoutMode":[],"GpuBindGroup":[],"GpuBindGroupDescriptor":[],"GpuBindGroupEntry":[],"GpuBindGroupLayout":[],"GpuBindGroupLayoutDescriptor":[],"GpuBindGroupLayoutEntry":[],"GpuBlendComponent":[],"GpuBlendFactor":[],"GpuBlendOperation":[],"GpuBlendState":[],"GpuBuffer":[],"GpuBufferBinding":[],"GpuBufferBindingLayout":[],"GpuBufferBindingType":[],"GpuBufferDescriptor":[],"GpuCanvasAlphaMode":[],"GpuCanvasConfiguration":[],"GpuCanvasContext":[],"GpuColorDict":[],"GpuColorTargetState":[],"GpuCommandBuffer":[],"GpuCommandBufferDescriptor":[],"GpuCommandEncoder":[],"GpuCommandEncoderDescriptor":[],"GpuCompareFunction":[],"GpuCompilationInfo":[],"GpuCompilationMessage":[],"GpuCompilationMessageType":[],"GpuComputePassDescriptor":[],"GpuComputePassEncoder":[],"GpuComputePassTimestampLocation":[],"GpuComputePassTimestampWrite":[],"GpuComputePipeline":[],"GpuComputePipelineDescriptor":[],"GpuCullMode":[],"GpuDepthStencilState":[],"GpuDevice":["EventTarget"],"GpuDeviceDescriptor":[],"GpuDeviceLostInfo":[],"GpuDeviceLostReason":[],"GpuError":[],"GpuErrorFilter":[],"GpuExtent3dDict":[],"GpuExternalTexture":[],"GpuExternalTextureBindingLayout":[],"GpuExternalTextureDescriptor":[],"GpuFeatureName":[],"GpuFilterMode":[],"GpuFragmentState":[],"GpuFrontFace":[],"GpuImageCopyBuffer":[],"GpuImageCopyExternalImage":[],"GpuImageCopyTexture":[],"GpuImageCopyTextureTagged":[],"GpuImageDataLayout":[],"GpuIndexFormat":[],"GpuLoadOp":[],"GpuMipmapFilterMode":[],"GpuMultisampleState":[],"GpuObjectDescriptorBase":[],"GpuOrigin2dDict":[],"GpuOrigin3dDict":[],"GpuOutOfMemoryError":["GpuError"],"GpuPipelineDescriptorBase":[],"GpuPipelineLayout":[],"GpuPipelineLayoutDescriptor":[],"GpuPowerPreference":[],"GpuPrimitiveState":[],"GpuPrimitiveTopology":[],"GpuProgrammableStage":[],"GpuQuerySet":[],"GpuQuerySetDescriptor":[],"GpuQueryType":[],"GpuQueue":[],"GpuQueueDescriptor":[],"GpuRenderBundle":[],"GpuRenderBundleDescriptor":[],"GpuRenderBundleEncoder":[],"GpuRenderBundleEncoderDescriptor":[],"GpuRenderPassColorAttachment":[],"GpuRenderPassDepthStencilAttachment":[],"GpuRenderPassDescriptor":[],"GpuRenderPassEncoder":[],"GpuRenderPassLayout":[],"GpuRenderPassTimestampLocation":[],"GpuRenderPassTimestampWrite":[],"GpuRenderPipeline":[],"GpuRenderPipelineDescriptor":[],"GpuRequestAdapterOptions":[],"GpuSampler":[],"GpuSamplerBindingLayout":[],"GpuSamplerBindingType":[],"GpuSamplerDescriptor":[],"GpuShaderModule":[],"GpuShaderModuleCompilationHint":[],"GpuShaderModuleDescriptor":[],"GpuStencilFaceState":[],"GpuStencilOperation":[],"GpuStorageTextureAccess":[],"GpuStorageTextureBindingLayout":[],"GpuStoreOp":[],"GpuSupportedFeatures":[],"GpuSupportedLimits":[],"GpuTexture":[],"GpuTextureAspect":[],"GpuTextureBindingLayout":[],"GpuTextureDescriptor":[],"GpuTextureDimension":[],"GpuTextureFormat":[],"GpuTextureSampleType":[],"GpuTextureView":[],"GpuTextureViewDescriptor":[],"GpuTextureViewDimension":[],"GpuUncapturedErrorEvent":["Event"],"GpuUncapturedErrorEventInit":[],"GpuValidationError":["GpuError"],"GpuVertexAttribute":[],"GpuVertexBufferLayout":[],"GpuVertexFormat":[],"GpuVertexState":[],"GpuVertexStepMode":[],"GridDeclaration":[],"GridTrackState":[],"GroupedHistoryEventInit":[],"HalfOpenInfoDict":[],"HardwareAcceleration":[],"HashChangeEvent":["Event"],"HashChangeEventInit":[],"Headers":[],"HeadersGuardEnum":[],"Hid":["EventTarget"],"HidCollectionInfo":[],"HidConnectionEvent":["Event"],"HidConnectionEventInit":[],"HidDevice":["EventTarget"],"HidDeviceFilter":[],"HidDeviceRequestOptions":[],"HidInputReportEvent":["Event"],"HidInputReportEventInit":[],"HidReportInfo":[],"HidReportItem":[],"HidUnitSystem":[],"HiddenPluginEventInit":[],"History":[],"HitRegionOptions":[],"HkdfParams":[],"HmacDerivedKeyParams":[],"HmacImportParams":[],"HmacKeyAlgorithm":[],"HmacKeyGenParams":[],"HtmlAllCollection":[],"HtmlAnchorElement":["Element","EventTarget","HtmlElement","Node"],"HtmlAreaElement":["Element","EventTarget","HtmlElement","Node"],"HtmlAudioElement":["Element","EventTarget","HtmlElement","HtmlMediaElement","Node"],"HtmlBaseElement":["Element","EventTarget","HtmlElement","Node"],"HtmlBodyElement":["Element","EventTarget","HtmlElement","Node"],"HtmlBrElement":["Element","EventTarget","HtmlElement","Node"],"HtmlButtonElement":["Element","EventTarget","HtmlElement","Node"],"HtmlCanvasElement":["Element","EventTarget","HtmlElement","Node"],"HtmlCollection":[],"HtmlDListElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDataElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDataListElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDetailsElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDialogElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDirectoryElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDivElement":["Element","EventTarget","HtmlElement","Node"],"HtmlDocument":["Document","EventTarget","Node"],"HtmlElement":["Element","EventTarget","Node"],"HtmlEmbedElement":["Element","EventTarget","HtmlElement","Node"],"HtmlFieldSetElement":["Element","EventTarget","HtmlElement","Node"],"HtmlFontElement":["Element","EventTarget","HtmlElement","Node"],"HtmlFormControlsCollection":["HtmlCollection"],"HtmlFormElement":["Element","EventTarget","HtmlElement","Node"],"HtmlFrameElement":["Element","EventTarget","HtmlElement","Node"],"HtmlFrameSetElement":["Element","EventTarget","HtmlElement","Node"],"HtmlHeadElement":["Element","EventTarget","HtmlElement","Node"],"HtmlHeadingElement":["Element","EventTarget","HtmlElement","Node"],"HtmlHrElement":["Element","EventTarget","HtmlElement","Node"],"HtmlHtmlElement":["Element","EventTarget","HtmlElement","Node"],"HtmlIFrameElement":["Element","EventTarget","HtmlElement","Node"],"HtmlImageElement":["Element","EventTarget","HtmlElement","Node"],"HtmlInputElement":["Element","EventTarget","HtmlElement","Node"],"HtmlLabelElement":["Element","EventTarget","HtmlElement","Node"],"HtmlLegendElement":["Element","EventTarget","HtmlElement","Node"],"HtmlLiElement":["Element","EventTarget","HtmlElement","Node"],"HtmlLinkElement":["Element","EventTarget","HtmlElement","Node"],"HtmlMapElement":["Element","EventTarget","HtmlElement","Node"],"HtmlMediaElement":["Element","EventTarget","HtmlElement","Node"],"HtmlMenuElement":["Element","EventTarget","HtmlElement","Node"],"HtmlMenuItemElement":["Element","EventTarget","HtmlElement","Node"],"HtmlMetaElement":["Element","EventTarget","HtmlElement","Node"],"HtmlMeterElement":["Element","EventTarget","HtmlElement","Node"],"HtmlModElement":["Element","EventTarget","HtmlElement","Node"],"HtmlOListElement":["Element","EventTarget","HtmlElement","Node"],"HtmlObjectElement":["Element","EventTarget","HtmlElement","Node"],"HtmlOptGroupElement":["Element","EventTarget","HtmlElement","Node"],"HtmlOptionElement":["Element","EventTarget","HtmlElement","Node"],"HtmlOptionsCollection":["HtmlCollection"],"HtmlOutputElement":["Element","EventTarget","HtmlElement","Node"],"HtmlParagraphElement":["Element","EventTarget","HtmlElement","Node"],"HtmlParamElement":["Element","EventTarget","HtmlElement","Node"],"HtmlPictureElement":["Element","EventTarget","HtmlElement","Node"],"HtmlPreElement":["Element","EventTarget","HtmlElement","Node"],"HtmlProgressElement":["Element","EventTarget","HtmlElement","Node"],"HtmlQuoteElement":["Element","EventTarget","HtmlElement","Node"],"HtmlScriptElement":["Element","EventTarget","HtmlElement","Node"],"HtmlSelectElement":["Element","EventTarget","HtmlElement","Node"],"HtmlSlotElement":["Element","EventTarget","HtmlElement","Node"],"HtmlSourceElement":["Element","EventTarget","HtmlElement","Node"],"HtmlSpanElement":["Element","EventTarget","HtmlElement","Node"],"HtmlStyleElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTableCaptionElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTableCellElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTableColElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTableElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTableRowElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTableSectionElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTemplateElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTextAreaElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTimeElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTitleElement":["Element","EventTarget","HtmlElement","Node"],"HtmlTrackElement":["Element","EventTarget","HtmlElement","Node"],"HtmlUListElement":["Element","EventTarget","HtmlElement","Node"],"HtmlUnknownElement":["Element","EventTarget","HtmlElement","Node"],"HtmlVideoElement":["Element","EventTarget","HtmlElement","HtmlMediaElement","Node"],"HttpConnDict":[],"HttpConnInfo":[],"HttpConnectionElement":[],"IdbCursor":[],"IdbCursorDirection":[],"IdbCursorWithValue":["IdbCursor"],"IdbDatabase":["EventTarget"],"IdbFactory":[],"IdbFileHandle":["EventTarget"],"IdbFileMetadataParameters":[],"IdbFileRequest":["DomRequest","EventTarget"],"IdbIndex":[],"IdbIndexParameters":[],"IdbKeyRange":[],"IdbLocaleAwareKeyRange":["IdbKeyRange"],"IdbMutableFile":["EventTarget"],"IdbObjectStore":[],"IdbObjectStoreParameters":[],"IdbOpenDbOptions":[],"IdbOpenDbRequest":["EventTarget","IdbRequest"],"IdbRequest":["EventTarget"],"IdbRequestReadyState":[],"IdbTransaction":["EventTarget"],"IdbTransactionMode":[],"IdbVersionChangeEvent":["Event"],"IdbVersionChangeEventInit":[],"IdleDeadline":[],"IdleRequestOptions":[],"IirFilterNode":["AudioNode","EventTarget"],"IirFilterOptions":[],"ImageBitmap":[],"ImageBitmapFormat":[],"ImageBitmapRenderingContext":[],"ImageCapture":[],"ImageCaptureError":[],"ImageCaptureErrorEvent":["Event"],"ImageCaptureErrorEventInit":[],"ImageData":[],"ImageDecodeOptions":[],"ImageDecodeResult":[],"ImageDecoder":[],"ImageDecoderInit":[],"ImageTrack":["EventTarget"],"ImageTrackList":[],"InputEvent":["Event","UiEvent"],"InputEventInit":[],"InstallTriggerData":[],"IntersectionObserver":[],"IntersectionObserverEntry":[],"IntersectionObserverEntryInit":[],"IntersectionObserverInit":[],"IntlUtils":[],"IterableKeyAndValueResult":[],"IterableKeyOrValueResult":[],"IterationCompositeOperation":[],"JsonWebKey":[],"KeyAlgorithm":[],"KeyEvent":[],"KeyIdsInitData":[],"KeyboardEvent":["Event","UiEvent"],"KeyboardEventInit":[],"KeyframeEffect":["AnimationEffect"],"KeyframeEffectOptions":[],"L10nElement":[],"L10nValue":[],"LatencyMode":[],"LifecycleCallbacks":[],"LineAlignSetting":[],"ListBoxObject":[],"LocalMediaStream":["EventTarget","MediaStream"],"LocaleInfo":[],"Location":[],"MediaCapabilities":[],"MediaCapabilitiesInfo":[],"MediaConfiguration":[],"MediaDecodingConfiguration":[],"MediaDecodingType":[],"MediaDeviceInfo":[],"MediaDeviceKind":[],"MediaDevices":["EventTarget"],"MediaElementAudioSourceNode":["AudioNode","EventTarget"],"MediaElementAudioSourceOptions":[],"MediaEncodingConfiguration":[],"MediaEncodingType":[],"MediaEncryptedEvent":["Event"],"MediaError":[],"MediaImage":[],"MediaKeyError":["Event"],"MediaKeyMessageEvent":["Event"],"MediaKeyMessageEventInit":[],"MediaKeyMessageType":[],"MediaKeyNeededEventInit":[],"MediaKeySession":["EventTarget"],"MediaKeySessionType":[],"MediaKeyStatus":[],"MediaKeyStatusMap":[],"MediaKeySystemAccess":[],"MediaKeySystemConfiguration":[],"MediaKeySystemMediaCapability":[],"MediaKeySystemStatus":[],"MediaKeys":[],"MediaKeysPolicy":[],"MediaKeysRequirement":[],"MediaList":[],"MediaMetadata":[],"MediaMetadataInit":[],"MediaPositionState":[],"MediaQueryList":["EventTarget"],"MediaQueryListEvent":["Event"],"MediaQueryListEventInit":[],"MediaRecorder":["EventTarget"],"MediaRecorderErrorEvent":["Event"],"MediaRecorderErrorEventInit":[],"MediaRecorderOptions":[],"MediaSession":[],"MediaSessionAction":[],"MediaSessionActionDetails":[],"MediaSessionPlaybackState":[],"MediaSource":["EventTarget"],"MediaSourceEndOfStreamError":[],"MediaSourceEnum":[],"MediaSourceReadyState":[],"MediaStream":["EventTarget"],"MediaStreamAudioDestinationNode":["AudioNode","EventTarget"],"MediaStreamAudioSourceNode":["AudioNode","EventTarget"],"MediaStreamAudioSourceOptions":[],"MediaStreamConstraints":[],"MediaStreamError":[],"MediaStreamEvent":["Event"],"MediaStreamEventInit":[],"MediaStreamTrack":["EventTarget"],"MediaStreamTrackEvent":["Event"],"MediaStreamTrackEventInit":[],"MediaStreamTrackGenerator":["EventTarget","MediaStreamTrack"],"MediaStreamTrackGeneratorInit":[],"MediaStreamTrackProcessor":[],"MediaStreamTrackProcessorInit":[],"MediaStreamTrackState":[],"MediaTrackConstraintSet":[],"MediaTrackConstraints":[],"MediaTrackSettings":[],"MediaTrackSupportedConstraints":[],"MessageChannel":[],"MessageEvent":["Event"],"MessageEventInit":[],"MessagePort":["EventTarget"],"MidiAccess":["EventTarget"],"MidiConnectionEvent":["Event"],"MidiConnectionEventInit":[],"MidiInput":["EventTarget","MidiPort"],"MidiInputMap":[],"MidiMessageEvent":["Event"],"MidiMessageEventInit":[],"MidiOptions":[],"MidiOutput":["EventTarget","MidiPort"],"MidiOutputMap":[],"MidiPort":["EventTarget"],"MidiPortConnectionState":[],"MidiPortDeviceState":[],"MidiPortType":[],"MimeType":[],"MimeTypeArray":[],"MouseEvent":["Event","UiEvent"],"MouseEventInit":[],"MouseScrollEvent":["Event","MouseEvent","UiEvent"],"MozDebug":[],"MutationEvent":["Event"],"MutationObserver":[],"MutationObserverInit":[],"MutationObservingInfo":[],"MutationRecord":[],"NamedNodeMap":[],"NativeOsFileReadOptions":[],"NativeOsFileWriteAtomicOptions":[],"NavigationType":[],"Navigator":[],"NavigatorAutomationInformation":[],"NetworkCommandOptions":[],"NetworkInformation":["EventTarget"],"NetworkResultOptions":[],"Node":["EventTarget"],"NodeFilter":[],"NodeIterator":[],"NodeList":[],"Notification":["EventTarget"],"NotificationBehavior":[],"NotificationDirection":[],"NotificationEvent":["Event","ExtendableEvent"],"NotificationEventInit":[],"NotificationOptions":[],"NotificationPermission":[],"ObserverCallback":[],"OesElementIndexUint":[],"OesStandardDerivatives":[],"OesTextureFloat":[],"OesTextureFloatLinear":[],"OesTextureHalfFloat":[],"OesTextureHalfFloatLinear":[],"OesVertexArrayObject":[],"OfflineAudioCompletionEvent":["Event"],"OfflineAudioCompletionEventInit":[],"OfflineAudioContext":["BaseAudioContext","EventTarget"],"OfflineAudioContextOptions":[],"OfflineResourceList":["EventTarget"],"OffscreenCanvas":["EventTarget"],"OpenWindowEventDetail":[],"OptionalEffectTiming":[],"OrientationLockType":[],"OrientationType":[],"OscillatorNode":["AudioNode","AudioScheduledSourceNode","EventTarget"],"OscillatorOptions":[],"OscillatorType":[],"OverSampleType":[],"OvrMultiview2":[],"PageTransitionEvent":["Event"],"PageTransitionEventInit":[],"PaintRequest":[],"PaintRequestList":[],"PaintWorkletGlobalScope":["WorkletGlobalScope"],"PannerNode":["AudioNode","EventTarget"],"PannerOptions":[],"PanningModelType":[],"Path2d":[],"PaymentAddress":[],"PaymentComplete":[],"PaymentMethodChangeEvent":["Event","PaymentRequestUpdateEvent"],"PaymentMethodChangeEventInit":[],"PaymentRequestUpdateEvent":["Event"],"PaymentRequestUpdateEventInit":[],"PaymentResponse":[],"Pbkdf2Params":[],"PcImplIceConnectionState":[],"PcImplIceGatheringState":[],"PcImplSignalingState":[],"PcObserverStateType":[],"Performance":["EventTarget"],"PerformanceEntry":[],"PerformanceEntryEventInit":[],"PerformanceEntryFilterOptions":[],"PerformanceMark":["PerformanceEntry"],"PerformanceMeasure":["PerformanceEntry"],"PerformanceNavigation":[],"PerformanceNavigationTiming":["PerformanceEntry","PerformanceResourceTiming"],"PerformanceObserver":[],"PerformanceObserverEntryList":[],"PerformanceObserverInit":[],"PerformanceResourceTiming":["PerformanceEntry"],"PerformanceServerTiming":[],"PerformanceTiming":[],"PeriodicWave":[],"PeriodicWaveConstraints":[],"PeriodicWaveOptions":[],"PermissionDescriptor":[],"PermissionName":[],"PermissionState":[],"PermissionStatus":["EventTarget"],"Permissions":[],"PlaneLayout":[],"PlaybackDirection":[],"Plugin":[],"PluginArray":[],"PluginCrashedEventInit":[],"PointerEvent":["Event","MouseEvent","UiEvent"],"PointerEventInit":[],"PopStateEvent":["Event"],"PopStateEventInit":[],"PopupBlockedEvent":["Event"],"PopupBlockedEventInit":[],"Position":[],"PositionAlignSetting":[],"PositionError":[],"PositionOptions":[],"Presentation":[],"PresentationAvailability":["EventTarget"],"PresentationConnection":["EventTarget"],"PresentationConnectionAvailableEvent":["Event"],"PresentationConnectionAvailableEventInit":[],"PresentationConnectionBinaryType":[],"PresentationConnectionCloseEvent":["Event"],"PresentationConnectionCloseEventInit":[],"PresentationConnectionClosedReason":[],"PresentationConnectionList":["EventTarget"],"PresentationConnectionState":[],"PresentationReceiver":[],"PresentationRequest":["EventTarget"],"PresentationStyle":[],"ProcessingInstruction":["CharacterData","EventTarget","Node"],"ProfileTimelineLayerRect":[],"ProfileTimelineMarker":[],"ProfileTimelineMessagePortOperationType":[],"ProfileTimelineStackFrame":[],"ProfileTimelineWorkerOperationType":[],"ProgressEvent":["Event"],"ProgressEventInit":[],"PromiseNativeHandler":[],"PromiseRejectionEvent":["Event"],"PromiseRejectionEventInit":[],"PublicKeyCredential":["Credential"],"PublicKeyCredentialCreationOptions":[],"PublicKeyCredentialDescriptor":[],"PublicKeyCredentialEntity":[],"PublicKeyCredentialParameters":[],"PublicKeyCredentialRequestOptions":[],"PublicKeyCredentialRpEntity":[],"PublicKeyCredentialType":[],"PublicKeyCredentialUserEntity":[],"PushEncryptionKeyName":[],"PushEvent":["Event","ExtendableEvent"],"PushEventInit":[],"PushManager":[],"PushMessageData":[],"PushPermissionState":[],"PushSubscription":[],"PushSubscriptionInit":[],"PushSubscriptionJson":[],"PushSubscriptionKeys":[],"PushSubscriptionOptions":[],"PushSubscriptionOptionsInit":[],"QueuingStrategy":[],"QueuingStrategyInit":[],"RadioNodeList":["NodeList"],"Range":[],"RcwnPerfStats":[],"RcwnStatus":[],"ReadableByteStreamController":[],"ReadableStream":[],"ReadableStreamByobReader":[],"ReadableStreamByobRequest":[],"ReadableStreamDefaultController":[],"ReadableStreamDefaultReader":[],"ReadableStreamGetReaderOptions":[],"ReadableStreamIteratorOptions":[],"ReadableStreamReadResult":[],"ReadableStreamReaderMode":[],"ReadableStreamType":[],"ReadableWritablePair":[],"RecordingState":[],"ReferrerPolicy":[],"RegisterRequest":[],"RegisterResponse":[],"RegisteredKey":[],"RegistrationOptions":[],"Request":[],"RequestCache":[],"RequestCredentials":[],"RequestDestination":[],"RequestDeviceOptions":[],"RequestInit":[],"RequestMediaKeySystemAccessNotification":[],"RequestMode":[],"RequestRedirect":[],"ResizeObserver":[],"ResizeObserverBoxOptions":[],"ResizeObserverEntry":[],"ResizeObserverOptions":[],"ResizeObserverSize":[],"Response":[],"ResponseInit":[],"ResponseType":[],"RsaHashedImportParams":[],"RsaOaepParams":[],"RsaOtherPrimesInfo":[],"RsaPssParams":[],"RtcAnswerOptions":[],"RtcBundlePolicy":[],"RtcCertificate":[],"RtcCertificateExpiration":[],"RtcCodecStats":[],"RtcConfiguration":[],"RtcDataChannel":["EventTarget"],"RtcDataChannelEvent":["Event"],"RtcDataChannelEventInit":[],"RtcDataChannelInit":[],"RtcDataChannelState":[],"RtcDataChannelType":[],"RtcDegradationPreference":[],"RtcFecParameters":[],"RtcIceCandidate":[],"RtcIceCandidateInit":[],"RtcIceCandidatePairStats":[],"RtcIceCandidateStats":[],"RtcIceComponentStats":[],"RtcIceConnectionState":[],"RtcIceCredentialType":[],"RtcIceGatheringState":[],"RtcIceServer":[],"RtcIceTransportPolicy":[],"RtcIdentityAssertion":[],"RtcIdentityAssertionResult":[],"RtcIdentityProvider":[],"RtcIdentityProviderDetails":[],"RtcIdentityProviderOptions":[],"RtcIdentityProviderRegistrar":[],"RtcIdentityValidationResult":[],"RtcInboundRtpStreamStats":[],"RtcLifecycleEvent":[],"RtcMediaStreamStats":[],"RtcMediaStreamTrackStats":[],"RtcOfferAnswerOptions":[],"RtcOfferOptions":[],"RtcOutboundRtpStreamStats":[],"RtcPeerConnection":["EventTarget"],"RtcPeerConnectionIceEvent":["Event"],"RtcPeerConnectionIceEventInit":[],"RtcPriorityType":[],"RtcRtcpParameters":[],"RtcRtpCodecParameters":[],"RtcRtpContributingSource":[],"RtcRtpEncodingParameters":[],"RtcRtpHeaderExtensionParameters":[],"RtcRtpParameters":[],"RtcRtpReceiver":[],"RtcRtpSender":[],"RtcRtpSourceEntry":[],"RtcRtpSourceEntryType":[],"RtcRtpSynchronizationSource":[],"RtcRtpTransceiver":[],"RtcRtpTransceiverDirection":[],"RtcRtpTransceiverInit":[],"RtcRtxParameters":[],"RtcSdpType":[],"RtcSessionDescription":[],"RtcSessionDescriptionInit":[],"RtcSignalingState":[],"RtcStats":[],"RtcStatsIceCandidatePairState":[],"RtcStatsIceCandidateType":[],"RtcStatsReport":[],"RtcStatsReportInternal":[],"RtcStatsType":[],"RtcTrackEvent":["Event"],"RtcTrackEventInit":[],"RtcTransportStats":[],"RtcdtmfSender":["EventTarget"],"RtcdtmfToneChangeEvent":["Event"],"RtcdtmfToneChangeEventInit":[],"RtcrtpContributingSourceStats":[],"RtcrtpStreamStats":[],"Screen":["EventTarget"],"ScreenColorGamut":[],"ScreenLuminance":[],"ScreenOrientation":["EventTarget"],"ScriptProcessorNode":["AudioNode","EventTarget"],"ScrollAreaEvent":["Event","UiEvent"],"ScrollBehavior":[],"ScrollBoxObject":[],"ScrollIntoViewOptions":[],"ScrollLogicalPosition":[],"ScrollOptions":[],"ScrollRestoration":[],"ScrollSetting":[],"ScrollState":[],"ScrollToOptions":[],"ScrollViewChangeEventInit":[],"SecurityPolicyViolationEvent":["Event"],"SecurityPolicyViolationEventDisposition":[],"SecurityPolicyViolationEventInit":[],"Selection":[],"ServerSocketOptions":[],"ServiceWorker":["EventTarget"],"ServiceWorkerContainer":["EventTarget"],"ServiceWorkerGlobalScope":["EventTarget","WorkerGlobalScope"],"ServiceWorkerRegistration":["EventTarget"],"ServiceWorkerState":[],"ServiceWorkerUpdateViaCache":[],"ShadowRoot":["DocumentFragment","EventTarget","Node"],"ShadowRootInit":[],"ShadowRootMode":[],"ShareData":[],"SharedWorker":["EventTarget"],"SharedWorkerGlobalScope":["EventTarget","WorkerGlobalScope"],"SignResponse":[],"SocketElement":[],"SocketOptions":[],"SocketReadyState":[],"SocketsDict":[],"SourceBuffer":["EventTarget"],"SourceBufferAppendMode":[],"SourceBufferList":["EventTarget"],"SpeechGrammar":[],"SpeechGrammarList":[],"SpeechRecognition":["EventTarget"],"SpeechRecognitionAlternative":[],"SpeechRecognitionError":["Event"],"SpeechRecognitionErrorCode":[],"SpeechRecognitionErrorInit":[],"SpeechRecognitionEvent":["Event"],"SpeechRecognitionEventInit":[],"SpeechRecognitionResult":[],"SpeechRecognitionResultList":[],"SpeechSynthesis":["EventTarget"],"SpeechSynthesisErrorCode":[],"SpeechSynthesisErrorEvent":["Event","SpeechSynthesisEvent"],"SpeechSynthesisErrorEventInit":[],"SpeechSynthesisEvent":["Event"],"SpeechSynthesisEventInit":[],"SpeechSynthesisUtterance":["EventTarget"],"SpeechSynthesisVoice":[],"StereoPannerNode":["AudioNode","EventTarget"],"StereoPannerOptions":[],"Storage":[],"StorageEstimate":[],"StorageEvent":["Event"],"StorageEventInit":[],"StorageManager":[],"StorageType":[],"StreamPipeOptions":[],"StyleRuleChangeEventInit":[],"StyleSheet":[],"StyleSheetApplicableStateChangeEventInit":[],"StyleSheetChangeEventInit":[],"StyleSheetList":[],"SubmitEvent":["Event"],"SubmitEventInit":[],"SubtleCrypto":[],"SupportedType":[],"SvcOutputMetadata":[],"SvgAngle":[],"SvgAnimateElement":["Element","EventTarget","Node","SvgAnimationElement","SvgElement"],"SvgAnimateMotionElement":["Element","EventTarget","Node","SvgAnimationElement","SvgElement"],"SvgAnimateTransformElement":["Element","EventTarget","Node","SvgAnimationElement","SvgElement"],"SvgAnimatedAngle":[],"SvgAnimatedBoolean":[],"SvgAnimatedEnumeration":[],"SvgAnimatedInteger":[],"SvgAnimatedLength":[],"SvgAnimatedLengthList":[],"SvgAnimatedNumber":[],"SvgAnimatedNumberList":[],"SvgAnimatedPreserveAspectRatio":[],"SvgAnimatedRect":[],"SvgAnimatedString":[],"SvgAnimatedTransformList":[],"SvgAnimationElement":["Element","EventTarget","Node","SvgElement"],"SvgBoundingBoxOptions":[],"SvgCircleElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgClipPathElement":["Element","EventTarget","Node","SvgElement"],"SvgComponentTransferFunctionElement":["Element","EventTarget","Node","SvgElement"],"SvgDefsElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgDescElement":["Element","EventTarget","Node","SvgElement"],"SvgElement":["Element","EventTarget","Node"],"SvgEllipseElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgFilterElement":["Element","EventTarget","Node","SvgElement"],"SvgForeignObjectElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgGeometryElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgGradientElement":["Element","EventTarget","Node","SvgElement"],"SvgGraphicsElement":["Element","EventTarget","Node","SvgElement"],"SvgImageElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgLength":[],"SvgLengthList":[],"SvgLineElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgLinearGradientElement":["Element","EventTarget","Node","SvgElement","SvgGradientElement"],"SvgMarkerElement":["Element","EventTarget","Node","SvgElement"],"SvgMaskElement":["Element","EventTarget","Node","SvgElement"],"SvgMatrix":[],"SvgMetadataElement":["Element","EventTarget","Node","SvgElement"],"SvgNumber":[],"SvgNumberList":[],"SvgPathElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgPathSeg":[],"SvgPathSegArcAbs":["SvgPathSeg"],"SvgPathSegArcRel":["SvgPathSeg"],"SvgPathSegClosePath":["SvgPathSeg"],"SvgPathSegCurvetoCubicAbs":["SvgPathSeg"],"SvgPathSegCurvetoCubicRel":["SvgPathSeg"],"SvgPathSegCurvetoCubicSmoothAbs":["SvgPathSeg"],"SvgPathSegCurvetoCubicSmoothRel":["SvgPathSeg"],"SvgPathSegCurvetoQuadraticAbs":["SvgPathSeg"],"SvgPathSegCurvetoQuadraticRel":["SvgPathSeg"],"SvgPathSegCurvetoQuadraticSmoothAbs":["SvgPathSeg"],"SvgPathSegCurvetoQuadraticSmoothRel":["SvgPathSeg"],"SvgPathSegLinetoAbs":["SvgPathSeg"],"SvgPathSegLinetoHorizontalAbs":["SvgPathSeg"],"SvgPathSegLinetoHorizontalRel":["SvgPathSeg"],"SvgPathSegLinetoRel":["SvgPathSeg"],"SvgPathSegLinetoVerticalAbs":["SvgPathSeg"],"SvgPathSegLinetoVerticalRel":["SvgPathSeg"],"SvgPathSegList":[],"SvgPathSegMovetoAbs":["SvgPathSeg"],"SvgPathSegMovetoRel":["SvgPathSeg"],"SvgPatternElement":["Element","EventTarget","Node","SvgElement"],"SvgPoint":[],"SvgPointList":[],"SvgPolygonElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgPolylineElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgPreserveAspectRatio":[],"SvgRadialGradientElement":["Element","EventTarget","Node","SvgElement","SvgGradientElement"],"SvgRect":[],"SvgRectElement":["Element","EventTarget","Node","SvgElement","SvgGeometryElement","SvgGraphicsElement"],"SvgScriptElement":["Element","EventTarget","Node","SvgElement"],"SvgSetElement":["Element","EventTarget","Node","SvgAnimationElement","SvgElement"],"SvgStopElement":["Element","EventTarget","Node","SvgElement"],"SvgStringList":[],"SvgStyleElement":["Element","EventTarget","Node","SvgElement"],"SvgSwitchElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgSymbolElement":["Element","EventTarget","Node","SvgElement"],"SvgTextContentElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgTextElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement","SvgTextContentElement","SvgTextPositioningElement"],"SvgTextPathElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement","SvgTextContentElement"],"SvgTextPositioningElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement","SvgTextContentElement"],"SvgTitleElement":["Element","EventTarget","Node","SvgElement"],"SvgTransform":[],"SvgTransformList":[],"SvgUnitTypes":[],"SvgUseElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgViewElement":["Element","EventTarget","Node","SvgElement"],"SvgZoomAndPan":[],"SvgaElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgfeBlendElement":["Element","EventTarget","Node","SvgElement"],"SvgfeColorMatrixElement":["Element","EventTarget","Node","SvgElement"],"SvgfeComponentTransferElement":["Element","EventTarget","Node","SvgElement"],"SvgfeCompositeElement":["Element","EventTarget","Node","SvgElement"],"SvgfeConvolveMatrixElement":["Element","EventTarget","Node","SvgElement"],"SvgfeDiffuseLightingElement":["Element","EventTarget","Node","SvgElement"],"SvgfeDisplacementMapElement":["Element","EventTarget","Node","SvgElement"],"SvgfeDistantLightElement":["Element","EventTarget","Node","SvgElement"],"SvgfeDropShadowElement":["Element","EventTarget","Node","SvgElement"],"SvgfeFloodElement":["Element","EventTarget","Node","SvgElement"],"SvgfeFuncAElement":["Element","EventTarget","Node","SvgComponentTransferFunctionElement","SvgElement"],"SvgfeFuncBElement":["Element","EventTarget","Node","SvgComponentTransferFunctionElement","SvgElement"],"SvgfeFuncGElement":["Element","EventTarget","Node","SvgComponentTransferFunctionElement","SvgElement"],"SvgfeFuncRElement":["Element","EventTarget","Node","SvgComponentTransferFunctionElement","SvgElement"],"SvgfeGaussianBlurElement":["Element","EventTarget","Node","SvgElement"],"SvgfeImageElement":["Element","EventTarget","Node","SvgElement"],"SvgfeMergeElement":["Element","EventTarget","Node","SvgElement"],"SvgfeMergeNodeElement":["Element","EventTarget","Node","SvgElement"],"SvgfeMorphologyElement":["Element","EventTarget","Node","SvgElement"],"SvgfeOffsetElement":["Element","EventTarget","Node","SvgElement"],"SvgfePointLightElement":["Element","EventTarget","Node","SvgElement"],"SvgfeSpecularLightingElement":["Element","EventTarget","Node","SvgElement"],"SvgfeSpotLightElement":["Element","EventTarget","Node","SvgElement"],"SvgfeTileElement":["Element","EventTarget","Node","SvgElement"],"SvgfeTurbulenceElement":["Element","EventTarget","Node","SvgElement"],"SvggElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgmPathElement":["Element","EventTarget","Node","SvgElement"],"SvgsvgElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement"],"SvgtSpanElement":["Element","EventTarget","Node","SvgElement","SvgGraphicsElement","SvgTextContentElement","SvgTextPositioningElement"],"TcpReadyState":[],"TcpServerSocket":["EventTarget"],"TcpServerSocketEvent":["Event"],"TcpServerSocketEventInit":[],"TcpSocket":["EventTarget"],"TcpSocketBinaryType":[],"TcpSocketErrorEvent":["Event"],"TcpSocketErrorEventInit":[],"TcpSocketEvent":["Event"],"TcpSocketEventInit":[],"Text":["CharacterData","EventTarget","Node"],"TextDecodeOptions":[],"TextDecoder":[],"TextDecoderOptions":[],"TextEncoder":[],"TextMetrics":[],"TextTrack":["EventTarget"],"TextTrackCue":["EventTarget"],"TextTrackCueList":[],"TextTrackKind":[],"TextTrackList":["EventTarget"],"TextTrackMode":[],"TimeEvent":["Event"],"TimeRanges":[],"Touch":[],"TouchEvent":["Event","UiEvent"],"TouchEventInit":[],"TouchInit":[],"TouchList":[],"TrackEvent":["Event"],"TrackEventInit":[],"TransformStream":[],"TransformStreamDefaultController":[],"Transformer":[],"TransitionEvent":["Event"],"TransitionEventInit":[],"Transport":[],"TreeBoxObject":[],"TreeCellInfo":[],"TreeView":[],"TreeWalker":[],"U2f":[],"U2fClientData":[],"UdpMessageEventInit":[],"UdpOptions":[],"UiEvent":["Event"],"UiEventInit":[],"UnderlyingSink":[],"UnderlyingSource":[],"Url":[],"UrlSearchParams":[],"Usb":["EventTarget"],"UsbAlternateInterface":[],"UsbConfiguration":[],"UsbConnectionEvent":["Event"],"UsbConnectionEventInit":[],"UsbControlTransferParameters":[],"UsbDevice":[],"UsbDeviceFilter":[],"UsbDeviceRequestOptions":[],"UsbDirection":[],"UsbEndpoint":[],"UsbEndpointType":[],"UsbInTransferResult":[],"UsbInterface":[],"UsbIsochronousInTransferPacket":[],"UsbIsochronousInTransferResult":[],"UsbIsochronousOutTransferPacket":[],"UsbIsochronousOutTransferResult":[],"UsbOutTransferResult":[],"UsbPermissionDescriptor":[],"UsbPermissionResult":["EventTarget","PermissionStatus"],"UsbPermissionStorage":[],"UsbRecipient":[],"UsbRequestType":[],"UsbTransferStatus":[],"UserProximityEvent":["Event"],"UserProximityEventInit":[],"UserVerificationRequirement":[],"ValidityState":[],"ValueEvent":["Event"],"ValueEventInit":[],"VideoColorPrimaries":[],"VideoColorSpace":[],"VideoColorSpaceInit":[],"VideoConfiguration":[],"VideoDecoder":[],"VideoDecoderConfig":[],"VideoDecoderInit":[],"VideoDecoderSupport":[],"VideoEncoder":[],"VideoEncoderConfig":[],"VideoEncoderEncodeOptions":[],"VideoEncoderInit":[],"VideoEncoderSupport":[],"VideoFacingModeEnum":[],"VideoFrame":[],"VideoFrameBufferInit":[],"VideoFrameCopyToOptions":[],"VideoFrameInit":[],"VideoMatrixCoefficients":[],"VideoPixelFormat":[],"VideoPlaybackQuality":[],"VideoStreamTrack":["EventTarget","MediaStreamTrack"],"VideoTrack":[],"VideoTrackList":["EventTarget"],"VideoTransferCharacteristics":[],"VisibilityState":[],"VoidCallback":[],"VrDisplay":["EventTarget"],"VrDisplayCapabilities":[],"VrEye":[],"VrEyeParameters":[],"VrFieldOfView":[],"VrFrameData":[],"VrLayer":[],"VrMockController":[],"VrMockDisplay":[],"VrPose":[],"VrServiceTest":[],"VrStageParameters":[],"VrSubmitFrameResult":[],"VttCue":["EventTarget","TextTrackCue"],"VttRegion":[],"WakeLock":[],"WakeLockSentinel":["EventTarget"],"WakeLockType":[],"WatchAdvertisementsOptions":[],"WaveShaperNode":["AudioNode","EventTarget"],"WaveShaperOptions":[],"WebGl2RenderingContext":[],"WebGlActiveInfo":[],"WebGlBuffer":[],"WebGlContextAttributes":[],"WebGlContextEvent":["Event"],"WebGlContextEventInit":[],"WebGlFramebuffer":[],"WebGlPowerPreference":[],"WebGlProgram":[],"WebGlQuery":[],"WebGlRenderbuffer":[],"WebGlRenderingContext":[],"WebGlSampler":[],"WebGlShader":[],"WebGlShaderPrecisionFormat":[],"WebGlSync":[],"WebGlTexture":[],"WebGlTransformFeedback":[],"WebGlUniformLocation":[],"WebGlVertexArrayObject":[],"WebKitCssMatrix":["DomMatrix","DomMatrixReadOnly"],"WebSocket":["EventTarget"],"WebSocketDict":[],"WebSocketElement":[],"WebglColorBufferFloat":[],"WebglCompressedTextureAstc":[],"WebglCompressedTextureAtc":[],"WebglCompressedTextureEtc":[],"WebglCompressedTextureEtc1":[],"WebglCompressedTexturePvrtc":[],"WebglCompressedTextureS3tc":[],"WebglCompressedTextureS3tcSrgb":[],"WebglDebugRendererInfo":[],"WebglDebugShaders":[],"WebglDepthTexture":[],"WebglDrawBuffers":[],"WebglLoseContext":[],"WebglMultiDraw":[],"WebrtcGlobalStatisticsReport":[],"WheelEvent":["Event","MouseEvent","UiEvent"],"WheelEventInit":[],"WidevineCdmManifest":[],"Window":["EventTarget"],"WindowClient":["Client"],"Worker":["EventTarget"],"WorkerDebuggerGlobalScope":["EventTarget"],"WorkerGlobalScope":["EventTarget"],"WorkerLocation":[],"WorkerNavigator":[],"WorkerOptions":[],"WorkerType":[],"Worklet":[],"WorkletGlobalScope":[],"WorkletOptions":[],"WritableStream":[],"WritableStreamDefaultController":[],"WritableStreamDefaultWriter":[],"XPathExpression":[],"XPathNsResolver":[],"XPathResult":[],"XmlDocument":["Document","EventTarget","Node"],"XmlHttpRequest":["EventTarget","XmlHttpRequestEventTarget"],"XmlHttpRequestEventTarget":["EventTarget"],"XmlHttpRequestResponseType":[],"XmlHttpRequestUpload":["EventTarget","XmlHttpRequestEventTarget"],"XmlSerializer":[],"XrBoundedReferenceSpace":["EventTarget","XrReferenceSpace","XrSpace"],"XrEye":[],"XrFrame":[],"XrHandedness":[],"XrInputSource":[],"XrInputSourceArray":[],"XrInputSourceEvent":["Event"],"XrInputSourceEventInit":[],"XrInputSourcesChangeEvent":["Event"],"XrInputSourcesChangeEventInit":[],"XrLayer":["EventTarget"],"XrPermissionDescriptor":[],"XrPermissionStatus":["EventTarget","PermissionStatus"],"XrPose":[],"XrReferenceSpace":["EventTarget","XrSpace"],"XrReferenceSpaceEvent":["Event"],"XrReferenceSpaceEventInit":[],"XrReferenceSpaceType":[],"XrRenderState":[],"XrRenderStateInit":[],"XrRigidTransform":[],"XrSession":["EventTarget"],"XrSessionEvent":["Event"],"XrSessionEventInit":[],"XrSessionInit":[],"XrSessionMode":[],"XrSessionSupportedPermissionDescriptor":[],"XrSpace":["EventTarget"],"XrSystem":["EventTarget"],"XrTargetRayMode":[],"XrView":[],"XrViewerPose":["XrPose"],"XrViewport":[],"XrVisibilityState":[],"XrWebGlLayer":["EventTarget","XrLayer"],"XrWebGlLayerInit":[],"XsltProcessor":[],"console":[],"css":[],"gpu_buffer_usage":[],"gpu_color_write":[],"gpu_map_mode":[],"gpu_shader_stage":[],"gpu_texture_usage":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/web-sys-0.3.60/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg=web_sys_unstable_apis"]}}},"publish":null,"authors":["The wasm-bindgen Developers"],"categories":[],"keywords":[],"readme":"./README.md","repository":"https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys","homepage":"https://rustwasm.github.io/wasm-bindgen/web-sys/index.html","documentation":"https://rustwasm.github.io/wasm-bindgen/api/web_sys/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"webpki","version":"0.22.0","id":"webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","license":null,"license_file":"LICENSE","description":"Web PKI X.509 Certificate Verification.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"ring","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.16.19","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"untrusted","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"base64","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"webpki","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.22.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"dns_name_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.22.0/tests/dns_name_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"integration","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.22.0/tests/integration.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"alloc":["ring/alloc"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.22.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Brian Smith "],"categories":["cryptography","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/briansmith/webpki","homepage":null,"documentation":"https://briansmith.org/rustdoc/webpki/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"webpki-roots","version":"0.22.5","id":"webpki-roots 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MPL-2.0","license_file":null,"description":"Mozilla's CA root certificates for use with webpki","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"webpki","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.22.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"webpki-roots","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.22.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bin"],"crate_types":["bin"],"name":"process_cert","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.22.5/src/bin/process_cert.rs","edition":"2018","doc":true,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.22.5/Cargo.toml","metadata":null,"publish":null,"authors":["Joseph Birr-Pixton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/rustls/webpki-roots","homepage":"https://github.com/rustls/webpki-roots","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"which","version":"4.3.0","id":"which 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"either","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.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.121","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.5.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tempfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"which","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/which-4.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"basic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/which-4.3.0/tests/basic.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"regex":["dep:regex"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/which-4.3.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true}}},"publish":null,"authors":["Harry Fei "],"categories":["os","filesystem"],"keywords":["which","which-rs","unix","command"],"readme":"README.md","repository":"https://github.com/harryfei/which-rs.git","homepage":null,"documentation":"https://docs.rs/which/","edition":"2018","links":null,"default_run":null,"rust_version":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","doc":true,"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","doc":false,"doctest":false,"test":false}],"features":{"accctrl":[],"aclapi":[],"activation":[],"adhoc":[],"appmgmt":[],"audioclient":[],"audiosessiontypes":[],"avrt":[],"basetsd":[],"bcrypt":[],"bits":[],"bits10_1":[],"bits1_5":[],"bits2_0":[],"bits2_5":[],"bits3_0":[],"bits4_0":[],"bits5_0":[],"bitscfg":[],"bitsmsg":[],"bluetoothapis":[],"bluetoothleapis":[],"bthdef":[],"bthioctl":[],"bthledef":[],"bthsdpdef":[],"bugcodes":[],"cderr":[],"cfg":[],"cfgmgr32":[],"cguid":[],"combaseapi":[],"coml2api":[],"commapi":[],"commctrl":[],"commdlg":[],"commoncontrols":[],"consoleapi":[],"corecrt":[],"corsym":[],"d2d1":[],"d2d1_1":[],"d2d1_2":[],"d2d1_3":[],"d2d1effectauthor":[],"d2d1effects":[],"d2d1effects_1":[],"d2d1effects_2":[],"d2d1svg":[],"d2dbasetypes":[],"d3d":[],"d3d10":[],"d3d10_1":[],"d3d10_1shader":[],"d3d10effect":[],"d3d10misc":[],"d3d10sdklayers":[],"d3d10shader":[],"d3d11":[],"d3d11_1":[],"d3d11_2":[],"d3d11_3":[],"d3d11_4":[],"d3d11on12":[],"d3d11sdklayers":[],"d3d11shader":[],"d3d11tokenizedprogramformat":[],"d3d12":[],"d3d12sdklayers":[],"d3d12shader":[],"d3d9":[],"d3d9caps":[],"d3d9types":[],"d3dcommon":[],"d3dcompiler":[],"d3dcsx":[],"d3dkmdt":[],"d3dkmthk":[],"d3dukmdt":[],"d3dx10core":[],"d3dx10math":[],"d3dx10mesh":[],"datetimeapi":[],"davclnt":[],"dbghelp":[],"dbt":[],"dcommon":[],"dcomp":[],"dcompanimation":[],"dcomptypes":[],"dde":[],"ddraw":[],"ddrawi":[],"ddrawint":[],"debug":["impl-debug"],"debugapi":[],"devguid":[],"devicetopology":[],"devpkey":[],"devpropdef":[],"dinput":[],"dinputd":[],"dispex":[],"dmksctl":[],"dmusicc":[],"docobj":[],"documenttarget":[],"dot1x":[],"dpa_dsa":[],"dpapi":[],"dsgetdc":[],"dsound":[],"dsrole":[],"dvp":[],"dwmapi":[],"dwrite":[],"dwrite_1":[],"dwrite_2":[],"dwrite_3":[],"dxdiag":[],"dxfile":[],"dxgi":[],"dxgi1_2":[],"dxgi1_3":[],"dxgi1_4":[],"dxgi1_5":[],"dxgi1_6":[],"dxgidebug":[],"dxgiformat":[],"dxgitype":[],"dxva2api":[],"dxvahd":[],"eaptypes":[],"enclaveapi":[],"endpointvolume":[],"errhandlingapi":[],"everything":[],"evntcons":[],"evntprov":[],"evntrace":[],"excpt":[],"exdisp":[],"fibersapi":[],"fileapi":[],"functiondiscoverykeys_devpkey":[],"gl-gl":[],"guiddef":[],"handleapi":[],"heapapi":[],"hidclass":[],"hidpi":[],"hidsdi":[],"hidusage":[],"highlevelmonitorconfigurationapi":[],"hstring":[],"http":[],"ifdef":[],"ifmib":[],"imm":[],"impl-debug":[],"impl-default":[],"in6addr":[],"inaddr":[],"inspectable":[],"interlockedapi":[],"intsafe":[],"ioapiset":[],"ipexport":[],"iphlpapi":[],"ipifcons":[],"ipmib":[],"iprtrmib":[],"iptypes":[],"jobapi":[],"jobapi2":[],"knownfolders":[],"ks":[],"ksmedia":[],"ktmtypes":[],"ktmw32":[],"l2cmn":[],"libloaderapi":[],"limits":[],"lmaccess":[],"lmalert":[],"lmapibuf":[],"lmat":[],"lmcons":[],"lmdfs":[],"lmerrlog":[],"lmjoin":[],"lmmsg":[],"lmremutl":[],"lmrepl":[],"lmserver":[],"lmshare":[],"lmstats":[],"lmsvc":[],"lmuse":[],"lmwksta":[],"lowlevelmonitorconfigurationapi":[],"lsalookup":[],"memoryapi":[],"minschannel":[],"minwinbase":[],"minwindef":[],"mmdeviceapi":[],"mmeapi":[],"mmreg":[],"mmsystem":[],"mprapidef":[],"msaatext":[],"mscat":[],"mschapp":[],"mssip":[],"mstcpip":[],"mswsock":[],"mswsockdef":[],"namedpipeapi":[],"namespaceapi":[],"nb30":[],"ncrypt":[],"netioapi":[],"nldef":[],"ntddndis":[],"ntddscsi":[],"ntddser":[],"ntdef":[],"ntlsa":[],"ntsecapi":[],"ntstatus":[],"oaidl":[],"objbase":[],"objidl":[],"objidlbase":[],"ocidl":[],"ole2":[],"oleauto":[],"olectl":[],"oleidl":[],"opmapi":[],"pdh":[],"perflib":[],"physicalmonitorenumerationapi":[],"playsoundapi":[],"portabledevice":[],"portabledeviceapi":[],"portabledevicetypes":[],"powerbase":[],"powersetting":[],"powrprof":[],"processenv":[],"processsnapshot":[],"processthreadsapi":[],"processtopologyapi":[],"profileapi":[],"propidl":[],"propkey":[],"propkeydef":[],"propsys":[],"prsht":[],"psapi":[],"qos":[],"realtimeapiset":[],"reason":[],"restartmanager":[],"restrictederrorinfo":[],"rmxfguid":[],"roapi":[],"robuffer":[],"roerrorapi":[],"rpc":[],"rpcdce":[],"rpcndr":[],"rtinfo":[],"sapi":[],"sapi51":[],"sapi53":[],"sapiddk":[],"sapiddk51":[],"schannel":[],"sddl":[],"securityappcontainer":[],"securitybaseapi":[],"servprov":[],"setupapi":[],"shellapi":[],"shellscalingapi":[],"shlobj":[],"shobjidl":[],"shobjidl_core":[],"shtypes":[],"softpub":[],"spapidef":[],"spellcheck":[],"sporder":[],"sql":[],"sqlext":[],"sqltypes":[],"sqlucode":[],"sspi":[],"std":[],"stralign":[],"stringapiset":[],"strmif":[],"subauth":[],"synchapi":[],"sysinfoapi":[],"systemtopologyapi":[],"taskschd":[],"tcpestats":[],"tcpmib":[],"textstor":[],"threadpoolapiset":[],"threadpoollegacyapiset":[],"timeapi":[],"timezoneapi":[],"tlhelp32":[],"transportsettingcommon":[],"tvout":[],"udpmib":[],"unknwnbase":[],"urlhist":[],"urlmon":[],"usb":[],"usbioctl":[],"usbiodef":[],"usbscan":[],"usbspec":[],"userenv":[],"usp10":[],"utilapiset":[],"uxtheme":[],"vadefs":[],"vcruntime":[],"vsbackup":[],"vss":[],"vsserror":[],"vswriter":[],"wbemads":[],"wbemcli":[],"wbemdisp":[],"wbemprov":[],"wbemtran":[],"wct":[],"werapi":[],"winbase":[],"wincodec":[],"wincodecsdk":[],"wincon":[],"wincontypes":[],"wincred":[],"wincrypt":[],"windef":[],"windot11":[],"windowsceip":[],"windowsx":[],"winefs":[],"winerror":[],"winevt":[],"wingdi":[],"winhttp":[],"wininet":[],"winineti":[],"winioctl":[],"winnetwk":[],"winnls":[],"winnt":[],"winreg":[],"winsafer":[],"winscard":[],"winsmcrd":[],"winsock2":[],"winspool":[],"winstring":[],"winsvc":[],"wintrust":[],"winusb":[],"winusbio":[],"winuser":[],"winver":[],"wlanapi":[],"wlanihv":[],"wlanihvtypes":[],"wlantypes":[],"wlclient":[],"wmistr":[],"wnnc":[],"wow64apiset":[],"wpdmtpextensions":[],"ws2bth":[],"ws2def":[],"ws2ipdef":[],"ws2spi":[],"ws2tcpip":[],"wtsapi32":[],"wtypes":[],"wtypesbase":[],"xinput":[]},"manifest_path":"/home/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,"default_run":null,"rust_version":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","doc":true,"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","doc":false,"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,"default_run":null,"rust_version":null},{"name":"winapi-util","version":"0.1.5","id":"winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"Unlicense/MIT","license_file":null,"description":"A dumping ground for high level safe wrappers over winapi.","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":null,"rename":null,"optional":false,"uses_default_features":true,"features":["std","consoleapi","errhandlingapi","fileapi","minwindef","processenv","winbase","wincon","winerror","winnt"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"winapi-util","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-pc-windows-msvc"]}}},"publish":null,"authors":["Andrew Gallant "],"categories":["os::windows-apis","external-ffi-bindings"],"keywords":["windows","winapi","util","win"],"readme":"README.md","repository":"https://github.com/BurntSushi/winapi-util","homepage":"https://github.com/BurntSushi/winapi-util","documentation":"https://docs.rs/winapi-util","edition":"2018","links":null,"default_run":null,"rust_version":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","doc":true,"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","doc":false,"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,"default_run":null,"rust_version":null},{"name":"windows-sys","version":"0.42.0","id":"windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Rust for Windows","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"windows_aarch64_gnullvm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-pc-windows-gnullvm","registry":null},{"name":"windows_aarch64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-pc-windows-msvc","registry":null},{"name":"windows_aarch64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-uwp-windows-msvc","registry":null},{"name":"windows_i686_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-pc-windows-gnu","registry":null},{"name":"windows_i686_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-pc-windows-msvc","registry":null},{"name":"windows_i686_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-uwp-windows-gnu","registry":null},{"name":"windows_i686_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-uwp-windows-msvc","registry":null},{"name":"windows_x86_64_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-gnu","registry":null},{"name":"windows_x86_64_gnullvm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-gnullvm","registry":null},{"name":"windows_x86_64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-msvc","registry":null},{"name":"windows_x86_64_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-uwp-windows-gnu","registry":null},{"name":"windows_x86_64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.42.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-uwp-windows-msvc","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"Win32":[],"Win32_AI":["Win32"],"Win32_AI_MachineLearning":["Win32_AI"],"Win32_AI_MachineLearning_DirectML":["Win32_AI_MachineLearning"],"Win32_AI_MachineLearning_WinML":["Win32_AI_MachineLearning"],"Win32_Data":["Win32"],"Win32_Data_HtmlHelp":["Win32_Data"],"Win32_Data_RightsManagement":["Win32_Data"],"Win32_Data_Xml":["Win32_Data"],"Win32_Data_Xml_MsXml":["Win32_Data_Xml"],"Win32_Data_Xml_XmlLite":["Win32_Data_Xml"],"Win32_Devices":["Win32"],"Win32_Devices_AllJoyn":["Win32_Devices"],"Win32_Devices_BiometricFramework":["Win32_Devices"],"Win32_Devices_Bluetooth":["Win32_Devices"],"Win32_Devices_Communication":["Win32_Devices"],"Win32_Devices_DeviceAccess":["Win32_Devices"],"Win32_Devices_DeviceAndDriverInstallation":["Win32_Devices"],"Win32_Devices_DeviceQuery":["Win32_Devices"],"Win32_Devices_Display":["Win32_Devices"],"Win32_Devices_Enumeration":["Win32_Devices"],"Win32_Devices_Enumeration_Pnp":["Win32_Devices_Enumeration"],"Win32_Devices_Fax":["Win32_Devices"],"Win32_Devices_FunctionDiscovery":["Win32_Devices"],"Win32_Devices_Geolocation":["Win32_Devices"],"Win32_Devices_HumanInterfaceDevice":["Win32_Devices"],"Win32_Devices_ImageAcquisition":["Win32_Devices"],"Win32_Devices_PortableDevices":["Win32_Devices"],"Win32_Devices_Properties":["Win32_Devices"],"Win32_Devices_Pwm":["Win32_Devices"],"Win32_Devices_Sensors":["Win32_Devices"],"Win32_Devices_SerialCommunication":["Win32_Devices"],"Win32_Devices_Tapi":["Win32_Devices"],"Win32_Devices_Usb":["Win32_Devices"],"Win32_Devices_WebServicesOnDevices":["Win32_Devices"],"Win32_Foundation":["Win32"],"Win32_Gaming":["Win32"],"Win32_Globalization":["Win32"],"Win32_Graphics":["Win32"],"Win32_Graphics_CompositionSwapchain":["Win32_Graphics"],"Win32_Graphics_DXCore":["Win32_Graphics"],"Win32_Graphics_Direct2D":["Win32_Graphics"],"Win32_Graphics_Direct2D_Common":["Win32_Graphics_Direct2D"],"Win32_Graphics_Direct3D":["Win32_Graphics"],"Win32_Graphics_Direct3D10":["Win32_Graphics"],"Win32_Graphics_Direct3D11":["Win32_Graphics"],"Win32_Graphics_Direct3D11on12":["Win32_Graphics"],"Win32_Graphics_Direct3D12":["Win32_Graphics"],"Win32_Graphics_Direct3D9":["Win32_Graphics"],"Win32_Graphics_Direct3D9on12":["Win32_Graphics"],"Win32_Graphics_Direct3D_Dxc":["Win32_Graphics_Direct3D"],"Win32_Graphics_Direct3D_Fxc":["Win32_Graphics_Direct3D"],"Win32_Graphics_DirectComposition":["Win32_Graphics"],"Win32_Graphics_DirectDraw":["Win32_Graphics"],"Win32_Graphics_DirectManipulation":["Win32_Graphics"],"Win32_Graphics_DirectWrite":["Win32_Graphics"],"Win32_Graphics_Dwm":["Win32_Graphics"],"Win32_Graphics_Dxgi":["Win32_Graphics"],"Win32_Graphics_Dxgi_Common":["Win32_Graphics_Dxgi"],"Win32_Graphics_Gdi":["Win32_Graphics"],"Win32_Graphics_Hlsl":["Win32_Graphics"],"Win32_Graphics_Imaging":["Win32_Graphics"],"Win32_Graphics_Imaging_D2D":["Win32_Graphics_Imaging"],"Win32_Graphics_OpenGL":["Win32_Graphics"],"Win32_Graphics_Printing":["Win32_Graphics"],"Win32_Graphics_Printing_PrintTicket":["Win32_Graphics_Printing"],"Win32_Management":["Win32"],"Win32_Management_MobileDeviceManagementRegistration":["Win32_Management"],"Win32_Media":["Win32"],"Win32_Media_Audio":["Win32_Media"],"Win32_Media_Audio_Apo":["Win32_Media_Audio"],"Win32_Media_Audio_DirectMusic":["Win32_Media_Audio"],"Win32_Media_Audio_DirectSound":["Win32_Media_Audio"],"Win32_Media_Audio_Endpoints":["Win32_Media_Audio"],"Win32_Media_Audio_XAudio2":["Win32_Media_Audio"],"Win32_Media_DeviceManager":["Win32_Media"],"Win32_Media_DirectShow":["Win32_Media"],"Win32_Media_DirectShow_Xml":["Win32_Media_DirectShow"],"Win32_Media_DxMediaObjects":["Win32_Media"],"Win32_Media_KernelStreaming":["Win32_Media"],"Win32_Media_LibrarySharingServices":["Win32_Media"],"Win32_Media_MediaFoundation":["Win32_Media"],"Win32_Media_MediaPlayer":["Win32_Media"],"Win32_Media_Multimedia":["Win32_Media"],"Win32_Media_PictureAcquisition":["Win32_Media"],"Win32_Media_Speech":["Win32_Media"],"Win32_Media_Streaming":["Win32_Media"],"Win32_Media_WindowsMediaFormat":["Win32_Media"],"Win32_NetworkManagement":["Win32"],"Win32_NetworkManagement_Dhcp":["Win32_NetworkManagement"],"Win32_NetworkManagement_Dns":["Win32_NetworkManagement"],"Win32_NetworkManagement_InternetConnectionWizard":["Win32_NetworkManagement"],"Win32_NetworkManagement_IpHelper":["Win32_NetworkManagement"],"Win32_NetworkManagement_MobileBroadband":["Win32_NetworkManagement"],"Win32_NetworkManagement_Multicast":["Win32_NetworkManagement"],"Win32_NetworkManagement_Ndis":["Win32_NetworkManagement"],"Win32_NetworkManagement_NetBios":["Win32_NetworkManagement"],"Win32_NetworkManagement_NetManagement":["Win32_NetworkManagement"],"Win32_NetworkManagement_NetShell":["Win32_NetworkManagement"],"Win32_NetworkManagement_NetworkDiagnosticsFramework":["Win32_NetworkManagement"],"Win32_NetworkManagement_NetworkPolicyServer":["Win32_NetworkManagement"],"Win32_NetworkManagement_P2P":["Win32_NetworkManagement"],"Win32_NetworkManagement_QoS":["Win32_NetworkManagement"],"Win32_NetworkManagement_Rras":["Win32_NetworkManagement"],"Win32_NetworkManagement_Snmp":["Win32_NetworkManagement"],"Win32_NetworkManagement_WNet":["Win32_NetworkManagement"],"Win32_NetworkManagement_WebDav":["Win32_NetworkManagement"],"Win32_NetworkManagement_WiFi":["Win32_NetworkManagement"],"Win32_NetworkManagement_WindowsConnectNow":["Win32_NetworkManagement"],"Win32_NetworkManagement_WindowsConnectionManager":["Win32_NetworkManagement"],"Win32_NetworkManagement_WindowsFilteringPlatform":["Win32_NetworkManagement"],"Win32_NetworkManagement_WindowsFirewall":["Win32_NetworkManagement"],"Win32_NetworkManagement_WindowsNetworkVirtualization":["Win32_NetworkManagement"],"Win32_Networking":["Win32"],"Win32_Networking_ActiveDirectory":["Win32_Networking"],"Win32_Networking_BackgroundIntelligentTransferService":["Win32_Networking"],"Win32_Networking_Clustering":["Win32_Networking"],"Win32_Networking_HttpServer":["Win32_Networking"],"Win32_Networking_Ldap":["Win32_Networking"],"Win32_Networking_NetworkListManager":["Win32_Networking"],"Win32_Networking_RemoteDifferentialCompression":["Win32_Networking"],"Win32_Networking_WebSocket":["Win32_Networking"],"Win32_Networking_WinHttp":["Win32_Networking"],"Win32_Networking_WinInet":["Win32_Networking"],"Win32_Networking_WinSock":["Win32_Networking"],"Win32_Networking_WindowsWebServices":["Win32_Networking"],"Win32_Security":["Win32"],"Win32_Security_AppLocker":["Win32_Security"],"Win32_Security_Authentication":["Win32_Security"],"Win32_Security_Authentication_Identity":["Win32_Security_Authentication"],"Win32_Security_Authentication_Identity_Provider":["Win32_Security_Authentication_Identity"],"Win32_Security_Authorization":["Win32_Security"],"Win32_Security_Authorization_UI":["Win32_Security_Authorization"],"Win32_Security_ConfigurationSnapin":["Win32_Security"],"Win32_Security_Credentials":["Win32_Security"],"Win32_Security_Cryptography":["Win32_Security"],"Win32_Security_Cryptography_Catalog":["Win32_Security_Cryptography"],"Win32_Security_Cryptography_Certificates":["Win32_Security_Cryptography"],"Win32_Security_Cryptography_Sip":["Win32_Security_Cryptography"],"Win32_Security_Cryptography_UI":["Win32_Security_Cryptography"],"Win32_Security_DiagnosticDataQuery":["Win32_Security"],"Win32_Security_DirectoryServices":["Win32_Security"],"Win32_Security_EnterpriseData":["Win32_Security"],"Win32_Security_ExtensibleAuthenticationProtocol":["Win32_Security"],"Win32_Security_Isolation":["Win32_Security"],"Win32_Security_LicenseProtection":["Win32_Security"],"Win32_Security_NetworkAccessProtection":["Win32_Security"],"Win32_Security_Tpm":["Win32_Security"],"Win32_Security_WinTrust":["Win32_Security"],"Win32_Security_WinWlx":["Win32_Security"],"Win32_Storage":["Win32"],"Win32_Storage_Cabinets":["Win32_Storage"],"Win32_Storage_CloudFilters":["Win32_Storage"],"Win32_Storage_Compression":["Win32_Storage"],"Win32_Storage_DataDeduplication":["Win32_Storage"],"Win32_Storage_DistributedFileSystem":["Win32_Storage"],"Win32_Storage_EnhancedStorage":["Win32_Storage"],"Win32_Storage_FileHistory":["Win32_Storage"],"Win32_Storage_FileServerResourceManager":["Win32_Storage"],"Win32_Storage_FileSystem":["Win32_Storage"],"Win32_Storage_Imapi":["Win32_Storage"],"Win32_Storage_IndexServer":["Win32_Storage"],"Win32_Storage_InstallableFileSystems":["Win32_Storage"],"Win32_Storage_IscsiDisc":["Win32_Storage"],"Win32_Storage_Jet":["Win32_Storage"],"Win32_Storage_OfflineFiles":["Win32_Storage"],"Win32_Storage_OperationRecorder":["Win32_Storage"],"Win32_Storage_Packaging":["Win32_Storage"],"Win32_Storage_Packaging_Appx":["Win32_Storage_Packaging"],"Win32_Storage_Packaging_Opc":["Win32_Storage_Packaging"],"Win32_Storage_ProjectedFileSystem":["Win32_Storage"],"Win32_Storage_StructuredStorage":["Win32_Storage"],"Win32_Storage_Vhd":["Win32_Storage"],"Win32_Storage_VirtualDiskService":["Win32_Storage"],"Win32_Storage_Vss":["Win32_Storage"],"Win32_Storage_Xps":["Win32_Storage"],"Win32_Storage_Xps_Printing":["Win32_Storage_Xps"],"Win32_System":["Win32"],"Win32_System_AddressBook":["Win32_System"],"Win32_System_Antimalware":["Win32_System"],"Win32_System_ApplicationInstallationAndServicing":["Win32_System"],"Win32_System_ApplicationVerifier":["Win32_System"],"Win32_System_AssessmentTool":["Win32_System"],"Win32_System_Com":["Win32_System"],"Win32_System_Com_CallObj":["Win32_System_Com"],"Win32_System_Com_ChannelCredentials":["Win32_System_Com"],"Win32_System_Com_Events":["Win32_System_Com"],"Win32_System_Com_Marshal":["Win32_System_Com"],"Win32_System_Com_StructuredStorage":["Win32_System_Com"],"Win32_System_Com_UI":["Win32_System_Com"],"Win32_System_Com_Urlmon":["Win32_System_Com"],"Win32_System_ComponentServices":["Win32_System"],"Win32_System_Console":["Win32_System"],"Win32_System_Contacts":["Win32_System"],"Win32_System_CorrelationVector":["Win32_System"],"Win32_System_DataExchange":["Win32_System"],"Win32_System_DeploymentServices":["Win32_System"],"Win32_System_DesktopSharing":["Win32_System"],"Win32_System_DeveloperLicensing":["Win32_System"],"Win32_System_Diagnostics":["Win32_System"],"Win32_System_Diagnostics_Ceip":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_Debug":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_Etw":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_ProcessSnapshotting":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_ToolHelp":["Win32_System_Diagnostics"],"Win32_System_DistributedTransactionCoordinator":["Win32_System"],"Win32_System_Environment":["Win32_System"],"Win32_System_ErrorReporting":["Win32_System"],"Win32_System_EventCollector":["Win32_System"],"Win32_System_EventLog":["Win32_System"],"Win32_System_EventNotificationService":["Win32_System"],"Win32_System_GroupPolicy":["Win32_System"],"Win32_System_HostCompute":["Win32_System"],"Win32_System_HostComputeNetwork":["Win32_System"],"Win32_System_HostComputeSystem":["Win32_System"],"Win32_System_Hypervisor":["Win32_System"],"Win32_System_IO":["Win32_System"],"Win32_System_Iis":["Win32_System"],"Win32_System_Ioctl":["Win32_System"],"Win32_System_JobObjects":["Win32_System"],"Win32_System_Js":["Win32_System"],"Win32_System_Kernel":["Win32_System"],"Win32_System_LibraryLoader":["Win32_System"],"Win32_System_Mailslots":["Win32_System"],"Win32_System_Mapi":["Win32_System"],"Win32_System_Memory":["Win32_System"],"Win32_System_Memory_NonVolatile":["Win32_System_Memory"],"Win32_System_MessageQueuing":["Win32_System"],"Win32_System_MixedReality":["Win32_System"],"Win32_System_Mmc":["Win32_System"],"Win32_System_Ole":["Win32_System"],"Win32_System_ParentalControls":["Win32_System"],"Win32_System_PasswordManagement":["Win32_System"],"Win32_System_Performance":["Win32_System"],"Win32_System_Performance_HardwareCounterProfiling":["Win32_System_Performance"],"Win32_System_Pipes":["Win32_System"],"Win32_System_Power":["Win32_System"],"Win32_System_ProcessStatus":["Win32_System"],"Win32_System_RealTimeCommunications":["Win32_System"],"Win32_System_Recovery":["Win32_System"],"Win32_System_Registry":["Win32_System"],"Win32_System_RemoteAssistance":["Win32_System"],"Win32_System_RemoteDesktop":["Win32_System"],"Win32_System_RemoteManagement":["Win32_System"],"Win32_System_RestartManager":["Win32_System"],"Win32_System_Restore":["Win32_System"],"Win32_System_Rpc":["Win32_System"],"Win32_System_Search":["Win32_System"],"Win32_System_Search_Common":["Win32_System_Search"],"Win32_System_SecurityCenter":["Win32_System"],"Win32_System_ServerBackup":["Win32_System"],"Win32_System_Services":["Win32_System"],"Win32_System_SettingsManagementInfrastructure":["Win32_System"],"Win32_System_SetupAndMigration":["Win32_System"],"Win32_System_Shutdown":["Win32_System"],"Win32_System_SideShow":["Win32_System"],"Win32_System_StationsAndDesktops":["Win32_System"],"Win32_System_SubsystemForLinux":["Win32_System"],"Win32_System_SystemInformation":["Win32_System"],"Win32_System_SystemServices":["Win32_System"],"Win32_System_TaskScheduler":["Win32_System"],"Win32_System_Threading":["Win32_System"],"Win32_System_Time":["Win32_System"],"Win32_System_TpmBaseServices":["Win32_System"],"Win32_System_TransactionServer":["Win32_System"],"Win32_System_UpdateAgent":["Win32_System"],"Win32_System_UpdateAssessment":["Win32_System"],"Win32_System_UserAccessLogging":["Win32_System"],"Win32_System_VirtualDosMachines":["Win32_System"],"Win32_System_WinRT":["Win32_System"],"Win32_System_WinRT_AllJoyn":["Win32_System_WinRT"],"Win32_System_WinRT_Composition":["Win32_System_WinRT"],"Win32_System_WinRT_CoreInputView":["Win32_System_WinRT"],"Win32_System_WinRT_Direct3D11":["Win32_System_WinRT"],"Win32_System_WinRT_Display":["Win32_System_WinRT"],"Win32_System_WinRT_Graphics":["Win32_System_WinRT"],"Win32_System_WinRT_Graphics_Capture":["Win32_System_WinRT_Graphics"],"Win32_System_WinRT_Graphics_Direct2D":["Win32_System_WinRT_Graphics"],"Win32_System_WinRT_Graphics_Imaging":["Win32_System_WinRT_Graphics"],"Win32_System_WinRT_Holographic":["Win32_System_WinRT"],"Win32_System_WinRT_Isolation":["Win32_System_WinRT"],"Win32_System_WinRT_ML":["Win32_System_WinRT"],"Win32_System_WinRT_Media":["Win32_System_WinRT"],"Win32_System_WinRT_Pdf":["Win32_System_WinRT"],"Win32_System_WinRT_Printing":["Win32_System_WinRT"],"Win32_System_WinRT_Shell":["Win32_System_WinRT"],"Win32_System_WinRT_Storage":["Win32_System_WinRT"],"Win32_System_WindowsProgramming":["Win32_System"],"Win32_System_WindowsSync":["Win32_System"],"Win32_System_Wmi":["Win32_System"],"Win32_UI":["Win32"],"Win32_UI_Accessibility":["Win32_UI"],"Win32_UI_Animation":["Win32_UI"],"Win32_UI_ColorSystem":["Win32_UI"],"Win32_UI_Controls":["Win32_UI"],"Win32_UI_Controls_Dialogs":["Win32_UI_Controls"],"Win32_UI_Controls_RichEdit":["Win32_UI_Controls"],"Win32_UI_HiDpi":["Win32_UI"],"Win32_UI_Input":["Win32_UI"],"Win32_UI_Input_Ime":["Win32_UI_Input"],"Win32_UI_Input_Ink":["Win32_UI_Input"],"Win32_UI_Input_KeyboardAndMouse":["Win32_UI_Input"],"Win32_UI_Input_Pointer":["Win32_UI_Input"],"Win32_UI_Input_Radial":["Win32_UI_Input"],"Win32_UI_Input_Touch":["Win32_UI_Input"],"Win32_UI_Input_XboxController":["Win32_UI_Input"],"Win32_UI_InteractionContext":["Win32_UI"],"Win32_UI_LegacyWindowsEnvironmentFeatures":["Win32_UI"],"Win32_UI_Magnification":["Win32_UI"],"Win32_UI_Notifications":["Win32_UI"],"Win32_UI_Ribbon":["Win32_UI"],"Win32_UI_Shell":["Win32_UI"],"Win32_UI_Shell_Common":["Win32_UI_Shell"],"Win32_UI_Shell_PropertiesSystem":["Win32_UI_Shell"],"Win32_UI_TabletPC":["Win32_UI"],"Win32_UI_TextServices":["Win32_UI"],"Win32_UI_WindowsAndMessaging":["Win32_UI"],"Win32_UI_Wpf":["Win32_UI"],"Win32_UI_Xaml":["Win32_UI"],"Win32_UI_Xaml_Diagnostics":["Win32_UI_Xaml"],"default":[],"deprecated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[],"all-features":true}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":"readme.md","repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.49"},{"name":"windows_aarch64_gnullvm","version":"0.42.0","id":"windows_aarch64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_aarch64_gnullvm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"windows_aarch64_msvc","version":"0.42.0","id":"windows_aarch64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_aarch64_msvc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"windows_i686_gnu","version":"0.42.0","id":"windows_i686_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_i686_gnu","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"windows_i686_msvc","version":"0.42.0","id":"windows_i686_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_i686_msvc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"windows_x86_64_gnu","version":"0.42.0","id":"windows_x86_64_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_gnu","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"windows_x86_64_gnullvm","version":"0.42.0","id":"windows_x86_64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_gnullvm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"windows_x86_64_msvc","version":"0.42.0","id":"windows_x86_64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Code gen support for the windows crate","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.0/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-pc-windows-msvc","targets":[]}}},"publish":null,"authors":["Microsoft"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/microsoft/windows-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"winreg","version":"0.10.1","id":"winreg 0.10.1 (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.9","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},{"name":"tempfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"~3.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"winreg","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"basic_usage","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/basic_usage.rs","edition":"2015","required-features":["chrono"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"enum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/enum.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"load_app_key","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/load_app_key.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"transactions","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/transactions.rs","edition":"2015","required-features":["transactions"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"serialization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/serialization.rs","edition":"2015","required-features":["serialization-serde"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"map_key_serialization","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/map_key_serialization.rs","edition":"2015","required-features":["serialization-serde"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"installed_apps","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/examples/installed_apps.rs","edition":"2015","required-features":["serialization-serde"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"reg_key","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/tests/reg_key.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"chrono":["dep:chrono"],"serde":["dep:serde"],"serialization-serde":["transactions","serde"],"transactions":["winapi/ktmw32"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/winreg-0.10.1/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"targets":["x86_64-pc-windows-msvc","i686-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,"default_run":null,"rust_version":null}],"workspace_members":["direct 0.1.0 (path+file:///home/jake/code/krates/tests/direct)"],"resolve":{"nodes":[{"id":"adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"android_system_properties 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"async-channel 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["concurrent-queue 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)","event-listener 2.5.3 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"concurrent_queue","pkg":"concurrent-queue 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"event_listener","pkg":"event-listener 2.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"async-stream 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-stream-impl 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_stream_impl","pkg":"async-stream-impl 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"async-stream-impl 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"axum 0.5.17 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","axum-core 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","matchit 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","sync_wrapper 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","tower-http 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_trait","pkg":"async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"axum_core","pkg":"axum-core 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bitflags","pkg":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_body","pkg":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"hyper","pkg":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itoa","pkg":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"matchit","pkg":"matchit 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"memchr","pkg":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mime","pkg":"mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"sync_wrapper","pkg":"sync_wrapper 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower","pkg":"tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_http","pkg":"tower-http 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_layer","pkg":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"axum-core 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_trait","pkg":"async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_body","pkg":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mime","pkg":"mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_layer","pkg":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"cache-padded 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cc 1.0.73 (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":"chrono 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["iana-time-zone 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","num-integer 0.1.45 (registry+https://github.com/rust-lang/crates.io-index)","num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"iana_time_zone","pkg":"iana-time-zone 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"js_sys","pkg":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))"}]},{"name":"num_integer","pkg":"num-integer 0.1.45 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"num_traits","pkg":"num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"time","pkg":"time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen","pkg":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", 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":["clock","default","iana-time-zone","js-sys","oldtime","std","time","wasm-bindgen","wasmbind","winapi"]},{"id":"codespan-reporting 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["termcolor 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)","unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"termcolor","pkg":"termcolor 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_width","pkg":"unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"concurrent-queue 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cache-padded 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cache_padded","pkg":"cache-padded 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"core-foundation-sys 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"crc32fast 1.3.2 (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":["default","std"]},{"id":"cxx 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","cxxbridge-flags 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","cxxbridge-macro 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","link-cplusplus 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cc","pkg":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"cxxbridge_flags","pkg":"cxxbridge-flags 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"cxxbridge_macro","pkg":"cxxbridge-macro 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"link_cplusplus","pkg":"link-cplusplus 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","default","std"]},{"id":"cxx-build 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","codespan-reporting 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","scratch 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cc","pkg":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"codespan_reporting","pkg":"codespan-reporting 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"once_cell","pkg":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"scratch","pkg":"scratch 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"cxxbridge-flags 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"cxxbridge-macro 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"direct 0.1.0 (path+file:///home/jake/code/krates/tests/direct)","dependencies":["google-cloud-gax 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","google-cloud-googleapis 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","google-cloud-pubsub 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"google_cloud_gax","pkg":"google-cloud-gax 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"google_cloud_googleapis","pkg":"google-cloud-googleapis 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"google_cloud_pubsub","pkg":"google-cloud-pubsub 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","use_std"]},{"id":"encoding_rs 0.8.31 (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":["alloc","default"]},{"id":"event-listener 2.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"instant","pkg":"instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]}],"features":[]},{"id":"fixedbitset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"flate2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","miniz_oxide 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"crc32fast","pkg":"crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"miniz_oxide","pkg":"miniz_oxide 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null},{"kind":null,"target":"cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))"}]}],"features":["default","miniz_oxide","rust_backend"]},{"id":"fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"percent_encoding","pkg":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"futures-channel 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","default","std"]},{"id":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","std"]},{"id":"futures-sink 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","std"]},{"id":"futures-task 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc"]},{"id":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-task 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_task","pkg":"futures-task 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (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}]}],"features":["alloc"]},{"id":"getrandom 0.2.8 (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.136 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)"],"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":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"wasi","pkg":"wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"wasi\")"}]}],"features":["std"]},{"id":"google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","chrono 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)","google-cloud-metadata 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","home 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)","jsonwebtoken 8.1.1 (registry+https://github.com/rust-lang/crates.io-index)","reqwest 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","urlencoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_trait","pkg":"async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"base64","pkg":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"chrono","pkg":"chrono 0.4.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"google_cloud_metadata","pkg":"google-cloud-metadata 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"home","pkg":"home 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"jwt","pkg":"jsonwebtoken 8.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"reqwest","pkg":"reqwest 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"json","pkg":"serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"urlencoding","pkg":"urlencoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["rustls-tls"]},{"id":"google-cloud-gax 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-retry 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","tonic 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"google_cloud_auth","pkg":"google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_retry","pkg":"tokio-retry 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_util","pkg":"tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tonic","pkg":"tonic 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower","pkg":"tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["rustls-tls"]},{"id":"google-cloud-googleapis 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","tonic 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","tonic-build 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"prost","pkg":"prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_types","pkg":"prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tonic","pkg":"tonic 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tonic_build","pkg":"tonic-build 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":["pubsub"]},{"id":"google-cloud-metadata 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["reqwest 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"reqwest","pkg":"reqwest 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["rustls-tls"]},{"id":"google-cloud-pubsub 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-channel 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","async-stream 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","google-cloud-gax 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","google-cloud-googleapis 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","prost 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)","prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_channel","pkg":"async-channel 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"async_stream","pkg":"async-stream 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"google_cloud_auth","pkg":"google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"google_cloud_gax","pkg":"google-cloud-gax 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"google_cloud_googleapis","pkg":"google-cloud-googleapis 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost","pkg":"prost 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_types","pkg":"prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["rustls-tls"]},{"id":"h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fnv","pkg":"fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_sink","pkg":"futures-sink 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_util","pkg":"tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["raw"]},{"id":"heck 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"home 0.5.4 (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":"cfg(windows)"}]}],"features":[]},{"id":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fnv","pkg":"fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itoa","pkg":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"http-range-header 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"httparse 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"httpdate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","futures-channel 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","httparse 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","httpdate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","socket2 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_channel","pkg":"futures-channel 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"h2","pkg":"h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_body","pkg":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"httparse","pkg":"httparse 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"httpdate","pkg":"httpdate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itoa","pkg":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"socket2","pkg":"socket2 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"want","pkg":"want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["client","default","full","h2","http1","http2","runtime","server","socket2","stream","tcp"]},{"id":"hyper-rustls 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"hyper","pkg":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustls","pkg":"rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_rustls","pkg":"tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"hyper-timeout 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-io-timeout 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"hyper","pkg":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_io_timeout","pkg":"tokio-io-timeout 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"iana-time-zone 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["android_system_properties 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","core-foundation-sys 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","iana-time-zone-haiku 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"android_system_properties","pkg":"android_system_properties 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"android\")"}]},{"name":"core_foundation_sys","pkg":"core-foundation-sys 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))"}]},{"name":"iana_time_zone_haiku","pkg":"iana-time-zone-haiku 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"haiku\")"}]},{"name":"js_sys","pkg":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"name":"wasm_bindgen","pkg":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"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":["fallback"]},{"id":"iana-time-zone-haiku 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cxx 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","cxx-build 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cxx","pkg":"cxx 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cxx_build","pkg":"cxx-build 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-bidi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_bidi","pkg":"unicode-bidi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_normalization","pkg":"unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"hashbrown","pkg":"hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"instant 0.1.12 (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":"ipnet 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"either","pkg":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","use_alloc","use_std"]},{"id":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"wasm_bindgen","pkg":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"jsonwebtoken 8.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","pem 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","simple_asn1 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"base64","pkg":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pem","pkg":"pem 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ring","pkg":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde_json","pkg":"serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"simple_asn1","pkg":"simple_asn1 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","pem","simple_asn1","use_pem"]},{"id":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"link-cplusplus 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cc","pkg":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":["default"]},{"id":"lock_api 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"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.4.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)"],"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":"matchit 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"miniz_oxide 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"adler","pkg":"adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"mio 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"},{"kind":null,"target":"cfg(target_os = \"wasi\")"}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasi","pkg":"wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"wasi\")"}]},{"name":"windows_sys","pkg":"windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","net","os-ext","os-poll"]},{"id":"multimap 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","num-integer 0.1.45 (registry+https://github.com/rust-lang/crates.io-index)","num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"num_integer","pkg":"num-integer 0.1.45 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"num_traits","pkg":"num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"num-integer 0.1.45 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"num_traits","pkg":"num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["i128"]},{"id":"num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":["i128"]},{"id":"num_threads 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))"}]}],"features":[]},{"id":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","race","std"]},{"id":"parking_lot 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["lock_api 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot_core 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"lock_api","pkg":"lock_api 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"parking_lot_core","pkg":"parking_lot_core 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"parking_lot_core 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.42.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}]},{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"syscall","pkg":"redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"redox\")"}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"pem 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"base64","pkg":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default"]},{"id":"petgraph 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["fixedbitset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"fixedbitset","pkg":"fixedbitset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["pin-project-internal 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"pin_project_internal","pkg":"pin-project-internal 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project-internal 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"pin-project-lite 0.2.9 (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":"ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["simd","std"]},{"id":"prettyplease 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"unicode_ident","pkg":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro","span-locations"]},{"id":"prost 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","prost-derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_derive","pkg":"prost-derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","prost-derive","std"]},{"id":"prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","prost-derive 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_derive","pkg":"prost-derive 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","prost-derive","std"]},{"id":"prost-build 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","heck 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","multimap 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","petgraph 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","regex 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)","which 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"heck","pkg":"heck 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itertools","pkg":"itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"lazy_static","pkg":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"multimap","pkg":"multimap 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"petgraph","pkg":"petgraph 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost","pkg":"prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_types","pkg":"prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"regex","pkg":"regex 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tempfile","pkg":"tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"which","pkg":"which 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"prost-derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"anyhow","pkg":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itertools","pkg":"itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"prost-derive 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"anyhow","pkg":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itertools","pkg":"itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"prost-types 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost","pkg":"prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","proc-macro"]},{"id":"rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"rand_chacha","pkg":"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_core","pkg":"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","default","getrandom","libc","rand_chacha","small_rng","std","std_rng"]},{"id":"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ppv_lite86","pkg":"ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand_core","pkg":"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std"]},{"id":"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom","pkg":"getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","getrandom","std"]},{"id":"redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bitflags","pkg":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"regex 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["regex-syntax 0.6.27 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"regex_syntax","pkg":"regex-syntax 0.6.27 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["std","unicode-bool"]},{"id":"regex-syntax 0.6.27 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["unicode-bool"]},{"id":"remove_dir_all 0.5.3 (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":"cfg(windows)"}]}],"features":[]},{"id":"reqwest 0.11.12 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","encoding_rs 0.8.31 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","hyper-rustls 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","ipnet 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","rustls-pemfile 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","serde_urlencoded 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen-futures 0.4.33 (registry+https://github.com/rust-lang/crates.io-index)","web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","webpki-roots 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","winreg 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"base64","pkg":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"encoding_rs","pkg":"encoding_rs 0.8.31 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"h2","pkg":"h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_body","pkg":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"hyper","pkg":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"hyper_rustls","pkg":"hyper-rustls 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"ipnet","pkg":"ipnet 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"js_sys","pkg":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"mime","pkg":"mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"once_cell","pkg":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"percent_encoding","pkg":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"rustls","pkg":"rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"rustls_pemfile","pkg":"rustls-pemfile 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde_json","pkg":"serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null},{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"name":"serde_urlencoded","pkg":"serde_urlencoded 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"tokio_rustls","pkg":"tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"url","pkg":"url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen","pkg":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"name":"wasm_bindgen_futures","pkg":"wasm-bindgen-futures 0.4.33 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"name":"web_sys","pkg":"web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"wasm32\")"}]},{"name":"webpki_roots","pkg":"webpki-roots 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(target_arch = \"wasm32\"))"}]},{"name":"winreg","pkg":"winreg 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["__rustls","__tls","hyper-rustls","json","rustls","rustls-pemfile","rustls-tls","rustls-tls-webpki-roots","serde_json","tokio-rustls","webpki-roots"]},{"id":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cc","pkg":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"android\", target_os = \"linux\"))"}]},{"name":"once_cell","pkg":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"android\", target_os = \"linux\"))"},{"kind":null,"target":"cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))"}]},{"name":"spin","pkg":"spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_arch = \"x86\", target_arch = \"x86_64\", all(any(target_arch = \"aarch64\", target_arch = \"arm\"), any(target_os = \"android\", target_os = \"fuchsia\", target_os = \"linux\"))))"}]},{"name":"untrusted","pkg":"untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"web_sys","pkg":"web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))"}]},{"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":["alloc","default","dev_urandom_fallback","once_cell","std"]},{"id":"rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","sct 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ring","pkg":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"sct","pkg":"sct 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"webpki","pkg":"webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["dangerous_configuration","default","log","logging","tls12"]},{"id":"rustls-pemfile 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"base64","pkg":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ryu 1.0.11 (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":"scratch 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"sct 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ring","pkg":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"untrusted","pkg":"untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde_derive 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde_derive","pkg":"serde_derive 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","default","derive","serde_derive","std"]},{"id":"serde_derive 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"serde_json 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","ryu 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"itoa","pkg":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ryu","pkg":"ryu 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"serde_urlencoded 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","ryu 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"form_urlencoded","pkg":"form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"itoa","pkg":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ryu","pkg":"ryu 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"simple_asn1 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","time 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"num_bigint","pkg":"num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"num_traits","pkg":"num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"time","pkg":"time 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"slab 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":["default","std"]},{"id":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"socket2 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.136 (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.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["all"]},{"id":"spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"unicode_ident","pkg":"unicode-ident 1.0.5 (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":"sync_wrapper 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"fastrand","pkg":"fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(unix, target_os = \"wasi\"))"}]},{"name":"syscall","pkg":"redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"redox\")"}]},{"name":"remove_dir_all","pkg":"remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":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":"termcolor 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi_util","pkg":"winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["thiserror-impl 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"thiserror_impl","pkg":"thiserror-impl 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"thiserror-impl 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","wasi 0.10.0+wasi-snapshot-preview1 (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.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasi","pkg":"wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(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":[]},{"id":"time 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","num_threads 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","time-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"itoa","pkg":"itoa 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_family = \"unix\")"}]},{"name":"num_threads","pkg":"num_threads 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_family = \"unix\")"}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"time_core","pkg":"time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"time_macros","pkg":"time-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","formatting","macros","parsing","std"]},{"id":"time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"time-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"time_core","pkg":"time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["formatting","parsing"]},{"id":"tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["tinyvec_macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"tinyvec_macros","pkg":"tinyvec_macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","default","tinyvec_macros"]},{"id":"tinyvec_macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","mio 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","parking_lot 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","socket2 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio-macros 1.8.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":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"memchr","pkg":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"mio","pkg":"mio 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"parking_lot","pkg":"parking_lot 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"socket2","pkg":"socket2 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))"}]},{"name":"tokio_macros","pkg":"tokio-macros 1.8.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(windows)"}]}],"features":["bytes","default","fs","io-std","io-util","libc","macros","memchr","mio","net","parking_lot","rt","socket2","sync","time","tokio-macros","winapi"]},{"id":"tokio-io-timeout 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tokio-macros 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tokio-retry 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"pin_project","pkg":"pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand","pkg":"rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rustls","pkg":"rustls 0.20.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"webpki","pkg":"webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","logging","tls12"]},{"id":"tokio-stream 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","time"]},{"id":"tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-sink 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_sink","pkg":"futures-sink 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["codec","default","tracing"]},{"id":"tonic 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["async-stream 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","axum 0.5.17 (registry+https://github.com/rust-lang/crates.io-index)","base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","flate2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","hyper-timeout 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","prost-derive 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","rustls-pemfile 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","tokio-stream 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","tracing-futures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","webpki-roots 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"async_stream","pkg":"async-stream 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"async_trait","pkg":"async-trait 0.1.58 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"axum","pkg":"axum 0.5.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"base64","pkg":"base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"flate2","pkg":"flate2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"h2","pkg":"h2 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_body","pkg":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"hyper","pkg":"hyper 0.14.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"hyper_timeout","pkg":"hyper-timeout 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project","pkg":"pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost1","pkg":"prost 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_derive","pkg":"prost-derive 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustls_pemfile","pkg":"rustls-pemfile 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_rustls","pkg":"tokio-rustls 0.23.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_stream","pkg":"tokio-stream 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_util","pkg":"tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower","pkg":"tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_layer","pkg":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing_futures","pkg":"tracing-futures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"webpki_roots","pkg":"webpki-roots 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["async-trait","axum","channel","codegen","default","flate2","gzip","h2","hyper","hyper-timeout","prost","prost-derive","prost1","rustls-pemfile","tls","tls-roots-common","tls-webpki-roots","tokio","tokio-rustls","tower","tracing-futures","transport","webpki-roots"]},{"id":"tonic-build 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["prettyplease 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","prost-build 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"prettyplease","pkg":"prettyplease 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"prost_build","pkg":"prost-build 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","prost","prost-build","transport"]},{"id":"tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","slab 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project","pkg":"pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rand","pkg":"rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slab","pkg":"slab 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio","pkg":"tokio 1.21.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tokio_util","pkg":"tokio-util 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_layer","pkg":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["__common","balance","buffer","default","discover","filter","futures-core","futures-util","indexmap","limit","load","log","make","pin-project","pin-project-lite","rand","ready-cache","slab","timeout","tokio","tokio-util","tracing","util"]},{"id":"tower-http 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","http-range-header 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bitflags","pkg":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bytes","pkg":"bytes 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_core","pkg":"futures-core 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"futures_util","pkg":"futures-util 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http","pkg":"http 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_body","pkg":"http-body 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"http_range_header","pkg":"http-range-header 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower","pkg":"tower 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_layer","pkg":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tower_service","pkg":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","map-response-body","tower","util"]},{"id":"tower-layer 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"tower-service 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","tracing-attributes 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)","tracing-core 0.1.30 (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":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"pin_project_lite","pkg":"pin-project-lite 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing_attributes","pkg":"tracing-attributes 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing_core","pkg":"tracing-core 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["attributes","default","log","std","tracing-attributes"]},{"id":"tracing-attributes 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"tracing-core 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"once_cell","pkg":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["once_cell","std"]},{"id":"tracing-futures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"pin_project","pkg":"pin-project 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"tracing","pkg":"tracing 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","pin-project","std","std-future"]},{"id":"try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"unicode-bidi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","hardcoded-data","std"]},{"id":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"tinyvec","pkg":"tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"form_urlencoded","pkg":"form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"idna","pkg":"idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"percent_encoding","pkg":"percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"urlencoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"try_lock","pkg":"try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen-macro 0.2.83 (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":"wasm_bindgen_macro","pkg":"wasm-bindgen-macro 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","spans","std"]},{"id":"wasm-bindgen-backend 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen-shared 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"bumpalo","pkg":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"once_cell","pkg":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen_shared","pkg":"wasm-bindgen-shared 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["spans"]},{"id":"wasm-bindgen-futures 0.4.33 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","web-sys 0.3.60 (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":"js_sys","pkg":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen","pkg":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"web_sys","pkg":"web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_feature = \"atomics\")"}]}],"features":[]},{"id":"wasm-bindgen-macro 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen-macro-support 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen_macro_support","pkg":"wasm-bindgen-macro-support 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["spans"]},{"id":"wasm-bindgen-macro-support 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen-backend 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen-shared 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"proc_macro2","pkg":"proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"quote","pkg":"quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"syn","pkg":"syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen_backend","pkg":"wasm-bindgen-backend 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen_shared","pkg":"wasm-bindgen-shared 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["spans"]},{"id":"wasm-bindgen-shared 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"web-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"js_sys","pkg":"js-sys 0.3.60 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasm_bindgen","pkg":"wasm-bindgen 0.2.83 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["Blob","BlobPropertyBag","Crypto","Event","EventTarget","File","FormData","Headers","MessageEvent","Request","RequestCredentials","RequestInit","RequestMode","Response","ServiceWorkerGlobalScope","Window","Worker","WorkerGlobalScope"]},{"id":"webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ring","pkg":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"untrusted","pkg":"untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"webpki-roots 0.22.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"webpki","pkg":"webpki 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"which 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"either","pkg":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.136 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"once_cell","pkg":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"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":["accctrl","aclapi","activation","combaseapi","consoleapi","errhandlingapi","fileapi","handleapi","impl-debug","impl-default","minwinbase","minwindef","namedpipeapi","ntdef","ntsecapi","objbase","processenv","profileapi","roapi","shlobj","std","sysinfoapi","timezoneapi","winbase","wincon","winerror","winnt","winreg","winstring","ws2ipdef","ws2tcpip","wtypesbase"]},{"id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-util 0.1.5 (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":"cfg(windows)"}]}],"features":[]},{"id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["windows_aarch64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","windows_aarch64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","windows_i686_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","windows_i686_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"windows_aarch64_gnullvm","pkg":"windows_aarch64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"aarch64-pc-windows-gnullvm"}]},{"name":"windows_aarch64_msvc","pkg":"windows_aarch64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"aarch64-pc-windows-msvc"},{"kind":null,"target":"aarch64-uwp-windows-msvc"}]},{"name":"windows_i686_gnu","pkg":"windows_i686_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"},{"kind":null,"target":"i686-uwp-windows-gnu"}]},{"name":"windows_i686_msvc","pkg":"windows_i686_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-msvc"},{"kind":null,"target":"i686-uwp-windows-msvc"}]},{"name":"windows_x86_64_gnu","pkg":"windows_x86_64_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"},{"kind":null,"target":"x86_64-uwp-windows-gnu"}]},{"name":"windows_x86_64_gnullvm","pkg":"windows_x86_64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnullvm"}]},{"name":"windows_x86_64_msvc","pkg":"windows_x86_64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-msvc"},{"kind":null,"target":"x86_64-uwp-windows-msvc"}]}],"features":["Win32","Win32_Foundation","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_IO","Win32_System_LibraryLoader","Win32_System_Pipes","Win32_System_SystemServices","Win32_System_WindowsProgramming","default"]},{"id":"windows_aarch64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_aarch64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_i686_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_i686_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_gnu 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_gnullvm 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_msvc 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winreg 0.10.1 (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":[]}],"root":"direct 0.1.0 (path+file:///home/jake/code/krates/tests/direct)"},"target_directory":"/home/jake/code/krates/tests/direct/target","version":1,"workspace_root":"/home/jake/code/krates/tests/direct","metadata":null} diff --git a/tests/direct/Cargo.toml b/tests/direct/Cargo.toml new file mode 100644 index 0000000..0d6ac59 --- /dev/null +++ b/tests/direct/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "direct" +version = "0.1.0" +edition = "2021" + +[dependencies] +google-cloud-pubsub = { version = "0.8", default_features = false, features = ["rustls-tls"] } +google-cloud-gax = { version = "0.9", default_features = false, features = ["rustls-tls"] } +google-cloud-googleapis = "0.6" \ No newline at end of file diff --git a/tests/direct/src/lib.rs b/tests/direct/src/lib.rs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/direct/src/lib.rs @@ -0,0 +1 @@ + diff --git a/tests/misc.rs b/tests/misc.rs index 40fd5c6..af69379 100644 --- a/tests/misc.rs +++ b/tests/misc.rs @@ -1,3 +1,5 @@ +mod util; + #[test] fn iter_names() { let contents = std::fs::read_to_string("tests/all-features.json") @@ -123,3 +125,35 @@ fn iter_matches() { assert!(iter.next().is_none()); } } + +#[test] +fn direct_dependents() { + let mut kb = krates::Builder::new(); + kb.include_targets(std::iter::once(( + krates::cfg_expr::targets::get_builtin_target_by_triple("x86_64-unknown-linux-gnu") + .unwrap() + .triple + .clone(), + vec![], + ))); + + let grafs = util::build("direct.json", kb).unwrap(); + + let id = grafs + .actual + .krates() + .find(|k| k.0.repr.starts_with("reqwest")) + .unwrap(); + + let dd = grafs + .actual + .direct_dependents(grafs.actual.nid_for_kid(&id.0).unwrap()) + .into_iter() + .fold(String::new(), |mut acc, jid| { + acc.push_str(&jid.0.repr); + acc.push('\n'); + acc + }); + + insta::assert_snapshot!(dd); +} diff --git a/tests/snapshots/misc__direct_dependents.snap b/tests/snapshots/misc__direct_dependents.snap new file mode 100644 index 0000000..577d809 --- /dev/null +++ b/tests/snapshots/misc__direct_dependents.snap @@ -0,0 +1,7 @@ +--- +source: tests/misc.rs +expression: dd +--- +google-cloud-metadata 0.3.1 (registry+https://github.com/rust-lang/crates.io-index) +google-cloud-auth 0.5.0 (registry+https://github.com/rust-lang/crates.io-index) + diff --git a/tests/util.rs b/tests/util.rs index 616c57a..80a68bd 100644 --- a/tests/util.rs +++ b/tests/util.rs @@ -2,7 +2,7 @@ use std::{fmt, path::Path}; -pub struct JustId(krates::Kid); +pub struct JustId(pub krates::Kid); pub type Graph = krates::Krates;