diff --git a/Cargo.toml b/Cargo.toml index e95fefd..a55b7ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,8 @@ exclude = [".github", "tests"] [features] default = [] +# Uses the index as the source of truth for what features are available for a crate +prefer-index = ["crates-index"] # Adds support for filtering target specific dependencies targets = ["cfg-expr/targets"] #features = [] @@ -27,6 +29,10 @@ targets = ["cfg-expr/targets"] cargo_metadata = "0.15" # Used to parse and evaluate cfg() expressions for dependencies cfg-expr = "0.11" +# Allows inspection of the cargo registry index(ices) +crates-index = { version = "0.18", optional = true, default-features = false, features = [ + "parallel", +] } # Used to create and traverse graph structures petgraph = "0.6" # Used for checking version requirements diff --git a/deny.toml b/deny.toml index cb55ea3..0e8b9ea 100644 --- a/deny.toml +++ b/deny.toml @@ -9,6 +9,7 @@ allow = [ "Apache-2.0", "Apache-2.0 WITH LLVM-exception", "MIT", + "MPL-2.0", "Unicode-DFS-2016", ] copyleft = "deny" diff --git a/src/builder.rs b/src/builder.rs index 14810fd..b020701 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -767,13 +767,16 @@ impl Builder { features: Vec, } + #[cfg(feature = "crates-index")] + let index = crates_index::Index::new_cargo_default().ok(); + while let Some(pid) = pid_stack.pop() { let is_in_workspace = workspace_members.binary_search(pid).is_ok(); let krate_index = nodes.binary_search_by(|n| n.id.cmp(pid)).unwrap(); let rnode = &nodes[krate_index]; - let krate = &packages[krate_index]; + let krate = &mut packages[krate_index]; if exclude.iter().any(|exc| exc.matches(krate)) { continue; @@ -805,6 +808,11 @@ impl Builder { } }; + #[cfg(feature = "prefer-index")] + if let Some(index) = &index { + fix_features(index, krate); + } + // Cargo puts out a flat list of the enabled features, but we need // to use the declared features on the crate itself to figure out // the actual chain of features from one crate to another @@ -860,9 +868,10 @@ impl Builder { .features .iter() .filter_map(|feat| { - // This should never fail as cargo will not generate metadata if - // a feature is mentioned that doesn't exist, but still no - // reason to panic here + // This _should_ never fail in normal cases, however if the + // `prefer-index` feature is not enabled, it's possible for + // the resolved features to mention features that aren't in + // the actual crate manifest let sub_feats: Vec<_> = krate .features .get(feat)? @@ -1049,7 +1058,17 @@ impl Builder { let mut features: Vec = Vec::new(); while let Some(feat) = feature_stack.pop() { - for sf in &krate.features[feat] { + // This _should_ never fail in normal cases, however if the + // `prefer-index` feature is not enabled, it's possible for + // the resolved features to mention features that aren't in + // the actual crate manifest + let fs = if let Some(fs) = krate.features.get(feat) { + fs + } else { + // TODO: Show the user a warning, or just fail? + continue; + }; + for sf in fs { let pf = ParsedFeature::from(sf.as_str()); let (krate, feature) = match pf.feat() { @@ -1439,6 +1458,66 @@ fn dep_names_match(krate_dep_name: &str, resolved_name: &str) -> bool { } } +/// Due to , we can't actually +/// trust cargo to give us the correct package metadata, so we instead use the +/// (presumably) correct data from the the index +#[cfg(feature = "prefer-index")] +fn fix_features(index: &crates_index::Index, krate: &mut cm::Package) { + if krate + .source + .as_ref() + .map_or(true, |src| !src.is_crates_io()) + { + return; + } + + if let Some(entry) = index.crate_(&krate.name) { + let features = entry.versions().iter().find_map(|v| { + if let Ok(iv) = v.version().parse::() { + if iv == krate.version { + Some(v.features()) + } else { + None + } + } else { + None + } + }); + + if let Some(features) = features { + krate.features = features.clone(); + + // The index entry features might not have the `dep:` + // used with weak features if the crate version was + // published with cargo <1.60.0 version, so we need to + // manually fix that up since we depend on that format + let missing_deps: Vec<_> = krate + .features + .iter() + .flat_map(|(_, sf)| sf.iter()) + .filter_map(|sf| { + let pf = ParsedFeature::from(sf.as_str()); + + if let Feature::Simple(simple) = pf.feat() { + if krate.features.contains_key(simple) { + None + } else { + Some(simple.to_owned()) + } + } else { + None + } + }) + .collect(); + + for missing in missing_deps { + let dep_feature = format!("dep:{missing}"); + krate.features.insert(missing, vec![dep_feature]); + } + } + } +} + #[cfg(test)] mod test { use super::*; diff --git a/tests/bug.json b/tests/bug.json index c3122d9..c7bd190 100644 --- a/tests/bug.json +++ b/tests/bug.json @@ -1 +1 @@ -{"packages":[{"name":"addr2line","version":"0.17.0","id":"addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A cross-platform symbolication library written in Rust, using `gimli`","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cpp_demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"fallible-iterator","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read"],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.27.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read"],"target":null,"registry":null},{"name":"rustc-demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"backtrace","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.13","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"clap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"findshlibs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"typed-arena","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"addr2line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"addr2line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/examples/addr2line.rs","edition":"2015","required-features":["std-object"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"output_equivalence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/tests/output_equivalence.rs","edition":"2015","required-features":["std-object"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"correctness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/tests/correctness.rs","edition":"2015","required-features":["default"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/tests/parse.rs","edition":"2015","required-features":["std-object"],"doc":false,"doctest":false,"test":true}],"features":{"alloc":["dep:alloc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"cpp_demangle":["dep:cpp_demangle"],"default":["rustc-demangle","cpp_demangle","std-object","fallible-iterator","smallvec"],"fallible-iterator":["dep:fallible-iterator"],"object":["dep:object"],"rustc-demangle":["dep:rustc-demangle"],"rustc-dep-of-std":["core","alloc","compiler_builtins","gimli/rustc-dep-of-std"],"smallvec":["dep:smallvec"],"std":["gimli/std"],"std-object":["std","object","object/std","object/compression","gimli/endian-reader"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["development-tools::debugging"],"keywords":["DWARF","debug","elf","symbolicate","atos"],"readme":"./README.md","repository":"https://github.com/gimli-rs/addr2line","homepage":null,"documentation":"https://docs.rs/addr2line","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"ahash","version":"0.7.6","id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A non-cryptographic hash function using AES-NI for high performance","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fxhash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"no-panic","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"seahash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.59","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"version_check","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"const-random","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))","registry":null},{"name":"getrandom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))","registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.117","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["alloc"],"target":"cfg(not(all(target_arch = \"arm\", target_os = \"none\")))","registry":null},{"name":"const-random","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))","registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.117","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nopanic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/nopanic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"map_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/map_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/bench.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"ahash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/map_tests.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/./build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"compile-time-rng":["const-random"],"const-random":["dep:const-random"],"default":["std"],"serde":["dep:serde"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/Cargo.toml","metadata":{"docs":{"rs":{"features":["std"],"rustc-args":["-C","target-feature=+aes"],"rustdoc-args":["-C","target-feature=+aes"]}}},"publish":null,"authors":["Tom Kaitchuck "],"categories":["algorithms","data-structures","no-std"],"keywords":["hash","hasher","hashmap","aes","no-std"],"readme":"README.md","repository":"https://github.com/tkaitchuck/ahash","homepage":null,"documentation":"https://docs.rs/ahash","edition":"2018","links":null,"default_run":null,"rust_version":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":"arrayvec","version":"0.7.2","id":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"bencher","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"matches","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/tests/serde.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/arrayvec-0.7.2/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"extend","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/benches/extend.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"arraystring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/benches/arraystring.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/arrayvec-0.7.2/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde"]}},"release":{"no-dev-version":true,"tag-name":"{{version}}"}},"publish":null,"authors":["bluss"],"categories":["data-structures","no-std"],"keywords":["stack","vector","array","data-structure","no_std"],"readme":"README.md","repository":"https://github.com/bluss/arrayvec","homepage":null,"documentation":"https://docs.rs/arrayvec/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"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":"bincode","version":"1.3.3","id":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.63","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_bytes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.27","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bincode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/tests/test.rs","edition":"2015","doc":false,"doctest":false,"test":true}],"features":{"i128":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Ty Overby ","Francesco Mazzoli ","David Tolnay ","Zoey Riordan "],"categories":["encoding","network-programming"],"keywords":["binary","encode","decode","serialize","deserialize"],"readme":"./readme.md","repository":"https://github.com/servo/bincode","homepage":null,"documentation":"https://docs.rs/bincode","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"bitflags","version":"1.3.2","id":"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":"block-buffer","version":"0.9.0","id":"block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Fixed size buffer for block processing of data","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"block-padding","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":"generic-array","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"block-buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"block-padding":["dep:block-padding"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/Cargo.toml","metadata":null,"publish":null,"authors":["RustCrypto Developers"],"categories":["cryptography","no-std"],"keywords":["block","buffer"],"readme":null,"repository":"https://github.com/RustCrypto/utils","homepage":null,"documentation":"https://docs.rs/block-buffer","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"bug","version":"0.1.0","id":"bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)","license":null,"license_file":null,"description":null,"source":null,"dependencies":[{"name":"wasmtime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["cranelift","incremental-cache","parallel-compilation","vtune"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bug","src_path":"/home/jake/code/krates/tests/bug/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/code/krates/tests/bug/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":"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":"byteorder","version":"1.4.3","id":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"Unlicense OR MIT","license_file":null,"description":"Library for reading/writing numbers in big-endian and little-endian.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.2","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/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/byteorder-1.4.3/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Gallant "],"categories":["encoding","parsing","no-std"],"keywords":["byte","endian","big-endian","little-endian","binary"],"readme":"README.md","repository":"https://github.com/BurntSushi/byteorder","homepage":"https://github.com/BurntSushi/byteorder","documentation":"https://docs.rs/byteorder","edition":"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":"cpp_demangle","version":"0.3.5","id":"cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A crate for demangling C++ symbols","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"afl","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":"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":"clap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.33.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"diff","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":"cpp_demangle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bin"],"crate_types":["bin"],"name":"afl_runner","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/src/bin/afl_runner.rs","edition":"2015","required-features":["afl"],"doc":true,"doctest":false,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"cppfilt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/examples/cppfilt.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/cpp_demangle-0.3.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"afl":["dep:afl"],"alloc":[],"cppfilt":[],"default":["std"],"fuzz":["afl"],"logging":[],"nightly":[],"run_libiberty_tests":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/Cargo.toml","metadata":null,"publish":null,"authors":["Nick Fitzgerald ","Jim Blandy "],"categories":["development-tools::debugging","development-tools::ffi"],"keywords":["demangle","symbolicate","c-plus-plus","itanium"],"readme":"./README.md","repository":"https://github.com/gimli-rs/cpp_demangle","homepage":null,"documentation":"https://docs.rs/cpp_demangle","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"cpufeatures","version":"0.2.5","id":"cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Lightweight runtime CPU feature detection for x86/x86_64 and aarch64 with\nno_std support and support for mobile targets including Android and iOS\n","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.95","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-apple-darwin","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":"aarch64-linux-android","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(all(target_arch = \"aarch64\", target_os = \"linux\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"x86","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/tests/x86.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"aarch64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/tests/aarch64.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/Cargo.toml","metadata":null,"publish":null,"authors":["RustCrypto Developers"],"categories":["no-std"],"keywords":["cpuid","target-feature"],"readme":"README.md","repository":"https://github.com/RustCrypto/utils","homepage":null,"documentation":"https://docs.rs/cpufeatures","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-bforest","version":"0.89.0","id":"cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"A forest of B+-trees","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-bforest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-bforest-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-bforest-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":["btree","forest","set","map"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-bforest","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-codegen","version":"0.89.0","id":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Low-level code generator library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"arrayvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","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.2.1","kind":null,"rename":null,"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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-bforest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-codegen-shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read","std","write"],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","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.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"regalloc2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["checker"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"sha2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.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":["union"],"target":null,"registry":null},{"name":"souper-ir","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":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-codegen-meta","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-isle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.89.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"miette","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^5.1.0","kind":"build","rename":null,"optional":true,"uses_default_features":true,"features":["fancy"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-codegen","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"x64-evex-encoding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-0.89.0/benches/x64-evex-encoding.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/cranelift-codegen-0.89.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"all-arch":["x86","arm64","s390x","riscv64"],"arm64":[],"bincode":["dep:bincode"],"core":["hashbrown"],"default":["std","unwind"],"enable-serde":["serde","cranelift-entity/enable-serde","regalloc2/enable-serde","smallvec/serde"],"experimental_x64":[],"gimli":["dep:gimli"],"hashbrown":["dep:hashbrown"],"incremental-cache":["enable-serde","bincode","sha2"],"isle-errors":["miette","cranelift-isle/miette-errors"],"isle-in-source-tree":[],"miette":["dep:miette"],"riscv64":[],"s390x":[],"serde":["dep:serde"],"sha2":["dep:sha2"],"souper-harvest":["souper-ir","souper-ir/stringify"],"souper-ir":["dep:souper-ir"],"std":[],"testing_hooks":[],"trace-log":[],"unwind":["gimli"],"x86":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":["compile","compiler","jit"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-codegen","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-codegen-meta","version":"0.89.0","id":"cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Metaprogram for cranelift-codegen code generator library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen-shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-codegen-meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-meta-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-meta-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-codegen-shared","version":"0.89.0","id":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"For code shared between cranelift-codegen-meta and cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-codegen-shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-shared-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-shared-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-entity","version":"0.89.0","id":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Data structures using entity references as mapping keys","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.94","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-entity","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-entity-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"enable-serde":["serde"],"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-entity-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":["entity","set","map"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-entity","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-frontend","version":"0.89.0","id":"cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Cranelift IR builder helper","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","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.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"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":["union"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-frontend","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-frontend-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"core":["hashbrown","cranelift-codegen/core"],"default":["std"],"hashbrown":["dep:hashbrown"],"std":["cranelift-codegen/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-frontend-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-frontend","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-isle","version":"0.89.0","id":"cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"ISLE: Instruction Selection and Lowering Expressions. A domain-specific language for instruction selection in Cranelift.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"miette","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^5.1.0","kind":null,"rename":null,"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.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tempfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-isle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-isle-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"run_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-isle-0.89.0/tests/run_tests.rs","edition":"2021","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/cranelift-isle-0.89.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"default":[],"log":["dep:log"],"logging":["log"],"miette":["dep:miette"],"miette-errors":["miette"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-isle-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-native","version":"0.89.0","id":"cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Support for targeting the host with Cranelift","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.95","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"s390x\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-native","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-native-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"core":["cranelift-codegen/core"],"default":["std"],"std":["cranelift-codegen/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-native-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-native","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-wasm","version":"0.89.0","id":"cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Translator from WebAssembly to Cranelift IR","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-frontend","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["union"],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-types","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"wat","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":"cranelift-wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-wasm-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm_testsuite","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-wasm-0.89.0/tests/wasm_testsuite.rs","edition":"2021","doc":false,"doctest":false,"test":true}],"features":{"core":["hashbrown","cranelift-codegen/core","cranelift-frontend/core"],"default":["std"],"enable-serde":["serde"],"hashbrown":["dep:hashbrown"],"serde":["dep:serde"],"std":["cranelift-codegen/std","cranelift-frontend/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-wasm-0.89.0/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/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-wasm","edition":"2021","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":"crossbeam-channel","version":"0.5.6","id":"crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Multi-producer multi-consumer channels for message passing","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"crossbeam-utils","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":"num_cpus","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.13.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"signal-hook","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"fibonacci","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/fibonacci.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"stopwatch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/stopwatch.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"matching","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/matching.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/iter.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"thread_locals","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/thread_locals.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"select_macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select_macro.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"golang","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/golang.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ready","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/ready.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"after","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/after.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"never","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/never.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/crossbeam-channel-0.5.6/tests/mpsc.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/crossbeam-channel-0.5.6/tests/list.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zero","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/zero.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"array","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/array.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tick","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/tick.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"select","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"same_channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/same_channel.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"crossbeam","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/benches/crossbeam.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"crossbeam-utils":["dep:crossbeam-utils"],"default":["std"],"std":["crossbeam-utils/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["algorithms","concurrency","data-structures"],"keywords":["channel","mpmc","select","golang","message"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"crossbeam-deque","version":"0.8.2","id":"crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Concurrent work-stealing deque","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"crossbeam-epoch","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","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","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-deque","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fifo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/fifo.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lifo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/lifo.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"injector","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/injector.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"steal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/steal.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"crossbeam-epoch":["dep:crossbeam-epoch"],"crossbeam-utils":["dep:crossbeam-utils"],"default":["std"],"std":["crossbeam-epoch/std","crossbeam-utils/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["algorithms","concurrency","data-structures"],"keywords":["chase-lev","lock-free","scheduler","scheduling"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"crossbeam-epoch","version":"0.9.11","id":"crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Epoch-based garbage collection","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"crossbeam-utils","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"memoffset","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":"scopeguard","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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":"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},{"name":"loom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":"loom-crate","optional":true,"uses_default_features":true,"features":[],"target":"cfg(crossbeam_loom)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-epoch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"sanitize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/examples/sanitize.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"loom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/tests/loom.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/benches/pin.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"flush","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/benches/flush.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"defer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/benches/defer.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/crossbeam-epoch-0.9.11/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"default":["std"],"loom":["loom-crate","crossbeam-utils/loom"],"loom-crate":["dep:loom-crate"],"nightly":["crossbeam-utils/nightly"],"std":["alloc","crossbeam-utils/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["concurrency","memory-management","no-std"],"keywords":["lock-free","rcu","atomic","garbage"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"crossbeam-utils","version":"0.8.12","id":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Utilities for concurrent programming","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"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":"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":"loom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(crossbeam_loom)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-utils","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cache_padded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/cache_padded.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sharded_lock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/sharded_lock.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"atomic_cell","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/atomic_cell.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wait_group","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/wait_group.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"thread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/thread.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parker","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/parker.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"atomic_cell","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/benches/atomic_cell.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/crossbeam-utils-0.8.12/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"loom":["dep:loom"],"nightly":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["algorithms","concurrency","data-structures","no-std"],"keywords":["scoped","thread","atomic","cache"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"digest","version":"0.9.0","id":"digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Traits for cryptographic hash functions","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"blobby","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"generic-array","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"blobby":["dep:blobby"],"dev":["blobby"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["RustCrypto Developers"],"categories":["cryptography","no-std"],"keywords":["digest","crypto","hash"],"readme":"README.md","repository":"https://github.com/RustCrypto/traits","homepage":null,"documentation":"https://docs.rs/digest","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"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":"errno","version":"0.2.8","id":"errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Cross-platform interface to the `errno` variable.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"errno-dragonfly","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"dragonfly\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"hermit\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"wasi\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["errhandlingapi","minwindef","ntdef","winbase"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"errno","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/Cargo.toml","metadata":null,"publish":null,"authors":["Chris Wong "],"categories":["os"],"keywords":[],"readme":"README.md","repository":"https://github.com/lambda-fairy/rust-errno","homepage":null,"documentation":"https://docs.rs/errno","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"errno-dragonfly","version":"0.1.2","id":"errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Exposes errno functionality to stable Rust on DragonFlyBSD","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"errno-dragonfly","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml","metadata":null,"publish":null,"authors":["Michael Neumann "],"categories":[],"keywords":["dragonfly"],"readme":"README.md","repository":"https://github.com/mneumann/errno-dragonfly-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"fallible-iterator","version":"0.2.0","id":"fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Fallible iterator traits","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fallible-iterator","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fallible-iterator-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fallible-iterator-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":["algorithms","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/sfackler/rust-fallible-iterator","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"fxhash","version":"0.2.1","id":"fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"byteorder","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"seahash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fxhash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"fxhash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/bench.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/Cargo.toml","metadata":null,"publish":null,"authors":["cbreeden "],"categories":["algorithms"],"keywords":["hash"],"readme":"README.md","repository":"https://github.com/cbreeden/fxhash","homepage":null,"documentation":"https://docs.rs/fxhash","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"generic-array","version":"0.14.6","id":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Generic types implementing functionality of arrays","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"typenum","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"zeroize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"version_check","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/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/generic-array-0.14.6/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"more_lengths":[],"serde":["dep:serde"],"zeroize":["dep:zeroize"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde","zeroize"]}}},"publish":null,"authors":["Bartłomiej Kamiński ","Aaron Trent "],"categories":["data-structures","no-std"],"keywords":["generic","array"],"readme":"README.md","repository":"https://github.com/fizyk20/generic-array.git","homepage":null,"documentation":"http://fizyk20.github.io/generic-array/generic_array/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"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":"gimli","version":"0.26.2","id":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A library for reading and writing the DWARF debugging format.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fallible-iterator","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"stable_deref_trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"crossbeam","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"getopts","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memmap2","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},{"name":"num_cpus","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["wasm"],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"test-assembler","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"typed-arena","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"gimli","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/simple.rs","edition":"2018","required-features":["read"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"simple_line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/simple_line.rs","edition":"2018","required-features":["read"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"dwarfdump","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/dwarfdump.rs","edition":"2018","required-features":["read","std"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"dwarf-validate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/dwarf-validate.rs","edition":"2018","required-features":["read","std"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"parse_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/tests/parse_self.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"convert_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/tests/convert_self.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/gimli-0.26.2/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":["dep:alloc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["read","write","std","fallible-iterator","endian-reader"],"endian-reader":["read","stable_deref_trait"],"fallible-iterator":["dep:fallible-iterator"],"indexmap":["dep:indexmap"],"read":["read-core"],"read-core":[],"rustc-dep-of-std":["core","alloc","compiler_builtins"],"stable_deref_trait":["dep:stable_deref_trait"],"std":["fallible-iterator/std","stable_deref_trait/std"],"write":["indexmap"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["development-tools::debugging","development-tools::profiling","parser-implementations"],"keywords":["DWARF","debug","ELF","eh_frame"],"readme":"./README.md","repository":"https://github.com/gimli-rs/gimli","homepage":null,"documentation":"https://docs.rs/gimli","edition":"2018","links":null,"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":"hermit-abi","version":"0.1.19","id":"hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"hermit-abi is small interface to call functions from the unikernel RustyHermit.\nIt is used to build the target `x86_64-unknown-hermit`.\n","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.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.51","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hermit-abi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":[],"docs":[],"rustc-dep-of-std":["core","compiler_builtins/rustc-dep-of-std","libc/rustc-dep-of-std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-unknown-hermit","features":["docs"]}}},"publish":null,"authors":["Stefan Lankes"],"categories":["os"],"keywords":["unikernel","libos"],"readme":"README.md","repository":"https://github.com/hermitcore/libhermit-rs","homepage":null,"documentation":"https://hermitcore.github.io/rusty-hermit/hermit_abi","edition":"2018","links":null,"default_run":null,"rust_version":null},{"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":"io-lifetimes","version":"0.7.4","id":"io-lifetimes 0.7.4 (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":"A low-level I/O ownership and borrowing library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"fs-err","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.6.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-std","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"mio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["net","os-ext"],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"os_pipe","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":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"socket2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["io-std","fs","net","process"],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.96","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(windows))","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["Win32_Foundation","Win32_Storage_FileSystem","Win32_Networking_WinSock","Win32_Security","Win32_System_IO","Win32_System_Threading"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"io-lifetimes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-0.7.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/io-lifetimes-0.7.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"async-std":["dep:async-std"],"close":["libc","windows-sys"],"default":["close"],"fs-err":["dep:fs-err"],"libc":["dep:libc"],"mio":["dep:mio"],"os_pipe":["dep:os_pipe"],"socket2":["dep:socket2"],"tokio":["dep:tokio"],"windows-sys":["dep:windows-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-0.7.4/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Gohman "],"categories":["os","rust-patterns"],"keywords":["api","io"],"readme":"README.md","repository":"https://github.com/sunfishcode/io-lifetimes","homepage":null,"documentation":null,"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":"ittapi","version":"0.3.1","id":"ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"GPL-2.0-only OR BSD-3-Clause","license_file":null,"description":"High-level Rust bindings for ittapi","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.56","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ittapi-sys","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"scoped-env","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":"ittapi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-0.3.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Johnnie Birch <45402135+jlb6740@users.noreply.github.com>","Benjamin Bouvier "],"categories":["development-tools"],"keywords":["vtune","profiling","code-generation"],"readme":"README.md","repository":"https://github.com/intel/ittapi","homepage":"https://github.com/intel/ittapi/tree/master/rust/ittapi","documentation":"https://docs.rs/ittapi","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"ittapi-sys","version":"0.3.1","id":"ittapi-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"GPL-2.0-only OR BSD-3-Clause","license_file":null,"description":"Rust bindings for ittapi","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.59","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"diff","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":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.73","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ittapi-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-sys-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bindgen-up-to-date","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-sys-0.3.1/tests/bindgen-up-to-date.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/ittapi-sys-0.3.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-sys-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Johnnie Birch <45402135+jlb6740@users.noreply.github.com>"],"categories":["development-tools","external-ffi-bindings"],"keywords":["vtune","profiling","code-generation"],"readme":"README.md","repository":"https://github.com/intel/ittapi","homepage":"https://github.com/intel/ittapi/tree/master/rust/ittapi-sys","documentation":"https://docs.rs/ittapi-sys","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"libc","version":"0.2.137","id":"libc 0.2.137 (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.137/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.137/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.137/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.137/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":"linux-raw-sys","version":"0.0.46","id":"linux-raw-sys 0.0.46 (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":"Generated bindings for Linux's userspace API","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.49","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.100","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"static_assertions","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"linux-raw-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.0.46/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std","general","errno"],"errno":[],"general":[],"ioctl":[],"netlink":[],"no_std":[],"rustc-dep-of-std":["core","compiler_builtins","no_std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.0.46/Cargo.toml","metadata":{"docs":{"rs":{"features":["default","ioctl","netlink"],"targets":["x86_64-unknown-linux-gnu","i686-unknown-linux-gnu"]}}},"publish":null,"authors":["Dan Gohman "],"categories":["external-ffi-bindings"],"keywords":["linux","uapi","ffi"],"readme":"README.md","repository":"https://github.com/sunfishcode/linux-raw-sys","homepage":null,"documentation":"https://docs.rs/linux-raw-sys","edition":"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":"mach","version":"0.3.2","id":"mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-2-Clause","license_file":null,"description":"A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))","registry":null},{"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":"cfg(any(target_os = \"macos\", target_os = \"ios\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mach","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mach-0.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"dump_process_registers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mach-0.3.2/examples/dump_process_registers.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":[],"deprecated":[],"rustc-dep-of-std":["rustc-std-workspace-core","libc/rustc-dep-of-std"],"rustc-std-workspace-core":["dep:rustc-std-workspace-core"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mach-0.3.2/Cargo.toml","metadata":null,"publish":null,"authors":["Nick Fitzgerald ","David Cuddeback ","Gonzalo Brito Gadeschi "],"categories":["api-bindings","external-ffi-bindings","no-std","os"],"keywords":["kernel","macos","darwin"],"readme":"README.md","repository":"https://github.com/fitzgen/mach","homepage":null,"documentation":null,"edition":"2015","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":"memoffset","version":"0.6.5","id":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"offset_of functionality for Rust structs.","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":"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":"memoffset","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/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/memoffset-0.6.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":[],"unstable_const":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml","metadata":null,"publish":null,"authors":["Gilad Naaman "],"categories":["no-std"],"keywords":["mem","offset","offset_of","offsetof"],"readme":"README.md","repository":"https://github.com/Gilnaa/memoffset","homepage":null,"documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"num_cpus","version":"1.13.1","id":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Get the number of CPUs on a machine.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"hermit-abi","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(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.26","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(windows))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"num_cpus","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"values","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/examples/values.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/Cargo.toml","metadata":null,"publish":null,"authors":["Sean McArthur "],"categories":["hardware-support"],"keywords":["cpu","cpus","cores"],"readme":"README.md","repository":"https://github.com/seanmonstar/num_cpus","homepage":null,"documentation":"https://docs.rs/num_cpus","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"object","version":"0.29.0","id":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A unified interface for reading and writing object file formats.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"crc32fast","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"flate2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["ahash"],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memchr","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.4.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.57","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"object","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.29.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parse_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.29.0/tests/parse_self.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/object-0.29.0/tests/integration.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"all":["read","write","std","compression","wasm"],"alloc":["dep:alloc"],"archive":[],"cargo-all":[],"coff":[],"compiler_builtins":["dep:compiler_builtins"],"compression":["flate2","std"],"core":["dep:core"],"crc32fast":["dep:crc32fast"],"default":["read","compression"],"doc":["read_core","write_std","std","compression","archive","coff","elf","macho","pe","wasm"],"elf":[],"flate2":["dep:flate2"],"hashbrown":["dep:hashbrown"],"indexmap":["dep:indexmap"],"macho":[],"pe":["coff"],"read":["read_core","archive","coff","elf","macho","pe","unaligned"],"read_core":[],"rustc-dep-of-std":["core","compiler_builtins","alloc","memchr/rustc-dep-of-std"],"std":["memchr/std"],"unaligned":[],"wasm":["wasmparser"],"wasmparser":["dep:wasmparser"],"write":["write_std","coff","elf","macho","pe"],"write_core":["crc32fast","indexmap","hashbrown"],"write_std":["write_core","std","indexmap/std","crc32fast/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.29.0/Cargo.toml","metadata":{"docs":{"rs":{"features":["doc"]}}},"publish":null,"authors":[],"categories":[],"keywords":["object","elf","mach-o","pe","coff"],"readme":"README.md","repository":"https://github.com/gimli-rs/object","homepage":null,"documentation":null,"edition":"2018","links":null,"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":"opaque-debug","version":"0.3.0","id":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Macro for opaque Debug trait implementation","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"opaque-debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/tests/mod.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["RustCrypto Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/RustCrypto/utils","homepage":null,"documentation":"https://docs.rs/opaque-debug","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"paste","version":"1.0.9","id":"paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Macros for all your token pasting needs","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"paste-test-suite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["diff"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"paste","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.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/paste-1.0.9/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_attr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.9/tests/test_attr.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/paste-1.0.9/tests/test_item.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/paste-1.0.9/tests/test_expr.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_doc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.9/tests/test_doc.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.9/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools","no-std"],"keywords":["macros"],"readme":"README.md","repository":"https://github.com/dtolnay/paste","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"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":"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":"psm","version":"0.1.21","id":"psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Portable Stack Manipulation: stack manipulation and introspection routines","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.2","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"psm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"panics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/panics.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"info","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/info.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"on_stack_fibo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/on_stack_fibo.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"on_stack_fibo_alloc_each_frame","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/on_stack_fibo_alloc_each_frame.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"replace_stack_1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/replace_stack_1.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"thread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/thread.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"stack_direction","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/tests/stack_direction.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stack_direction_2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/tests/stack_direction_2.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/psm-0.1.21/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/Cargo.toml","metadata":null,"publish":null,"authors":["Simonas Kazlauskas "],"categories":[],"keywords":["stack","no_std"],"readme":"README.mkd","repository":"https://github.com/rust-lang/stacker/","homepage":null,"documentation":"https://docs.rs/psm/0.1.20","edition":"2015","links":null,"default_run":null,"rust_version":null},{"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":"rayon","version":"1.5.3","id":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Simple work-stealing parallelism for Rust","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"crossbeam-deque","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"either","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rayon-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.9.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"docopt","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":"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":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_xorshift","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.85","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"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":"rayon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"cpu_monitor","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/examples/cpu_monitor.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"cross-pool","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/cross-pool.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"chars","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/chars.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"issue671","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671.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/rayon-1.5.3/tests/debug.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"octillion","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/octillion.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"clones","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/clones.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"collect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/collect.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"issue671-unzip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671-unzip.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"producer_split_at","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/producer_split_at.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sort-panic-safe","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/sort-panic-safe.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"intersperse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/intersperse.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"iter_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/iter_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"str","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/str.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"named-threads","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/named-threads.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/rayon-1.5.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/Cargo.toml","metadata":null,"publish":null,"authors":["Niko Matsakis ","Josh Stone "],"categories":["concurrency"],"keywords":["parallel","thread","concurrency","join","performance"],"readme":"README.md","repository":"https://github.com/rayon-rs/rayon","homepage":null,"documentation":"https://docs.rs/rayon/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"rayon-core","version":"1.9.3","id":"rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Core APIs for Rayon","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"crossbeam-channel","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":"crossbeam-deque","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"crossbeam-utils","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"num_cpus","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_xorshift","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"scoped-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rayon-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stack_overflow_crash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/stack_overflow_crash.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"double_init_fail","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/double_init_fail.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"init_zero_threads","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/init_zero_threads.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"scope_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scope_join.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"simple_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/simple_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"scoped_threadpool","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scoped_threadpool.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/rayon-core-1.9.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/Cargo.toml","metadata":null,"publish":null,"authors":["Niko Matsakis ","Josh Stone "],"categories":["concurrency"],"keywords":["parallel","thread","concurrency","join","performance"],"readme":"README.md","repository":"https://github.com/rayon-rs/rayon","homepage":null,"documentation":"https://docs.rs/rayon/","edition":"2018","links":"rayon-core","default_run":null,"rust_version":null},{"name":"regalloc2","version":"0.4.1","id":"regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Backtracking register allocator inspired from IonMonkey","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"fxhash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libfuzzer-sys","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.136","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"slice-group-by","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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"regalloc2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regalloc2-0.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"checker":[],"default":[],"enable-serde":["serde"],"fuzzing":["libfuzzer-sys","checker","trace-log"],"libfuzzer-sys":["dep:libfuzzer-sys"],"serde":["dep:serde"],"trace-log":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regalloc2-0.4.1/Cargo.toml","metadata":null,"publish":null,"authors":["Chris Fallin ","Mozilla SpiderMonkey Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/regalloc2","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"rustc-demangle","version":"0.1.21","id":"rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Rust compiler symbol demangling.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustc-demangle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs","edition":"2015","doc":true,"doctest":true,"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/rustc-demangle-0.1.21/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/alexcrichton/rustc-demangle","homepage":"https://github.com/alexcrichton/rustc-demangle","documentation":"https://docs.rs/rustc-demangle","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"rustix","version":"0.35.12","id":"rustix 0.35.12 (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":"Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bitflags","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.49","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"io-lifetimes","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":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"io-lifetimes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["close"],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.133","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"errno","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":"dev","rename":"libc_errno","optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"memoffset","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.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.6","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.2.0","kind":"dev","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.68","kind":"build","rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"linux-raw-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.46","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["general","no_std"],"target":"cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.133","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["extra_traits"],"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))","registry":null},{"name":"errno","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":null,"rename":"libc_errno","optional":true,"uses_default_features":false,"features":[],"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))","registry":null},{"name":"linux-raw-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.46","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["general","errno","ioctl","no_std"],"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.133","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["extra_traits"],"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))","registry":null},{"name":"errno","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":null,"rename":"libc_errno","optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"android\", target_os = \"linux\"))","registry":null},{"name":"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":"cfg(not(target_os = \"emscripten\"))","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_Foundation","Win32_Networking_WinSock","Win32_NetworkManagement_IpHelper","Win32_System_Threading"],"target":"cfg(windows)","registry":null},{"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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.35.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.35.12/benches/mod.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/rustix-0.35.12/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"all-apis":["fs","io_uring","mm","net","param","process","procfs","rand","runtime","termios","thread","time"],"all-impls":["async-std","tokio","os_pipe","socket2","mio","fs-err"],"alloc":["dep:alloc"],"async-std":["io-lifetimes/async-std"],"cc":["dep:cc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std","use-libc-auxv"],"fs":[],"fs-err":["io-lifetimes/fs-err"],"io-lifetimes":["dep:io-lifetimes"],"io_uring":["fs","net"],"itoa":["dep:itoa"],"libc":["dep:libc"],"libc_errno":["dep:libc_errno"],"mio":["io-lifetimes/mio"],"mm":[],"net":[],"once_cell":["dep:once_cell"],"os_pipe":["io-lifetimes/os_pipe"],"param":[],"process":[],"procfs":["once_cell","itoa"],"rand":[],"runtime":[],"rustc-dep-of-std":["core","alloc","compiler_builtins","linux-raw-sys/rustc-dep-of-std","bitflags/rustc-dep-of-std"],"socket2":["io-lifetimes/socket2"],"std":["io-lifetimes"],"termios":[],"thread":[],"time":[],"tokio":["io-lifetimes/tokio"],"use-libc":["libc_errno","libc"],"use-libc-auxv":["libc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.35.12/Cargo.toml","metadata":{"docs":{"rs":{"features":["all-apis"],"rustdoc-args":["--cfg","doc_cfg"],"targets":["x86_64-unknown-linux-gnu","i686-unknown-linux-gnu","x86_64-apple-darwin","x86_64-pc-windows-msvc"]}}},"publish":null,"authors":["Dan Gohman ","Jakub Konka "],"categories":["os::unix-apis","date-and-time","filesystem","network-programming"],"keywords":["api","file","network","safe","syscall"],"readme":"README.md","repository":"https://github.com/bytecodealliance/rustix","homepage":null,"documentation":"https://docs.rs/rustix","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"scopeguard","version":"1.1.0","id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs","edition":"2015","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":"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":"sha2","version":"0.9.9","id":"sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"block-buffer","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"digest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"opaque-debug","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":"sha2-asm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"digest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["dev"],"target":null,"registry":null},{"name":"hex-literal","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cpufeatures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"sha512sum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/examples/sha512sum.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"sha256sum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/examples/sha256sum.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/tests/lib.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"sha256","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/benches/sha256.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"sha512","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/benches/sha512.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"asm":["sha2-asm"],"asm-aarch64":["asm"],"compress":[],"default":["std"],"force-soft":[],"sha2-asm":["dep:sha2-asm"],"std":["digest/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["RustCrypto Developers"],"categories":["cryptography","no-std"],"keywords":["crypto","sha2","hash","digest"],"readme":"README.md","repository":"https://github.com/RustCrypto/hashes","homepage":null,"documentation":"https://docs.rs/sha2","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"slice-group-by","version":"0.3.0","id":"slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Iterators over groups in a slice","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"slice-group-by","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slice-group-by-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":["std"],"nightly":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slice-group-by-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Kerollmops "],"categories":["algorithms"],"keywords":["slice","group"],"readme":"README.md","repository":"https://github.com/Kerollmops/slice-group-by","homepage":null,"documentation":"https://docs.rs/slice-group-by","edition":"2018","links":null,"default_run":null,"rust_version":null},{"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":"stable_deref_trait","version":"1.2.0","id":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Robert Grosse "],"categories":["memory-management","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/storyyeller/stable_deref_trait","homepage":null,"documentation":"https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"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":"target-lexicon","version":"0.12.4","id":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Targeting utilities for compilers and related tools","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"target-lexicon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"misc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/examples/misc.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"host","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/examples/host.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/target-lexicon-0.12.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Gohman "],"categories":["no-std"],"keywords":["target","host","triple","compiler","jit"],"readme":"README.md","repository":"https://github.com/bytecodealliance/target-lexicon","homepage":null,"documentation":"https://docs.rs/target-lexicon/","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":"typenum","version":"1.15.0","id":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"scale-info","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/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/typenum-1.15.0/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/build/main.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"force_unix_path_separator":[],"i128":[],"no_std":[],"scale-info":["dep:scale-info"],"scale_info":["scale-info/derive"],"strict":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/Cargo.toml","metadata":null,"publish":null,"authors":["Paho Lurie-Gregg ","Andre Bogus "],"categories":["no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/paholg/typenum","homepage":null,"documentation":"https://docs.rs/typenum","edition":"2018","links":null,"default_run":null,"rust_version":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":"version_check","version":"0.9.4","id":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Tiny crate to check the version of the installed/running rustc.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/Cargo.toml","metadata":null,"publish":null,"authors":["Sergio Benitez "],"categories":[],"keywords":["version","rustc","minimum","check"],"readme":"README.md","repository":"https://github.com/SergioBenitez/version_check","homepage":null,"documentation":"https://docs.rs/version_check/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"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":"wasmparser","version":"0.92.0","id":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"A simple event-driven library for parsing WebAssembly binary files.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.8.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":"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":"getopts","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.13.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rayon","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmparser","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/examples/simple.rs","edition":"2021","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/benches/benchmark.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"deterministic":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/Cargo.toml","metadata":null,"publish":null,"authors":["Yury Delendik "],"categories":[],"keywords":["parser","WebAssembly","wasm"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser","homepage":"https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser","documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime","version":"2.0.0","id":"wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"High-level API to expose the Wasmtime runtime","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.22","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.51","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.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"encoding_rs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.31","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std"],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"paste","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"psm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.11","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.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.94","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-cache","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":"wasmtime-component-macro","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":"wasmtime-component-util","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":"wasmtime-cranelift","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":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-fiber","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":"wasmtime-jit","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-runtime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wat","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","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.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_System_Diagnostics_Debug"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-2.0.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/wasmtime-2.0.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"all-arch":["wasmtime-cranelift?/all-arch"],"async":["dep:wasmtime-fiber","wasmtime-runtime/async","dep:async-trait"],"cache":["dep:wasmtime-cache"],"component-model":["wasmtime-environ/component-model","wasmtime-cranelift?/component-model","wasmtime-runtime/component-model","dep:wasmtime-component-macro","dep:wasmtime-component-util","dep:encoding_rs"],"cranelift":["dep:wasmtime-cranelift"],"default":["async","cache","wat","jitdump","parallel-compilation","cranelift","pooling-allocator","memory-init-cow","vtune"],"incremental-cache":["wasmtime-cranelift?/incremental-cache"],"jitdump":["wasmtime-jit/jitdump"],"memory-init-cow":["wasmtime-runtime/memory-init-cow"],"parallel-compilation":["dep:rayon"],"pooling-allocator":["wasmtime-runtime/pooling-allocator"],"posix-signals-on-macos":["wasmtime-runtime/posix-signals-on-macos"],"vtune":["wasmtime-jit/vtune"],"wat":["dep:wat"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-2.0.0/Cargo.toml","metadata":{"docs":{"rs":{"rustdoc-args":["--cfg","nightlydoc"]}}},"publish":null,"authors":["The Wasmtime Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-asm-macros","version":"2.0.0","id":"wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Macros for defining asm functions in Wasmtime","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-asm-macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-asm-macros-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-asm-macros-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-cranelift","version":"2.0.0","id":"wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Integration between Cranelift and Wasmtime","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.22","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-frontend","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-native","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-wasm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read","std"],"target":null,"registry":null},{"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":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std","write"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-cranelift","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-cranelift-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"all-arch":["cranelift-codegen/all-arch"],"component-model":["wasmtime-environ/component-model"],"incremental-cache":["cranelift-codegen/incremental-cache"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-cranelift-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-cranelift/","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-environ","version":"2.0.0","id":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Standalone environment support for WebAsssembly code in Cranelift","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.22","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read","std"],"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":false,"uses_default_features":true,"features":["serde-1"],"target":null,"registry":null},{"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":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std","write_core"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-encoder","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.18.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmprinter","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.41","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-component-util","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":"wasmtime-types","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"atty","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"clap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.2.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["color","suggestions","derive"],"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":true,"features":[],"target":null,"registry":null},{"name":"wat","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":"wasmtime-environ","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-environ-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"factc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-environ-2.0.0/examples/factc.rs","edition":"2021","required-features":["component-model"],"doc":false,"doctest":false,"test":false}],"features":{"component-model":["dep:wasm-encoder","dep:wasmprinter","dep:wasmtime-component-util"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-environ-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-environ/","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-jit","version":"2.0.0","id":"wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"JIT-style execution for WebAsssembly code in Cranelift","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"addr2line","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.17.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"anyhow","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.22","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.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cpp_demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read","std"],"target":null,"registry":null},{"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":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std"],"target":null,"registry":null},{"name":"rustc-demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-jit-debug","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":["perf_jitdump"],"target":null,"registry":null},{"name":"wasmtime-runtime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ittapi","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(target_arch = \"x86_64\")","registry":null},{"name":"rustix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.35.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["process"],"target":"cfg(target_os = \"linux\")","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_System_Diagnostics_Debug"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-jit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"ittapi":["dep:ittapi"],"jitdump":["wasmtime-jit-debug"],"vtune":["ittapi"],"wasmtime-jit-debug":["dep:wasmtime-jit-debug"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-jit","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-jit-debug","version":"2.0.0","id":"wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"JIT debug interfaces support for Wasmtime","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read_core","elf","std"],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.35.10","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["mm","param","time"],"target":"cfg(target_os = \"linux\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-jit-debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-debug-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"gdb_jit_int":["once_cell"],"object":["dep:object"],"once_cell":["dep:once_cell"],"perf_jitdump":["rustix","object"],"rustix":["dep:rustix"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-debug-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["development-tools::debugging"],"keywords":["gdb","jit"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-runtime","version":"2.0.0","id":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Runtime library support for Wasmtime","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.22","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"encoding_rs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.31","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.2","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.112","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"memfd","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":"memoffset","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":"paste","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"thiserror","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":"wasmtime-asm-macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-fiber","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":"wasmtime-jit-debug","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["gdb_jit_int"],"target":null,"registry":null},{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mach","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"macos\")","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_System_Kernel","Win32_System_Memory","Win32_System_Diagnostics_Debug","Win32_System_SystemInformation","Win32_Storage_FileSystem","Win32_Security"],"target":"cfg(target_os = \"windows\")","registry":null},{"name":"rustix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.35.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["mm"],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-runtime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-runtime-2.0.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/wasmtime-runtime-2.0.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"async":["wasmtime-fiber"],"component-model":["wasmtime-environ/component-model","dep:encoding_rs"],"memfd":["dep:memfd"],"memory-init-cow":["memfd"],"pooling-allocator":[],"posix-signals-on-macos":[],"wasmtime-fiber":["dep:wasmtime-fiber"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-runtime-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-runtime","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-types","version":"2.0.0","id":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"WebAssembly type definitions for Cranelift","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["enable-serde"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-types","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-types-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-types-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-types","edition":"2021","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-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.36.1","id":"windows-sys 0.36.1 (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_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-pc-windows-msvc","registry":null},{"name":"windows_aarch64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-uwp-windows-msvc","registry":null},{"name":"windows_i686_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-pc-windows-gnu","registry":null},{"name":"windows_i686_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-pc-windows-msvc","registry":null},{"name":"windows_i686_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-uwp-windows-gnu","registry":null},{"name":"windows_i686_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-uwp-windows-msvc","registry":null},{"name":"windows_x86_64_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-gnu","registry":null},{"name":"windows_x86_64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-msvc","registry":null},{"name":"windows_x86_64_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-uwp-windows-gnu","registry":null},{"name":"windows_x86_64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"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.36.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"AI":[],"AI_MachineLearning":["AI"],"AI_MachineLearning_Preview":["AI_MachineLearning"],"ApplicationModel":[],"ApplicationModel_Activation":["ApplicationModel"],"ApplicationModel_AppExtensions":["ApplicationModel"],"ApplicationModel_AppService":["ApplicationModel"],"ApplicationModel_Appointments":["ApplicationModel"],"ApplicationModel_Appointments_AppointmentsProvider":["ApplicationModel_Appointments"],"ApplicationModel_Appointments_DataProvider":["ApplicationModel_Appointments"],"ApplicationModel_Background":["ApplicationModel"],"ApplicationModel_Calls":["ApplicationModel"],"ApplicationModel_Calls_Background":["ApplicationModel_Calls"],"ApplicationModel_Calls_Provider":["ApplicationModel_Calls"],"ApplicationModel_Chat":["ApplicationModel"],"ApplicationModel_CommunicationBlocking":["ApplicationModel"],"ApplicationModel_Contacts":["ApplicationModel"],"ApplicationModel_Contacts_DataProvider":["ApplicationModel_Contacts"],"ApplicationModel_Contacts_Provider":["ApplicationModel_Contacts"],"ApplicationModel_ConversationalAgent":["ApplicationModel"],"ApplicationModel_Core":["ApplicationModel"],"ApplicationModel_DataTransfer":["ApplicationModel"],"ApplicationModel_DataTransfer_DragDrop":["ApplicationModel_DataTransfer"],"ApplicationModel_DataTransfer_DragDrop_Core":["ApplicationModel_DataTransfer_DragDrop"],"ApplicationModel_DataTransfer_ShareTarget":["ApplicationModel_DataTransfer"],"ApplicationModel_Email":["ApplicationModel"],"ApplicationModel_Email_DataProvider":["ApplicationModel_Email"],"ApplicationModel_ExtendedExecution":["ApplicationModel"],"ApplicationModel_ExtendedExecution_Foreground":["ApplicationModel_ExtendedExecution"],"ApplicationModel_Holographic":["ApplicationModel"],"ApplicationModel_LockScreen":["ApplicationModel"],"ApplicationModel_Payments":["ApplicationModel"],"ApplicationModel_Payments_Provider":["ApplicationModel_Payments"],"ApplicationModel_Preview":["ApplicationModel"],"ApplicationModel_Preview_Holographic":["ApplicationModel_Preview"],"ApplicationModel_Preview_InkWorkspace":["ApplicationModel_Preview"],"ApplicationModel_Preview_Notes":["ApplicationModel_Preview"],"ApplicationModel_Resources":["ApplicationModel"],"ApplicationModel_Resources_Core":["ApplicationModel_Resources"],"ApplicationModel_Resources_Management":["ApplicationModel_Resources"],"ApplicationModel_Search":["ApplicationModel"],"ApplicationModel_Search_Core":["ApplicationModel_Search"],"ApplicationModel_SocialInfo":["ApplicationModel"],"ApplicationModel_SocialInfo_Provider":["ApplicationModel_SocialInfo"],"ApplicationModel_Store":["ApplicationModel"],"ApplicationModel_Store_LicenseManagement":["ApplicationModel_Store"],"ApplicationModel_Store_Preview":["ApplicationModel_Store"],"ApplicationModel_Store_Preview_InstallControl":["ApplicationModel_Store_Preview"],"ApplicationModel_UserActivities":["ApplicationModel"],"ApplicationModel_UserActivities_Core":["ApplicationModel_UserActivities"],"ApplicationModel_UserDataAccounts":["ApplicationModel"],"ApplicationModel_UserDataAccounts_Provider":["ApplicationModel_UserDataAccounts"],"ApplicationModel_UserDataAccounts_SystemAccess":["ApplicationModel_UserDataAccounts"],"ApplicationModel_UserDataTasks":["ApplicationModel"],"ApplicationModel_UserDataTasks_DataProvider":["ApplicationModel_UserDataTasks"],"ApplicationModel_VoiceCommands":["ApplicationModel"],"ApplicationModel_Wallet":["ApplicationModel"],"ApplicationModel_Wallet_System":["ApplicationModel_Wallet"],"Data":[],"Data_Html":["Data"],"Data_Json":["Data"],"Data_Pdf":["Data"],"Data_Text":["Data"],"Data_Xml":["Data"],"Data_Xml_Dom":["Data_Xml"],"Data_Xml_Xsl":["Data_Xml"],"Devices":[],"Devices_Adc":["Devices"],"Devices_Adc_Provider":["Devices_Adc"],"Devices_AllJoyn":["Devices"],"Devices_Background":["Devices"],"Devices_Bluetooth":["Devices"],"Devices_Bluetooth_Advertisement":["Devices_Bluetooth"],"Devices_Bluetooth_Background":["Devices_Bluetooth"],"Devices_Bluetooth_GenericAttributeProfile":["Devices_Bluetooth"],"Devices_Bluetooth_Rfcomm":["Devices_Bluetooth"],"Devices_Custom":["Devices"],"Devices_Display":["Devices"],"Devices_Display_Core":["Devices_Display"],"Devices_Enumeration":["Devices"],"Devices_Enumeration_Pnp":["Devices_Enumeration"],"Devices_Geolocation":["Devices"],"Devices_Geolocation_Geofencing":["Devices_Geolocation"],"Devices_Gpio":["Devices"],"Devices_Gpio_Provider":["Devices_Gpio"],"Devices_Haptics":["Devices"],"Devices_HumanInterfaceDevice":["Devices"],"Devices_I2c":["Devices"],"Devices_I2c_Provider":["Devices_I2c"],"Devices_Input":["Devices"],"Devices_Input_Preview":["Devices_Input"],"Devices_Lights":["Devices"],"Devices_Lights_Effects":["Devices_Lights"],"Devices_Midi":["Devices"],"Devices_Perception":["Devices"],"Devices_Perception_Provider":["Devices_Perception"],"Devices_PointOfService":["Devices"],"Devices_PointOfService_Provider":["Devices_PointOfService"],"Devices_Portable":["Devices"],"Devices_Power":["Devices"],"Devices_Printers":["Devices"],"Devices_Printers_Extensions":["Devices_Printers"],"Devices_Pwm":["Devices"],"Devices_Pwm_Provider":["Devices_Pwm"],"Devices_Radios":["Devices"],"Devices_Scanners":["Devices"],"Devices_Sensors":["Devices"],"Devices_Sensors_Custom":["Devices_Sensors"],"Devices_SerialCommunication":["Devices"],"Devices_SmartCards":["Devices"],"Devices_Sms":["Devices"],"Devices_Spi":["Devices"],"Devices_Spi_Provider":["Devices_Spi"],"Devices_Usb":["Devices"],"Devices_WiFi":["Devices"],"Devices_WiFiDirect":["Devices"],"Devices_WiFiDirect_Services":["Devices_WiFiDirect"],"Embedded":[],"Embedded_DeviceLockdown":["Embedded"],"Foundation":[],"Foundation_Collections":["Foundation"],"Foundation_Diagnostics":["Foundation"],"Foundation_Metadata":["Foundation"],"Foundation_Numerics":["Foundation"],"Gaming":[],"Gaming_Input":["Gaming"],"Gaming_Input_Custom":["Gaming_Input"],"Gaming_Input_ForceFeedback":["Gaming_Input"],"Gaming_Input_Preview":["Gaming_Input"],"Gaming_Preview":["Gaming"],"Gaming_Preview_GamesEnumeration":["Gaming_Preview"],"Gaming_UI":["Gaming"],"Gaming_XboxLive":["Gaming"],"Gaming_XboxLive_Storage":["Gaming_XboxLive"],"Globalization":[],"Globalization_Collation":["Globalization"],"Globalization_DateTimeFormatting":["Globalization"],"Globalization_Fonts":["Globalization"],"Globalization_NumberFormatting":["Globalization"],"Globalization_PhoneNumberFormatting":["Globalization"],"Graphics":[],"Graphics_Capture":["Graphics"],"Graphics_DirectX":["Graphics"],"Graphics_DirectX_Direct3D11":["Graphics_DirectX"],"Graphics_Display":["Graphics"],"Graphics_Display_Core":["Graphics_Display"],"Graphics_Effects":["Graphics"],"Graphics_Holographic":["Graphics"],"Graphics_Imaging":["Graphics"],"Graphics_Printing":["Graphics"],"Graphics_Printing3D":["Graphics"],"Graphics_Printing_OptionDetails":["Graphics_Printing"],"Graphics_Printing_PrintSupport":["Graphics_Printing"],"Graphics_Printing_PrintTicket":["Graphics_Printing"],"Graphics_Printing_Workflow":["Graphics_Printing"],"Management":[],"Management_Core":["Management"],"Management_Deployment":["Management"],"Management_Deployment_Preview":["Management_Deployment"],"Management_Policies":["Management"],"Management_Update":["Management"],"Management_Workplace":["Management"],"Media":[],"Media_AppBroadcasting":["Media"],"Media_AppRecording":["Media"],"Media_Audio":["Media"],"Media_Capture":["Media"],"Media_Capture_Core":["Media_Capture"],"Media_Capture_Frames":["Media_Capture"],"Media_Casting":["Media"],"Media_ClosedCaptioning":["Media"],"Media_ContentRestrictions":["Media"],"Media_Control":["Media"],"Media_Core":["Media"],"Media_Core_Preview":["Media_Core"],"Media_Devices":["Media"],"Media_Devices_Core":["Media_Devices"],"Media_DialProtocol":["Media"],"Media_Editing":["Media"],"Media_Effects":["Media"],"Media_FaceAnalysis":["Media"],"Media_Import":["Media"],"Media_MediaProperties":["Media"],"Media_Miracast":["Media"],"Media_Ocr":["Media"],"Media_PlayTo":["Media"],"Media_Playback":["Media"],"Media_Playlists":["Media"],"Media_Protection":["Media"],"Media_Protection_PlayReady":["Media_Protection"],"Media_Render":["Media"],"Media_SpeechRecognition":["Media"],"Media_SpeechSynthesis":["Media"],"Media_Streaming":["Media"],"Media_Streaming_Adaptive":["Media_Streaming"],"Media_Transcoding":["Media"],"Networking":[],"Networking_BackgroundTransfer":["Networking"],"Networking_Connectivity":["Networking"],"Networking_NetworkOperators":["Networking"],"Networking_Proximity":["Networking"],"Networking_PushNotifications":["Networking"],"Networking_ServiceDiscovery":["Networking"],"Networking_ServiceDiscovery_Dnssd":["Networking_ServiceDiscovery"],"Networking_Sockets":["Networking"],"Networking_Vpn":["Networking"],"Networking_XboxLive":["Networking"],"Perception":[],"Perception_Automation":["Perception"],"Perception_Automation_Core":["Perception_Automation"],"Perception_People":["Perception"],"Perception_Spatial":["Perception"],"Perception_Spatial_Preview":["Perception_Spatial"],"Perception_Spatial_Surfaces":["Perception_Spatial"],"Phone":[],"Phone_ApplicationModel":["Phone"],"Phone_Devices":["Phone"],"Phone_Devices_Notification":["Phone_Devices"],"Phone_Devices_Power":["Phone_Devices"],"Phone_Management":["Phone"],"Phone_Management_Deployment":["Phone_Management"],"Phone_Media":["Phone"],"Phone_Media_Devices":["Phone_Media"],"Phone_Notification":["Phone"],"Phone_Notification_Management":["Phone_Notification"],"Phone_PersonalInformation":["Phone"],"Phone_PersonalInformation_Provisioning":["Phone_PersonalInformation"],"Phone_Speech":["Phone"],"Phone_Speech_Recognition":["Phone_Speech"],"Phone_StartScreen":["Phone"],"Phone_System":["Phone"],"Phone_System_Power":["Phone_System"],"Phone_System_Profile":["Phone_System"],"Phone_System_UserProfile":["Phone_System"],"Phone_System_UserProfile_GameServices":["Phone_System_UserProfile"],"Phone_System_UserProfile_GameServices_Core":["Phone_System_UserProfile_GameServices"],"Phone_UI":["Phone"],"Phone_UI_Input":["Phone_UI"],"Security":[],"Security_Authentication":["Security"],"Security_Authentication_Identity":["Security_Authentication"],"Security_Authentication_Identity_Core":["Security_Authentication_Identity"],"Security_Authentication_Identity_Provider":["Security_Authentication_Identity"],"Security_Authentication_OnlineId":["Security_Authentication"],"Security_Authentication_Web":["Security_Authentication"],"Security_Authentication_Web_Core":["Security_Authentication_Web"],"Security_Authentication_Web_Provider":["Security_Authentication_Web"],"Security_Authorization":["Security"],"Security_Authorization_AppCapabilityAccess":["Security_Authorization"],"Security_Credentials":["Security"],"Security_Credentials_UI":["Security_Credentials"],"Security_Cryptography":["Security"],"Security_Cryptography_Certificates":["Security_Cryptography"],"Security_Cryptography_Core":["Security_Cryptography"],"Security_Cryptography_DataProtection":["Security_Cryptography"],"Security_DataProtection":["Security"],"Security_EnterpriseData":["Security"],"Security_ExchangeActiveSyncProvisioning":["Security"],"Security_Isolation":["Security"],"Services":[],"Services_Cortana":["Services"],"Services_Maps":["Services"],"Services_Maps_Guidance":["Services_Maps"],"Services_Maps_LocalSearch":["Services_Maps"],"Services_Maps_OfflineMaps":["Services_Maps"],"Services_Store":["Services"],"Services_TargetedContent":["Services"],"Storage":[],"Storage_AccessCache":["Storage"],"Storage_BulkAccess":["Storage"],"Storage_Compression":["Storage"],"Storage_FileProperties":["Storage"],"Storage_Pickers":["Storage"],"Storage_Pickers_Provider":["Storage_Pickers"],"Storage_Provider":["Storage"],"Storage_Search":["Storage"],"Storage_Streams":["Storage"],"System":[],"System_Diagnostics":["System"],"System_Diagnostics_DevicePortal":["System_Diagnostics"],"System_Diagnostics_Telemetry":["System_Diagnostics"],"System_Diagnostics_TraceReporting":["System_Diagnostics"],"System_Display":["System"],"System_Implementation":["System"],"System_Implementation_FileExplorer":["System_Implementation"],"System_Inventory":["System"],"System_Power":["System"],"System_Power_Diagnostics":["System_Power"],"System_Preview":["System"],"System_Profile":["System"],"System_Profile_SystemManufacturers":["System_Profile"],"System_RemoteDesktop":["System"],"System_RemoteDesktop_Input":["System_RemoteDesktop"],"System_RemoteSystems":["System"],"System_Threading":["System"],"System_Threading_Core":["System_Threading"],"System_Update":["System"],"System_UserProfile":["System"],"UI":[],"UI_Accessibility":["UI"],"UI_ApplicationSettings":["UI"],"UI_Composition":["UI"],"UI_Composition_Core":["UI_Composition"],"UI_Composition_Desktop":["UI_Composition"],"UI_Composition_Diagnostics":["UI_Composition"],"UI_Composition_Effects":["UI_Composition"],"UI_Composition_Interactions":["UI_Composition"],"UI_Composition_Scenes":["UI_Composition"],"UI_Core":["UI"],"UI_Core_AnimationMetrics":["UI_Core"],"UI_Core_Preview":["UI_Core"],"UI_Input":["UI"],"UI_Input_Core":["UI_Input"],"UI_Input_Inking":["UI_Input"],"UI_Input_Inking_Analysis":["UI_Input_Inking"],"UI_Input_Inking_Core":["UI_Input_Inking"],"UI_Input_Inking_Preview":["UI_Input_Inking"],"UI_Input_Preview":["UI_Input"],"UI_Input_Preview_Injection":["UI_Input_Preview"],"UI_Input_Spatial":["UI_Input"],"UI_Notifications":["UI"],"UI_Notifications_Management":["UI_Notifications"],"UI_Popups":["UI"],"UI_Shell":["UI"],"UI_StartScreen":["UI"],"UI_Text":["UI"],"UI_Text_Core":["UI_Text"],"UI_UIAutomation":["UI"],"UI_UIAutomation_Core":["UI_UIAutomation"],"UI_ViewManagement":["UI"],"UI_ViewManagement_Core":["UI_ViewManagement"],"UI_WebUI":["UI"],"UI_WebUI_Core":["UI_WebUI"],"UI_WindowManagement":["UI"],"UI_WindowManagement_Preview":["UI_WindowManagement"],"UI_Xaml":["UI"],"UI_Xaml_Automation":["UI_Xaml"],"UI_Xaml_Automation_Peers":["UI_Xaml_Automation"],"UI_Xaml_Automation_Provider":["UI_Xaml_Automation"],"UI_Xaml_Automation_Text":["UI_Xaml_Automation"],"UI_Xaml_Controls":["UI_Xaml"],"UI_Xaml_Controls_Maps":["UI_Xaml_Controls"],"UI_Xaml_Controls_Primitives":["UI_Xaml_Controls"],"UI_Xaml_Core":["UI_Xaml"],"UI_Xaml_Core_Direct":["UI_Xaml_Core"],"UI_Xaml_Data":["UI_Xaml"],"UI_Xaml_Documents":["UI_Xaml"],"UI_Xaml_Hosting":["UI_Xaml"],"UI_Xaml_Input":["UI_Xaml"],"UI_Xaml_Interop":["UI_Xaml"],"UI_Xaml_Markup":["UI_Xaml"],"UI_Xaml_Media":["UI_Xaml"],"UI_Xaml_Media_Animation":["UI_Xaml_Media"],"UI_Xaml_Media_Imaging":["UI_Xaml_Media"],"UI_Xaml_Media_Media3D":["UI_Xaml_Media"],"UI_Xaml_Navigation":["UI_Xaml"],"UI_Xaml_Printing":["UI_Xaml"],"UI_Xaml_Resources":["UI_Xaml"],"UI_Xaml_Shapes":["UI_Xaml"],"Web":[],"Web_AtomPub":["Web"],"Web_Http":["Web"],"Web_Http_Diagnostics":["Web_Http"],"Web_Http_Filters":["Web_Http"],"Web_Http_Headers":["Web_Http"],"Web_Syndication":["Web"],"Web_UI":["Web"],"Web_UI_Interop":["Web_UI"],"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_Debug_WebApp":["Win32_System_Diagnostics_Debug"],"Win32_System_Diagnostics_Etw":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_ProcessSnapshotting":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_ToolHelp":["Win32_System_Diagnostics"],"Win32_System_DistributedTransactionCoordinator":["Win32_System"],"Win32_System_Environment":["Win32_System"],"Win32_System_ErrorReporting":["Win32_System"],"Win32_System_EventCollector":["Win32_System"],"Win32_System_EventLog":["Win32_System"],"Win32_System_EventNotificationService":["Win32_System"],"Win32_System_GroupPolicy":["Win32_System"],"Win32_System_HostCompute":["Win32_System"],"Win32_System_HostComputeNetwork":["Win32_System"],"Win32_System_HostComputeSystem":["Win32_System"],"Win32_System_Hypervisor":["Win32_System"],"Win32_System_IO":["Win32_System"],"Win32_System_Iis":["Win32_System"],"Win32_System_Ioctl":["Win32_System"],"Win32_System_JobObjects":["Win32_System"],"Win32_System_Js":["Win32_System"],"Win32_System_Kernel":["Win32_System"],"Win32_System_LibraryLoader":["Win32_System"],"Win32_System_Mailslots":["Win32_System"],"Win32_System_Mapi":["Win32_System"],"Win32_System_Memory":["Win32_System"],"Win32_System_Memory_NonVolatile":["Win32_System_Memory"],"Win32_System_MessageQueuing":["Win32_System"],"Win32_System_MixedReality":["Win32_System"],"Win32_System_Mmc":["Win32_System"],"Win32_System_Ole":["Win32_System"],"Win32_System_ParentalControls":["Win32_System"],"Win32_System_PasswordManagement":["Win32_System"],"Win32_System_Performance":["Win32_System"],"Win32_System_Performance_HardwareCounterProfiling":["Win32_System_Performance"],"Win32_System_Pipes":["Win32_System"],"Win32_System_Power":["Win32_System"],"Win32_System_ProcessStatus":["Win32_System"],"Win32_System_RealTimeCommunications":["Win32_System"],"Win32_System_Recovery":["Win32_System"],"Win32_System_Registry":["Win32_System"],"Win32_System_RemoteAssistance":["Win32_System"],"Win32_System_RemoteDesktop":["Win32_System"],"Win32_System_RemoteManagement":["Win32_System"],"Win32_System_RestartManager":["Win32_System"],"Win32_System_Restore":["Win32_System"],"Win32_System_Rpc":["Win32_System"],"Win32_System_Search":["Win32_System"],"Win32_System_Search_Common":["Win32_System_Search"],"Win32_System_SecurityCenter":["Win32_System"],"Win32_System_ServerBackup":["Win32_System"],"Win32_System_Services":["Win32_System"],"Win32_System_SettingsManagementInfrastructure":["Win32_System"],"Win32_System_SetupAndMigration":["Win32_System"],"Win32_System_Shutdown":["Win32_System"],"Win32_System_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_WinRT_Xaml":["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"],"Win32_Web":["Win32"],"Win32_Web_MsHtml":["Win32_Web"],"default":[],"deprecated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.36.1/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.46"},{"name":"windows_aarch64_msvc","version":"0.36.1","id":"windows_aarch64_msvc 0.36.1 (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.36.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/windows_aarch64_msvc-0.36.1/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.36.1/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.36.1","id":"windows_i686_gnu 0.36.1 (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.36.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/windows_i686_gnu-0.36.1/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.36.1/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.36.1","id":"windows_i686_msvc 0.36.1 (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.36.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/windows_i686_msvc-0.36.1/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.36.1/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.36.1","id":"windows_x86_64_gnu 0.36.1 (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.36.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/windows_x86_64_gnu-0.36.1/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.36.1/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.36.1","id":"windows_x86_64_msvc 0.36.1 (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.36.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/windows_x86_64_msvc-0.36.1/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.36.1/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}],"workspace_members":["bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)"],"resolve":{"nodes":[{"id":"addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"gimli","pkg":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom","pkg":"getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))"}]},{"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(all(target_arch = \"arm\", target_os = \"none\")))"}]},{"name":"version_check","pkg":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"generic_array","pkg":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)","dependencies":["wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"wasmtime","pkg":"wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"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":"cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"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":"cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"aarch64-apple-darwin"},{"kind":null,"target":"aarch64-linux-android"},{"kind":null,"target":"cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))"}]}],"features":[]},{"id":"cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"arrayvec","pkg":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bincode","pkg":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bumpalo","pkg":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_bforest","pkg":"cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_codegen_meta","pkg":"cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"cranelift_codegen_shared","pkg":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_isle","pkg":"cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"gimli","pkg":"gimli 0.26.2 (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":"regalloc2","pkg":"regalloc2 0.4.1 (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":"sha2","pkg":"sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["bincode","default","enable-serde","gimli","incremental-cache","serde","sha2","std","unwind"]},{"id":"cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen_shared","pkg":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["enable-serde","serde"]},{"id":"cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen","pkg":"cranelift-codegen 0.89.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":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rayon","pkg":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen","pkg":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"s390x\")"}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen","pkg":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_frontend","pkg":"cranelift-frontend 0.89.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":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_types","pkg":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"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":["std"]},{"id":"crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (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":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["crossbeam-utils","default","std"]},{"id":"crossbeam-deque 0.8.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)","crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (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":"crossbeam_epoch","pkg":"crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["crossbeam-epoch","crossbeam-utils","default","std"]},{"id":"crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","memoffset 0.6.5 (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":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"memoffset","pkg":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"scopeguard","pkg":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"crossbeam-utils 0.8.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":["default","std"]},{"id":"digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"generic_array","pkg":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["use_std"]},{"id":"errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"errno_dragonfly","pkg":"errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"dragonfly\")"}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"},{"kind":null,"target":"cfg(target_os = \"hermit\")"},{"kind":null,"target":"cfg(target_os = \"wasi\")"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"errno-dragonfly 0.1.2 (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.137 (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.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"byteorder","pkg":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"typenum","pkg":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"version_check","pkg":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"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.137 (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.137 (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":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"fallible_iterator","pkg":"fallible-iterator 0.2.0 (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":"stable_deref_trait","pkg":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["fallible-iterator","indexmap","read","read-core","stable_deref_trait","std","write"]},{"id":"hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ahash","pkg":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["ahash","raw"]},{"id":"hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"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)","serde 1.0.147 (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}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["serde","serde-1","std"]},{"id":"io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"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":"ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","ittapi-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (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":"ittapi_sys","pkg":"ittapi-sys 0.3.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}]}],"features":[]},{"id":"ittapi-sys 0.3.1 (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":[]},{"id":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","extra_traits","std"]},{"id":"linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["errno","general","ioctl","no_std"]},{"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":"mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))"}]}],"features":["default"]},{"id":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"memoffset 0.6.5 (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"]},{"id":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"hermit_abi","pkg":"hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))"}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(windows))"}]}],"features":[]},{"id":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.5.0 (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":"hashbrown","pkg":"hashbrown 0.12.3 (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":"memchr","pkg":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["coff","crc32fast","elf","hashbrown","indexmap","macho","pe","read_core","std","write","write_core","write_std"]},{"id":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","race","std"]},{"id":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"paste 1.0.9 (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":"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"]},{"id":"psm 0.1.21 (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":[]},{"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.137 (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.137 (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","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":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"crossbeam_deque","pkg":"crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"either","pkg":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rayon_core","pkg":"rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"crossbeam_channel","pkg":"crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_deque","pkg":"crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"num_cpus","pkg":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"fxhash","pkg":"fxhash 0.2.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":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slice_group_by","pkg":"slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["checker","default","enable-serde","serde"]},{"id":"rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (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":"libc_errno","pkg":"errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))"}]},{"name":"io_lifetimes","pkg":"io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))"},{"kind":null,"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))"}]},{"name":"linux_raw_sys","pkg":"linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))"},{"kind":null,"target":"cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))"}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","io-lifetimes","libc","mm","process","std","use-libc-auxv"]},{"id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"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":["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":"sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"block_buffer","pkg":"block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cpufeatures","pkg":"cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))"}]},{"name":"digest","pkg":"digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"opaque_debug","pkg":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["serde","union"]},{"id":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"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","parsing","printing","proc-macro","quote"]},{"id":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"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":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (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":"bincode","pkg":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (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":"object","pkg":"object 0.29.0 (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":"paste","pkg":"paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"psm","pkg":"psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rayon","pkg":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_cranelift","pkg":"wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_jit","pkg":"wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_runtime","pkg":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["cranelift","incremental-cache","parallel-compilation","vtune"]},{"id":"wasmtime-asm-macros 2.0.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)"],"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":"wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (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":"cranelift_codegen","pkg":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_frontend","pkg":"cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_native","pkg":"cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_wasm","pkg":"cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"gimli","pkg":"gimli 0.26.2 (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":"object","pkg":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (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":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["incremental-cache"]},{"id":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-types 2.0.0 (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":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"gimli","pkg":"gimli 0.26.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}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"object","pkg":"object 0.29.0 (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":"target_lexicon","pkg":"target-lexicon 0.12.4 (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":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_types","pkg":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"addr2line","pkg":"addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"anyhow","pkg":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bincode","pkg":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cpp_demangle","pkg":"cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"gimli","pkg":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ittapi","pkg":"ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"x86_64\")"}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"object","pkg":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustc_demangle","pkg":"rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustix","pkg":"rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"linux\")"}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (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":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_runtime","pkg":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["ittapi","vtune"]},{"id":"wasmtime-jit-debug 2.0.0 (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":["gdb_jit_int","once_cell"]},{"id":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (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":"cc","pkg":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (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":"mach","pkg":"mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"macos\")"}]},{"name":"memoffset","pkg":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"paste","pkg":"paste 1.0.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":"rustix","pkg":"rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_asm_macros","pkg":"wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_jit_debug","pkg":"wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":[]},{"id":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (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":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi_i686_pc_windows_gnu","pkg":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"}]},{"name":"winapi_x86_64_pc_windows_gnu","pkg":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"}]}],"features":["errhandlingapi","minwindef","ntdef","winbase"]},{"id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"windows_aarch64_msvc","pkg":"windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"aarch64-pc-windows-msvc"},{"kind":null,"target":"aarch64-uwp-windows-msvc"}]},{"name":"windows_i686_gnu","pkg":"windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"},{"kind":null,"target":"i686-uwp-windows-gnu"}]},{"name":"windows_i686_msvc","pkg":"windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-msvc"},{"kind":null,"target":"i686-uwp-windows-msvc"}]},{"name":"windows_x86_64_gnu","pkg":"windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"},{"kind":null,"target":"x86_64-uwp-windows-gnu"}]},{"name":"windows_x86_64_msvc","pkg":"windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-msvc"},{"kind":null,"target":"x86_64-uwp-windows-msvc"}]}],"features":["Win32","Win32_Foundation","Win32_NetworkManagement","Win32_NetworkManagement_IpHelper","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_Kernel","Win32_System_Memory","Win32_System_SystemInformation","Win32_System_Threading","default"]},{"id":"windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]}],"root":"bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)"},"target_directory":"/home/jake/code/krates/tests/bug/target","version":1,"workspace_root":"/home/jake/code/krates/tests/bug","metadata":null} +{"packages":[{"name":"addr2line","version":"0.17.0","id":"addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A cross-platform symbolication library written in Rust, using `gimli`","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cpp_demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"fallible-iterator","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read"],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.27.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read"],"target":null,"registry":null},{"name":"rustc-demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"backtrace","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.13","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"clap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"findshlibs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"typed-arena","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"addr2line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"addr2line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/examples/addr2line.rs","edition":"2015","required-features":["std-object"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"output_equivalence","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/tests/output_equivalence.rs","edition":"2015","required-features":["std-object"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"correctness","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/tests/correctness.rs","edition":"2015","required-features":["default"],"doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/tests/parse.rs","edition":"2015","required-features":["std-object"],"doc":false,"doctest":false,"test":true}],"features":{"alloc":["dep:alloc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"cpp_demangle":["dep:cpp_demangle"],"default":["rustc-demangle","cpp_demangle","std-object","fallible-iterator","smallvec"],"fallible-iterator":["dep:fallible-iterator"],"object":["dep:object"],"rustc-demangle":["dep:rustc-demangle"],"rustc-dep-of-std":["core","alloc","compiler_builtins","gimli/rustc-dep-of-std"],"smallvec":["dep:smallvec"],"std":["gimli/std"],"std-object":["std","object","object/std","object/compression","gimli/endian-reader"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/addr2line-0.17.0/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["development-tools::debugging"],"keywords":["DWARF","debug","elf","symbolicate","atos"],"readme":"./README.md","repository":"https://github.com/gimli-rs/addr2line","homepage":null,"documentation":"https://docs.rs/addr2line","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"ahash","version":"0.7.6","id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A non-cryptographic hash function using AES-NI for high performance","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fxhash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"no-panic","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.10","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"seahash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^4.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.59","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"version_check","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"const-random","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))","registry":null},{"name":"getrandom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))","registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.117","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["alloc"],"target":"cfg(not(all(target_arch = \"arm\", target_os = \"none\")))","registry":null},{"name":"const-random","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))","registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.117","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\")))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"nopanic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/nopanic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"map_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/map_tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bench","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/bench.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"ahash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"map","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/tests/map_tests.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/./build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"compile-time-rng":["const-random"],"const-random":["dep:const-random"],"default":["std"],"serde":["dep:serde"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/Cargo.toml","metadata":{"docs":{"rs":{"features":["std"],"rustc-args":["-C","target-feature=+aes"],"rustdoc-args":["-C","target-feature=+aes"]}}},"publish":null,"authors":["Tom Kaitchuck "],"categories":["algorithms","data-structures","no-std"],"keywords":["hash","hasher","hashmap","aes","no-std"],"readme":"README.md","repository":"https://github.com/tkaitchuck/ahash","homepage":null,"documentation":"https://docs.rs/ahash","edition":"2018","links":null,"default_run":null,"rust_version":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":"arrayvec","version":"0.7.2","id":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"bencher","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.4","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"matches","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"serde","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/tests/serde.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/arrayvec-0.7.2/tests/tests.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"extend","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/benches/extend.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"arraystring","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/benches/arraystring.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/arrayvec-0.7.2/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde"]}},"release":{"no-dev-version":true,"tag-name":"{{version}}"}},"publish":null,"authors":["bluss"],"categories":["data-structures","no-std"],"keywords":["stack","vector","array","data-structure","no_std"],"readme":"README.md","repository":"https://github.com/bluss/arrayvec","homepage":null,"documentation":"https://docs.rs/arrayvec/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"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":"bincode","version":"1.3.3","id":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.63","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_bytes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.11","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.27","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bincode","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/tests/test.rs","edition":"2015","doc":false,"doctest":false,"test":true}],"features":{"i128":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/bincode-1.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Ty Overby ","Francesco Mazzoli ","David Tolnay ","Zoey Riordan "],"categories":["encoding","network-programming"],"keywords":["binary","encode","decode","serialize","deserialize"],"readme":"./readme.md","repository":"https://github.com/servo/bincode","homepage":null,"documentation":"https://docs.rs/bincode","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"bitflags","version":"1.3.2","id":"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":"block-buffer","version":"0.9.0","id":"block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Fixed size buffer for block processing of data","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"block-padding","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":"generic-array","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"block-buffer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"block-padding":["dep:block-padding"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/Cargo.toml","metadata":null,"publish":null,"authors":["RustCrypto Developers"],"categories":["cryptography","no-std"],"keywords":["block","buffer"],"readme":null,"repository":"https://github.com/RustCrypto/utils","homepage":null,"documentation":"https://docs.rs/block-buffer","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"bug","version":"0.1.0","id":"bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)","license":null,"license_file":null,"description":null,"source":null,"dependencies":[{"name":"conv","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":"wasmtime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["cranelift","incremental-cache","parallel-compilation","vtune"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"bug","src_path":"/home/jake/code/krates/tests/bug/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/code/krates/tests/bug/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":"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":"byteorder","version":"1.4.3","id":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"Unlicense OR MIT","license_file":null,"description":"Library for reading/writing numbers in big-endian and little-endian.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.2","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/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/byteorder-1.4.3/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"i128":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/Cargo.toml","metadata":null,"publish":null,"authors":["Andrew Gallant "],"categories":["encoding","parsing","no-std"],"keywords":["byte","endian","big-endian","little-endian","binary"],"readme":"README.md","repository":"https://github.com/BurntSushi/byteorder","homepage":"https://github.com/BurntSushi/byteorder","documentation":"https://docs.rs/byteorder","edition":"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":"conv","version":"0.3.3","id":"conv 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"This crate provides a number of conversion traits with more specific semantics than those provided by 'as' or 'From'/'Into'.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"custom_derive","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"quickcheck","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.21, <0.2.25","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"conv","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lang_ints","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/lang_ints.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"derive_try_from","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/derive_try_from.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"conv_utils","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/conv_utils.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"use_in_generics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/use_in_generics.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lang_char","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/lang_char.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lang_floats","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/lang_floats.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"unwraps","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/tests/unwraps.rs","edition":"2015","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/conv-0.3.3/Cargo.toml","metadata":null,"publish":null,"authors":["Daniel Keep "],"categories":[],"keywords":["from","into","conversion","approximation"],"readme":"README.md","repository":"https://github.com/DanielKeep/rust-conv","homepage":null,"documentation":"https://danielkeep.github.io/rust-conv/doc/conv/index.html","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"cpp_demangle","version":"0.3.5","id":"cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A crate for demangling C++ symbols","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"afl","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":"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":"clap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.33.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"diff","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":"cpp_demangle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bin"],"crate_types":["bin"],"name":"afl_runner","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/src/bin/afl_runner.rs","edition":"2015","required-features":["afl"],"doc":true,"doctest":false,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"cppfilt","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/examples/cppfilt.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/cpp_demangle-0.3.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"afl":["dep:afl"],"alloc":[],"cppfilt":[],"default":["std"],"fuzz":["afl"],"logging":[],"nightly":[],"run_libiberty_tests":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpp_demangle-0.3.5/Cargo.toml","metadata":null,"publish":null,"authors":["Nick Fitzgerald ","Jim Blandy "],"categories":["development-tools::debugging","development-tools::ffi"],"keywords":["demangle","symbolicate","c-plus-plus","itanium"],"readme":"./README.md","repository":"https://github.com/gimli-rs/cpp_demangle","homepage":null,"documentation":"https://docs.rs/cpp_demangle","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"cpufeatures","version":"0.2.5","id":"cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Lightweight runtime CPU feature detection for x86/x86_64 and aarch64 with\nno_std support and support for mobile targets including Android and iOS\n","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.95","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-apple-darwin","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":"aarch64-linux-android","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(all(target_arch = \"aarch64\", target_os = \"linux\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"x86","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/tests/x86.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"aarch64","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/tests/aarch64.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.5/Cargo.toml","metadata":null,"publish":null,"authors":["RustCrypto Developers"],"categories":["no-std"],"keywords":["cpuid","target-feature"],"readme":"README.md","repository":"https://github.com/RustCrypto/utils","homepage":null,"documentation":"https://docs.rs/cpufeatures","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-bforest","version":"0.89.0","id":"cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"A forest of B+-trees","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-bforest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-bforest-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-bforest-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":["btree","forest","set","map"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-bforest","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-codegen","version":"0.89.0","id":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Low-level code generator library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"arrayvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","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.2.1","kind":null,"rename":null,"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","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-bforest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-codegen-shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read","std","write"],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","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.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"regalloc2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["checker"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"sha2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9.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":["union"],"target":null,"registry":null},{"name":"souper-ir","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":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-codegen-meta","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-isle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=0.89.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"miette","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^5.1.0","kind":"build","rename":null,"optional":true,"uses_default_features":true,"features":["fancy"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-codegen","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"x64-evex-encoding","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-0.89.0/benches/x64-evex-encoding.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/cranelift-codegen-0.89.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"all-arch":["x86","arm64","s390x","riscv64"],"arm64":[],"bincode":["dep:bincode"],"core":["hashbrown"],"default":["std","unwind"],"enable-serde":["serde","cranelift-entity/enable-serde","regalloc2/enable-serde","smallvec/serde"],"experimental_x64":[],"gimli":["dep:gimli"],"hashbrown":["dep:hashbrown"],"incremental-cache":["enable-serde","bincode","sha2"],"isle-errors":["miette","cranelift-isle/miette-errors"],"isle-in-source-tree":[],"miette":["dep:miette"],"riscv64":[],"s390x":[],"serde":["dep:serde"],"sha2":["dep:sha2"],"souper-harvest":["souper-ir","souper-ir/stringify"],"souper-ir":["dep:souper-ir"],"std":[],"testing_hooks":[],"trace-log":[],"unwind":["gimli"],"x86":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":["compile","compiler","jit"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-codegen","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-codegen-meta","version":"0.89.0","id":"cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Metaprogram for cranelift-codegen code generator library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen-shared","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-codegen-meta","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-meta-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-meta-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-codegen-shared","version":"0.89.0","id":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"For code shared between cranelift-codegen-meta and cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-codegen-shared","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-shared-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-codegen-shared-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-entity","version":"0.89.0","id":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Data structures using entity references as mapping keys","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.94","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-entity","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-entity-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"enable-serde":["serde"],"serde":["dep:serde"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-entity-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":["entity","set","map"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-entity","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-frontend","version":"0.89.0","id":"cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Cranelift IR builder helper","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","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.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"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":["union"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-frontend","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-frontend-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"core":["hashbrown","cranelift-codegen/core"],"default":["std"],"hashbrown":["dep:hashbrown"],"std":["cranelift-codegen/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-frontend-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-frontend","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-isle","version":"0.89.0","id":"cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"ISLE: Instruction Selection and Lowering Expressions. A domain-specific language for instruction selection in Cranelift.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"miette","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^5.1.0","kind":null,"rename":null,"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.5","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"tempfile","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-isle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-isle-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"run_tests","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-isle-0.89.0/tests/run_tests.rs","edition":"2021","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/cranelift-isle-0.89.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"default":[],"log":["dep:log"],"logging":["log"],"miette":["dep:miette"],"miette-errors":["miette"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-isle-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-native","version":"0.89.0","id":"cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Support for targeting the host with Cranelift","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.95","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_arch = \"s390x\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"cranelift-native","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-native-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"core":["cranelift-codegen/core"],"default":["std"],"std":["cranelift-codegen/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-native-0.89.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Cranelift Project Developers"],"categories":["no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-native","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"cranelift-wasm","version":"0.89.0","id":"cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Translator from WebAssembly to Cranelift IR","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-frontend","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"itertools","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.10.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"smallvec","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["union"],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-types","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"wat","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":"cranelift-wasm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-wasm-0.89.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wasm_testsuite","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-wasm-0.89.0/tests/wasm_testsuite.rs","edition":"2021","doc":false,"doctest":false,"test":true}],"features":{"core":["hashbrown","cranelift-codegen/core","cranelift-frontend/core"],"default":["std"],"enable-serde":["serde"],"hashbrown":["dep:hashbrown"],"serde":["dep:serde"],"std":["cranelift-codegen/std","cranelift-frontend/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/cranelift-wasm-0.89.0/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/wasmtime","homepage":null,"documentation":"https://docs.rs/cranelift-wasm","edition":"2021","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":"crossbeam-channel","version":"0.5.6","id":"crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Multi-producer multi-consumer channels for message passing","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"crossbeam-utils","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":"num_cpus","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.13.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"signal-hook","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"fibonacci","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/fibonacci.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"stopwatch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/stopwatch.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"matching","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/matching.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"iter","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/iter.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"thread_locals","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/thread_locals.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"select_macro","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select_macro.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"golang","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/golang.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"ready","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/ready.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"after","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/after.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"never","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/never.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/crossbeam-channel-0.5.6/tests/mpsc.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/crossbeam-channel-0.5.6/tests/list.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"zero","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/zero.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"array","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/array.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"tick","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/tick.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"select","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"same_channel","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/same_channel.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"crossbeam","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/benches/crossbeam.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"crossbeam-utils":["dep:crossbeam-utils"],"default":["std"],"std":["crossbeam-utils/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["algorithms","concurrency","data-structures"],"keywords":["channel","mpmc","select","golang","message"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"crossbeam-deque","version":"0.8.2","id":"crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Concurrent work-stealing deque","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"crossbeam-epoch","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","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","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-deque","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"fifo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/fifo.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"lifo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/lifo.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"injector","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/injector.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"steal","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/steal.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"crossbeam-epoch":["dep:crossbeam-epoch"],"crossbeam-utils":["dep:crossbeam-utils"],"default":["std"],"std":["crossbeam-epoch/std","crossbeam-utils/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["algorithms","concurrency","data-structures"],"keywords":["chase-lev","lock-free","scheduler","scheduling"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"crossbeam-epoch","version":"0.9.11","id":"crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Epoch-based garbage collection","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"crossbeam-utils","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.5","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"memoffset","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":"scopeguard","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","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":"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},{"name":"loom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":"loom-crate","optional":true,"uses_default_features":true,"features":[],"target":"cfg(crossbeam_loom)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-epoch","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"sanitize","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/examples/sanitize.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"loom","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/tests/loom.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"pin","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/benches/pin.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"flush","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/benches/flush.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"defer","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/benches/defer.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/crossbeam-epoch-0.9.11/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":[],"default":["std"],"loom":["loom-crate","crossbeam-utils/loom"],"loom-crate":["dep:loom-crate"],"nightly":["crossbeam-utils/nightly"],"std":["alloc","crossbeam-utils/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.11/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["concurrency","memory-management","no-std"],"keywords":["lock-free","rcu","atomic","garbage"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"crossbeam-utils","version":"0.8.12","id":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Utilities for concurrent programming","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"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":"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":"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":"loom","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(crossbeam_loom)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-utils","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"cache_padded","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/cache_padded.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sharded_lock","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/sharded_lock.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"atomic_cell","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/atomic_cell.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"wait_group","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/wait_group.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"thread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/thread.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parker","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/tests/parker.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"atomic_cell","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/benches/atomic_cell.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/crossbeam-utils-0.8.12/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":["std"],"loom":["dep:loom"],"nightly":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.12/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["algorithms","concurrency","data-structures","no-std"],"keywords":["scoped","thread","atomic","cache"],"readme":"README.md","repository":"https://github.com/crossbeam-rs/crossbeam","homepage":"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils","documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.38"},{"name":"custom_derive","version":"0.1.7","id":"custom_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"(Note: superseded by `macro-attr`) This crate provides a macro that enables the use of custom derive attributes.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"custom_derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"enum_iterator","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/tests/enum_iterator.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stable_encodable","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/tests/stable_encodable.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"enum_try_from","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/tests/enum_try_from.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"empty_bi_derives","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/tests/empty_bi_derives.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"trailing_comma","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/tests/trailing_comma.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"passthru_derive","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/tests/passthru_derive.rs","edition":"2015","doc":false,"doctest":false,"test":true}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/custom_derive-0.1.7/Cargo.toml","metadata":null,"publish":null,"authors":["Daniel Keep "],"categories":[],"keywords":["custom","derive","macro"],"readme":"README.md","repository":"https://github.com/DanielKeep/rust-custom-derive/tree/custom_derive-master","homepage":null,"documentation":"https://docs.rs/crate/custom_derive/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"digest","version":"0.9.0","id":"digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Traits for cryptographic hash functions","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"blobby","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"generic-array","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.14","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"blobby":["dep:blobby"],"dev":["blobby"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["RustCrypto Developers"],"categories":["cryptography","no-std"],"keywords":["digest","crypto","hash"],"readme":"README.md","repository":"https://github.com/RustCrypto/traits","homepage":null,"documentation":"https://docs.rs/digest","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"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":"errno","version":"0.2.8","id":"errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Cross-platform interface to the `errno` variable.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"errno-dragonfly","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"dragonfly\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"hermit\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"wasi\")","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null},{"name":"winapi","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["errhandlingapi","minwindef","ntdef","winbase"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"errno","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/Cargo.toml","metadata":null,"publish":null,"authors":["Chris Wong "],"categories":["os"],"keywords":[],"readme":"README.md","repository":"https://github.com/lambda-fairy/rust-errno","homepage":null,"documentation":"https://docs.rs/errno","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"errno-dragonfly","version":"0.1.2","id":"errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Exposes errno functionality to stable Rust on DragonFlyBSD","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"errno-dragonfly","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml","metadata":null,"publish":null,"authors":["Michael Neumann "],"categories":[],"keywords":["dragonfly"],"readme":"README.md","repository":"https://github.com/mneumann/errno-dragonfly-rs","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"fallible-iterator","version":"0.2.0","id":"fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Fallible iterator traits","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fallible-iterator","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fallible-iterator-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fallible-iterator-0.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Steven Fackler "],"categories":["algorithms","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/sfackler/rust-fallible-iterator","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"fxhash","version":"0.2.1","id":"fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0/MIT","license_file":null,"description":"A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"byteorder","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fnv","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"seahash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.0.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"fxhash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"fxhash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/bench.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/Cargo.toml","metadata":null,"publish":null,"authors":["cbreeden "],"categories":["algorithms"],"keywords":["hash"],"readme":"README.md","repository":"https://github.com/cbreeden/fxhash","homepage":null,"documentation":"https://docs.rs/fxhash","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"generic-array","version":"0.14.6","id":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Generic types implementing functionality of arrays","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"typenum","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"zeroize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"bincode","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde_json","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"version_check","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/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/generic-array-0.14.6/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"more_lengths":[],"serde":["dep:serde"],"zeroize":["dep:zeroize"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.6/Cargo.toml","metadata":{"docs":{"rs":{"features":["serde","zeroize"]}}},"publish":null,"authors":["Bartłomiej Kamiński ","Aaron Trent "],"categories":["data-structures","no-std"],"keywords":["generic","array"],"readme":"README.md","repository":"https://github.com/fizyk20/generic-array.git","homepage":null,"documentation":"http://fizyk20.github.io/generic-array/generic_array/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"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":"gimli","version":"0.26.2","id":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"A library for reading and writing the DWARF debugging format.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"fallible-iterator","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"stable_deref_trait","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"crossbeam","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"getopts","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memmap2","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},{"name":"num_cpus","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["wasm"],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"regex","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"test-assembler","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"typed-arena","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"gimli","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/simple.rs","edition":"2018","required-features":["read"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"simple_line","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/simple_line.rs","edition":"2018","required-features":["read"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"dwarfdump","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/dwarfdump.rs","edition":"2018","required-features":["read","std"],"doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"dwarf-validate","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/examples/dwarf-validate.rs","edition":"2018","required-features":["read","std"],"doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"parse_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/tests/parse_self.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"convert_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/tests/convert_self.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/gimli-0.26.2/benches/bench.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"alloc":["dep:alloc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["read","write","std","fallible-iterator","endian-reader"],"endian-reader":["read","stable_deref_trait"],"fallible-iterator":["dep:fallible-iterator"],"indexmap":["dep:indexmap"],"read":["read-core"],"read-core":[],"rustc-dep-of-std":["core","alloc","compiler_builtins"],"stable_deref_trait":["dep:stable_deref_trait"],"std":["fallible-iterator/std","stable_deref_trait/std"],"write":["indexmap"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/gimli-0.26.2/Cargo.toml","metadata":null,"publish":null,"authors":[],"categories":["development-tools::debugging","development-tools::profiling","parser-implementations"],"keywords":["DWARF","debug","ELF","eh_frame"],"readme":"./README.md","repository":"https://github.com/gimli-rs/gimli","homepage":null,"documentation":"https://docs.rs/gimli","edition":"2018","links":null,"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":"hermit-abi","version":"0.1.19","id":"hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"hermit-abi is small interface to call functions from the unikernel RustyHermit.\nIt is used to build the target `x86_64-unknown-hermit`.\n","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.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.51","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"hermit-abi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":[],"docs":[],"rustc-dep-of-std":["core","compiler_builtins/rustc-dep-of-std","libc/rustc-dep-of-std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/Cargo.toml","metadata":{"docs":{"rs":{"default-target":"x86_64-unknown-hermit","features":["docs"]}}},"publish":null,"authors":["Stefan Lankes"],"categories":["os"],"keywords":["unikernel","libos"],"readme":"README.md","repository":"https://github.com/hermitcore/libhermit-rs","homepage":null,"documentation":"https://hermitcore.github.io/rusty-hermit/hermit_abi","edition":"2018","links":null,"default_run":null,"rust_version":null},{"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":"io-lifetimes","version":"0.7.4","id":"io-lifetimes 0.7.4 (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":"A low-level I/O ownership and borrowing library","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"fs-err","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.6.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"async-std","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"mio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["net","os-ext"],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"os_pipe","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":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"socket2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"tokio","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["io-std","fs","net","process"],"target":"cfg(not(target_os = \"wasi\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.96","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(not(windows))","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["Win32_Foundation","Win32_Storage_FileSystem","Win32_Networking_WinSock","Win32_Security","Win32_System_IO","Win32_System_Threading"],"target":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"io-lifetimes","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-0.7.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/io-lifetimes-0.7.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"async-std":["dep:async-std"],"close":["libc","windows-sys"],"default":["close"],"fs-err":["dep:fs-err"],"libc":["dep:libc"],"mio":["dep:mio"],"os_pipe":["dep:os_pipe"],"socket2":["dep:socket2"],"tokio":["dep:tokio"],"windows-sys":["dep:windows-sys"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-0.7.4/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Gohman "],"categories":["os","rust-patterns"],"keywords":["api","io"],"readme":"README.md","repository":"https://github.com/sunfishcode/io-lifetimes","homepage":null,"documentation":null,"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":"ittapi","version":"0.3.1","id":"ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"GPL-2.0-only OR BSD-3-Clause","license_file":null,"description":"High-level Rust bindings for ittapi","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.56","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ittapi-sys","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"scoped-env","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":"ittapi","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-0.3.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Johnnie Birch <45402135+jlb6740@users.noreply.github.com>","Benjamin Bouvier "],"categories":["development-tools"],"keywords":["vtune","profiling","code-generation"],"readme":"README.md","repository":"https://github.com/intel/ittapi","homepage":"https://github.com/intel/ittapi/tree/master/rust/ittapi","documentation":"https://docs.rs/ittapi","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"ittapi-sys","version":"0.3.1","id":"ittapi-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"GPL-2.0-only OR BSD-3-Clause","license_file":null,"description":"Rust bindings for ittapi","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.59","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"diff","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":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.73","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"ittapi-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-sys-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"bindgen-up-to-date","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-sys-0.3.1/tests/bindgen-up-to-date.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/ittapi-sys-0.3.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/ittapi-sys-0.3.1/Cargo.toml","metadata":null,"publish":null,"authors":["Johnnie Birch <45402135+jlb6740@users.noreply.github.com>"],"categories":["development-tools","external-ffi-bindings"],"keywords":["vtune","profiling","code-generation"],"readme":"README.md","repository":"https://github.com/intel/ittapi","homepage":"https://github.com/intel/ittapi/tree/master/rust/ittapi-sys","documentation":"https://docs.rs/ittapi-sys","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"libc","version":"0.2.137","id":"libc 0.2.137 (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.137/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.137/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.137/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.137/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":"linux-raw-sys","version":"0.0.46","id":"linux-raw-sys 0.0.46 (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":"Generated bindings for Linux's userspace API","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.49","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.100","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"static_assertions","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"linux-raw-sys","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.0.46/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std","general","errno"],"errno":[],"general":[],"ioctl":[],"netlink":[],"no_std":[],"rustc-dep-of-std":["core","compiler_builtins","no_std"],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.0.46/Cargo.toml","metadata":{"docs":{"rs":{"features":["default","ioctl","netlink"],"targets":["x86_64-unknown-linux-gnu","i686-unknown-linux-gnu"]}}},"publish":null,"authors":["Dan Gohman "],"categories":["external-ffi-bindings"],"keywords":["linux","uapi","ffi"],"readme":"README.md","repository":"https://github.com/sunfishcode/linux-raw-sys","homepage":null,"documentation":"https://docs.rs/linux-raw-sys","edition":"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":"mach","version":"0.3.2","id":"mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","license":"BSD-2-Clause","license_file":null,"description":"A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))","registry":null},{"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":"cfg(any(target_os = \"macos\", target_os = \"ios\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"mach","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mach-0.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"dump_process_registers","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mach-0.3.2/examples/dump_process_registers.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":[],"deprecated":[],"rustc-dep-of-std":["rustc-std-workspace-core","libc/rustc-dep-of-std"],"rustc-std-workspace-core":["dep:rustc-std-workspace-core"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/mach-0.3.2/Cargo.toml","metadata":null,"publish":null,"authors":["Nick Fitzgerald ","David Cuddeback ","Gonzalo Brito Gadeschi "],"categories":["api-bindings","external-ffi-bindings","no-std","os"],"keywords":["kernel","macos","darwin"],"readme":"README.md","repository":"https://github.com/fitzgen/mach","homepage":null,"documentation":null,"edition":"2015","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":"memoffset","version":"0.6.5","id":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"offset_of functionality for Rust structs.","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":"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":"memoffset","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/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/memoffset-0.6.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{"default":[],"unstable_const":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml","metadata":null,"publish":null,"authors":["Gilad Naaman "],"categories":["no-std"],"keywords":["mem","offset","offset_of","offsetof"],"readme":"README.md","repository":"https://github.com/Gilnaa/memoffset","homepage":null,"documentation":null,"edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"num_cpus","version":"1.13.1","id":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Get the number of CPUs on a machine.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"hermit-abi","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(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.26","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(not(windows))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"num_cpus","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"values","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/examples/values.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/Cargo.toml","metadata":null,"publish":null,"authors":["Sean McArthur "],"categories":["hardware-support"],"keywords":["cpu","cpus","cores"],"readme":"README.md","repository":"https://github.com/seanmonstar/num_cpus","homepage":null,"documentation":"https://docs.rs/num_cpus","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"object","version":"0.29.0","id":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 OR MIT","license_file":null,"description":"A unified interface for reading and writing object file formats.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"crc32fast","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"flate2","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"hashbrown","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["ahash"],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"memchr","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.4.1","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.57","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"object","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.29.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"parse_self","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.29.0/tests/parse_self.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/object-0.29.0/tests/integration.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{"all":["read","write","std","compression","wasm"],"alloc":["dep:alloc"],"archive":[],"cargo-all":[],"coff":[],"compiler_builtins":["dep:compiler_builtins"],"compression":["flate2","std"],"core":["dep:core"],"crc32fast":["dep:crc32fast"],"default":["read","compression"],"doc":["read_core","write_std","std","compression","archive","coff","elf","macho","pe","wasm"],"elf":[],"flate2":["dep:flate2"],"hashbrown":["dep:hashbrown"],"indexmap":["dep:indexmap"],"macho":[],"pe":["coff"],"read":["read_core","archive","coff","elf","macho","pe","unaligned"],"read_core":[],"rustc-dep-of-std":["core","compiler_builtins","alloc","memchr/rustc-dep-of-std"],"std":["memchr/std"],"unaligned":[],"wasm":["wasmparser"],"wasmparser":["dep:wasmparser"],"write":["write_std","coff","elf","macho","pe"],"write_core":["crc32fast","indexmap","hashbrown"],"write_std":["write_core","std","indexmap/std","crc32fast/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/object-0.29.0/Cargo.toml","metadata":{"docs":{"rs":{"features":["doc"]}}},"publish":null,"authors":[],"categories":[],"keywords":["object","elf","mach-o","pe","coff"],"readme":"README.md","repository":"https://github.com/gimli-rs/object","homepage":null,"documentation":null,"edition":"2018","links":null,"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":"opaque-debug","version":"0.3.0","id":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Macro for opaque Debug trait implementation","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"opaque-debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/tests/mod.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["RustCrypto Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/RustCrypto/utils","homepage":null,"documentation":"https://docs.rs/opaque-debug","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"paste","version":"1.0.9","id":"paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Macros for all your token pasting needs","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"paste-test-suite","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustversion","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"trybuild","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["diff"],"target":null,"registry":null}],"targets":[{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"paste","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.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/paste-1.0.9/tests/compiletest.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_attr","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.9/tests/test_attr.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/paste-1.0.9/tests/test_item.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/paste-1.0.9/tests/test_expr.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"test_doc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.9/tests/test_doc.rs","edition":"2018","doc":false,"doctest":false,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.9/Cargo.toml","metadata":{"docs":{"rs":{"targets":["x86_64-unknown-linux-gnu"]}}},"publish":null,"authors":["David Tolnay "],"categories":["development-tools","no-std"],"keywords":["macros"],"readme":"README.md","repository":"https://github.com/dtolnay/paste","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":"1.31"},{"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":"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":"psm","version":"0.1.21","id":"psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Portable Stack Manipulation: stack manipulation and introspection routines","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.2","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"psm","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"panics","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/panics.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"info","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/info.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"on_stack_fibo","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/on_stack_fibo.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"on_stack_fibo_alloc_each_frame","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/on_stack_fibo_alloc_each_frame.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"replace_stack_1","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/replace_stack_1.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"thread","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/examples/thread.rs","edition":"2015","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"stack_direction","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/tests/stack_direction.rs","edition":"2015","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stack_direction_2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/tests/stack_direction_2.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/psm-0.1.21/build.rs","edition":"2015","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/psm-0.1.21/Cargo.toml","metadata":null,"publish":null,"authors":["Simonas Kazlauskas "],"categories":[],"keywords":["stack","no_std"],"readme":"README.mkd","repository":"https://github.com/rust-lang/stacker/","homepage":null,"documentation":"https://docs.rs/psm/0.1.20","edition":"2015","links":null,"default_run":null,"rust_version":null},{"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":"rayon","version":"1.5.3","id":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Simple work-stealing parallelism for Rust","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"crossbeam-deque","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"either","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"rayon-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.9.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"docopt","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":"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":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_xorshift","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.85","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"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":"rayon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"cpu_monitor","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/examples/cpu_monitor.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"cross-pool","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/cross-pool.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"chars","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/chars.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"issue671","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671.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/rayon-1.5.3/tests/debug.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"octillion","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/octillion.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"clones","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/clones.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"collect","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/collect.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"issue671-unzip","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671-unzip.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"producer_split_at","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/producer_split_at.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"sort-panic-safe","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/sort-panic-safe.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"intersperse","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/intersperse.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"iter_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/iter_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"str","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/str.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"named-threads","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/named-threads.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/rayon-1.5.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/Cargo.toml","metadata":null,"publish":null,"authors":["Niko Matsakis ","Josh Stone "],"categories":["concurrency"],"keywords":["parallel","thread","concurrency","join","performance"],"readme":"README.md","repository":"https://github.com/rayon-rs/rayon","homepage":null,"documentation":"https://docs.rs/rayon/","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"rayon-core","version":"1.9.3","id":"rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Core APIs for Rayon","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"crossbeam-channel","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":"crossbeam-deque","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"crossbeam-utils","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"num_cpus","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rand_xorshift","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"scoped-tls","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rayon-core","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"stack_overflow_crash","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/stack_overflow_crash.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"double_init_fail","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/double_init_fail.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"init_zero_threads","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/init_zero_threads.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"scope_join","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scope_join.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"simple_panic","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/simple_panic.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"scoped_threadpool","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scoped_threadpool.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/rayon-core-1.9.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/Cargo.toml","metadata":null,"publish":null,"authors":["Niko Matsakis ","Josh Stone "],"categories":["concurrency"],"keywords":["parallel","thread","concurrency","join","performance"],"readme":"README.md","repository":"https://github.com/rayon-rs/rayon","homepage":null,"documentation":"https://docs.rs/rayon/","edition":"2018","links":"rayon-core","default_run":null,"rust_version":null},{"name":"regalloc2","version":"0.4.1","id":"regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Backtracking register allocator inspired from IonMonkey","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"fxhash","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libfuzzer-sys","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":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.136","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"slice-group-by","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":"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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"regalloc2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regalloc2-0.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"checker":[],"default":[],"enable-serde":["serde"],"fuzzing":["libfuzzer-sys","checker","trace-log"],"libfuzzer-sys":["dep:libfuzzer-sys"],"serde":["dep:serde"],"trace-log":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/regalloc2-0.4.1/Cargo.toml","metadata":null,"publish":null,"authors":["Chris Fallin ","Mozilla SpiderMonkey Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/regalloc2","homepage":null,"documentation":null,"edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"rustc-demangle","version":"0.1.21","id":"rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Rust compiler symbol demangling.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustc-demangle","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.21/src/lib.rs","edition":"2015","doc":true,"doctest":true,"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/rustc-demangle-0.1.21/Cargo.toml","metadata":null,"publish":null,"authors":["Alex Crichton "],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/alexcrichton/rustc-demangle","homepage":"https://github.com/alexcrichton/rustc-demangle","documentation":"https://docs.rs/rustc-demangle","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"rustix","version":"0.35.12","id":"rustix 0.35.12 (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":"Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rustc-std-workspace-alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"alloc","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"bitflags","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"compiler_builtins","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.49","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustc-std-workspace-core","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.0","kind":null,"rename":"core","optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"io-lifetimes","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":"itoa","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.1","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"io-lifetimes","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7.0","kind":"dev","rename":null,"optional":false,"uses_default_features":false,"features":["close"],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.133","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"errno","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":"dev","rename":"libc_errno","optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"memoffset","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.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.6","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.2.0","kind":"dev","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.68","kind":"build","rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"linux-raw-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.46","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["general","no_std"],"target":"cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.133","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["extra_traits"],"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))","registry":null},{"name":"errno","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":null,"rename":"libc_errno","optional":true,"uses_default_features":false,"features":[],"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))","registry":null},{"name":"linux-raw-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.0.46","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["general","errno","ioctl","no_std"],"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))","registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.133","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["extra_traits"],"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))","registry":null},{"name":"errno","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.8","kind":null,"rename":"libc_errno","optional":false,"uses_default_features":false,"features":[],"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))","registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.5.2","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":"cfg(any(target_os = \"android\", target_os = \"linux\"))","registry":null},{"name":"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":"cfg(not(target_os = \"emscripten\"))","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_Foundation","Win32_Networking_WinSock","Win32_NetworkManagement_IpHelper","Win32_System_Threading"],"target":"cfg(windows)","registry":null},{"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":"cfg(windows)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.35.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"mod","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.35.12/benches/mod.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/rustix-0.35.12/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"all-apis":["fs","io_uring","mm","net","param","process","procfs","rand","runtime","termios","thread","time"],"all-impls":["async-std","tokio","os_pipe","socket2","mio","fs-err"],"alloc":["dep:alloc"],"async-std":["io-lifetimes/async-std"],"cc":["dep:cc"],"compiler_builtins":["dep:compiler_builtins"],"core":["dep:core"],"default":["std","use-libc-auxv"],"fs":[],"fs-err":["io-lifetimes/fs-err"],"io-lifetimes":["dep:io-lifetimes"],"io_uring":["fs","net"],"itoa":["dep:itoa"],"libc":["dep:libc"],"libc_errno":["dep:libc_errno"],"mio":["io-lifetimes/mio"],"mm":[],"net":[],"once_cell":["dep:once_cell"],"os_pipe":["io-lifetimes/os_pipe"],"param":[],"process":[],"procfs":["once_cell","itoa"],"rand":[],"runtime":[],"rustc-dep-of-std":["core","alloc","compiler_builtins","linux-raw-sys/rustc-dep-of-std","bitflags/rustc-dep-of-std"],"socket2":["io-lifetimes/socket2"],"std":["io-lifetimes"],"termios":[],"thread":[],"time":[],"tokio":["io-lifetimes/tokio"],"use-libc":["libc_errno","libc"],"use-libc-auxv":["libc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.35.12/Cargo.toml","metadata":{"docs":{"rs":{"features":["all-apis"],"rustdoc-args":["--cfg","doc_cfg"],"targets":["x86_64-unknown-linux-gnu","i686-unknown-linux-gnu","x86_64-apple-darwin","x86_64-pc-windows-msvc"]}}},"publish":null,"authors":["Dan Gohman ","Jakub Konka "],"categories":["os::unix-apis","date-and-time","filesystem","network-programming"],"keywords":["api","file","network","safe","syscall"],"readme":"README.md","repository":"https://github.com/bytecodealliance/rustix","homepage":null,"documentation":"https://docs.rs/rustix","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"scopeguard","version":"1.1.0","id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs","edition":"2015","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":"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":"sha2","version":"0.9.9","id":"sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"block-buffer","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"digest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"opaque-debug","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":"sha2-asm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"digest","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.9","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["dev"],"target":null,"registry":null},{"name":"hex-literal","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cpufeatures","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"sha512sum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/examples/sha512sum.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"sha256sum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/examples/sha256sum.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["test"],"crate_types":["bin"],"name":"lib","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/tests/lib.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["bench"],"crate_types":["bin"],"name":"sha256","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/benches/sha256.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"sha512","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/benches/sha512.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"asm":["sha2-asm"],"asm-aarch64":["asm"],"compress":[],"default":["std"],"force-soft":[],"sha2-asm":["dep:sha2-asm"],"std":["digest/std"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.9.9/Cargo.toml","metadata":{"docs":{"rs":{"all-features":true,"rustdoc-args":["--cfg","docsrs"]}}},"publish":null,"authors":["RustCrypto Developers"],"categories":["cryptography","no-std"],"keywords":["crypto","sha2","hash","digest"],"readme":"README.md","repository":"https://github.com/RustCrypto/hashes","homepage":null,"documentation":"https://docs.rs/sha2","edition":"2018","links":null,"default_run":null,"rust_version":null},{"name":"slice-group-by","version":"0.3.0","id":"slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT","license_file":null,"description":"Iterators over groups in a slice","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"rand","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.6.5","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"slice-group-by","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slice-group-by-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"default":["std"],"nightly":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/slice-group-by-0.3.0/Cargo.toml","metadata":null,"publish":null,"authors":["Kerollmops "],"categories":["algorithms"],"keywords":["slice","group"],"readme":"README.md","repository":"https://github.com/Kerollmops/slice-group-by","homepage":null,"documentation":"https://docs.rs/slice-group-by","edition":"2018","links":null,"default_run":null,"rust_version":null},{"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":"stable_deref_trait","version":"1.2.0","id":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{"alloc":[],"default":["std"],"std":["alloc"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/Cargo.toml","metadata":null,"publish":null,"authors":["Robert Grosse "],"categories":["memory-management","no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/storyyeller/stable_deref_trait","homepage":null,"documentation":"https://docs.rs/stable_deref_trait/1.2.0/stable_deref_trait","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"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":"target-lexicon","version":"0.12.4","id":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Targeting utilities for compilers and related tools","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"target-lexicon","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"misc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/examples/misc.rs","edition":"2018","doc":false,"doctest":false,"test":false},{"kind":["example"],"crate_types":["bin"],"name":"host","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/examples/host.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/target-lexicon-0.12.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"default":[],"std":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/target-lexicon-0.12.4/Cargo.toml","metadata":null,"publish":null,"authors":["Dan Gohman "],"categories":["no-std"],"keywords":["target","host","triple","compiler","jit"],"readme":"README.md","repository":"https://github.com/bytecodealliance/target-lexicon","homepage":null,"documentation":"https://docs.rs/target-lexicon/","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":"typenum","version":"1.15.0","id":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT OR Apache-2.0","license_file":null,"description":"Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"scale-info","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/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/typenum-1.15.0/tests/test.rs","edition":"2018","doc":false,"doctest":false,"test":true},{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/build/main.rs","edition":"2018","doc":false,"doctest":false,"test":false}],"features":{"force_unix_path_separator":[],"i128":[],"no_std":[],"scale-info":["dep:scale-info"],"scale_info":["scale-info/derive"],"strict":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/Cargo.toml","metadata":null,"publish":null,"authors":["Paho Lurie-Gregg ","Andre Bogus "],"categories":["no-std"],"keywords":[],"readme":"README.md","repository":"https://github.com/paholg/typenum","homepage":null,"documentation":"https://docs.rs/typenum","edition":"2018","links":null,"default_run":null,"rust_version":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":"version_check","version":"0.9.4","id":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT/Apache-2.0","license_file":null,"description":"Tiny crate to check the version of the installed/running rustc.","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/Cargo.toml","metadata":null,"publish":null,"authors":["Sergio Benitez "],"categories":[],"keywords":["version","rustc","minimum","check"],"readme":"README.md","repository":"https://github.com/SergioBenitez/version_check","homepage":null,"documentation":"https://docs.rs/version_check/","edition":"2015","links":null,"default_run":null,"rust_version":null},{"name":"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":"wasmparser","version":"0.92.0","id":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"A simple event-driven library for parsing WebAssembly binary files.\n","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.8.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":"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":"getopts","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.13.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rayon","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmparser","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"simple","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/examples/simple.rs","edition":"2021","doc":false,"doctest":false,"test":false},{"kind":["bench"],"crate_types":["bin"],"name":"benchmark","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/benches/benchmark.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"deterministic":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmparser-0.92.0/Cargo.toml","metadata":null,"publish":null,"authors":["Yury Delendik "],"categories":[],"keywords":["parser","WebAssembly","wasm"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser","homepage":"https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser","documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime","version":"2.0.0","id":"wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"High-level API to expose the Wasmtime runtime","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.22","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.51","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.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"encoding_rs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.31","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.6","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"libc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std"],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"paste","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"psm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.11","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rayon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.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.94","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-cache","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":"wasmtime-component-macro","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":"wasmtime-component-util","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":"wasmtime-cranelift","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":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-fiber","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":"wasmtime-jit","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-runtime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wat","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.49","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.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_System_Diagnostics_Debug"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-2.0.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/wasmtime-2.0.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"all-arch":["wasmtime-cranelift?/all-arch"],"async":["dep:wasmtime-fiber","wasmtime-runtime/async","dep:async-trait"],"cache":["dep:wasmtime-cache"],"component-model":["wasmtime-environ/component-model","wasmtime-cranelift?/component-model","wasmtime-runtime/component-model","dep:wasmtime-component-macro","dep:wasmtime-component-util","dep:encoding_rs"],"cranelift":["dep:wasmtime-cranelift"],"default":["async","cache","wat","jitdump","parallel-compilation","cranelift","pooling-allocator","memory-init-cow","vtune"],"incremental-cache":["wasmtime-cranelift?/incremental-cache"],"jitdump":["wasmtime-jit/jitdump"],"memory-init-cow":["wasmtime-runtime/memory-init-cow"],"parallel-compilation":["dep:rayon"],"pooling-allocator":["wasmtime-runtime/pooling-allocator"],"posix-signals-on-macos":["wasmtime-runtime/posix-signals-on-macos"],"vtune":["wasmtime-jit/vtune"],"wat":["dep:wat"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-2.0.0/Cargo.toml","metadata":{"docs":{"rs":{"rustdoc-args":["--cfg","nightlydoc"]}}},"publish":null,"authors":["The Wasmtime Project Developers"],"categories":[],"keywords":[],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-asm-macros","version":"2.0.0","id":"wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Macros for defining asm functions in Wasmtime","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}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-asm-macros","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-asm-macros-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-asm-macros-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-cranelift","version":"2.0.0","id":"wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Integration between Cranelift and Wasmtime","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.22","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-codegen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-frontend","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-native","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-wasm","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read","std"],"target":null,"registry":null},{"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":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std","write"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-cranelift","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-cranelift-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"all-arch":["cranelift-codegen/all-arch"],"component-model":["wasmtime-environ/component-model"],"incremental-cache":["cranelift-codegen/incremental-cache"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-cranelift-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-cranelift/","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-environ","version":"2.0.0","id":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Standalone environment support for WebAsssembly code in Cranelift","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.22","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read","std"],"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":false,"uses_default_features":true,"features":["serde-1"],"target":null,"registry":null},{"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":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std","write_core"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-encoder","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.18.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmprinter","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.41","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-component-util","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":"wasmtime-types","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"atty","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2.14","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"clap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^3.2.0","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":["color","suggestions","derive"],"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":true,"features":[],"target":null,"registry":null},{"name":"wat","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":"wasmtime-environ","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-environ-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["example"],"crate_types":["bin"],"name":"factc","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-environ-2.0.0/examples/factc.rs","edition":"2021","required-features":["component-model"],"doc":false,"doctest":false,"test":false}],"features":{"component-model":["dep:wasm-encoder","dep:wasmprinter","dep:wasmtime-component-util"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-environ-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-environ/","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-jit","version":"2.0.0","id":"wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"JIT-style execution for WebAsssembly code in Cranelift","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"addr2line","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.17.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"anyhow","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.22","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.2.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cpp_demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"gimli","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.26.0","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read","std"],"target":null,"registry":null},{"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":false,"features":[],"target":null,"registry":null},{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":["read_core","elf","std"],"target":null,"registry":null},{"name":"rustc-demangle","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.16","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["derive"],"target":null,"registry":null},{"name":"target-lexicon","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.12.3","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-jit-debug","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":["perf_jitdump"],"target":null,"registry":null},{"name":"wasmtime-runtime","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"ittapi","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(target_arch = \"x86_64\")","registry":null},{"name":"rustix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.35.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["process"],"target":"cfg(target_os = \"linux\")","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_System_Diagnostics_Debug"],"target":"cfg(target_os = \"windows\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-jit","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"ittapi":["dep:ittapi"],"jitdump":["wasmtime-jit-debug"],"vtune":["ittapi"],"wasmtime-jit-debug":["dep:wasmtime-jit-debug"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-jit","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-jit-debug","version":"2.0.0","id":"wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"JIT debug interfaces support for Wasmtime","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"object","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.29","kind":null,"rename":null,"optional":true,"uses_default_features":false,"features":["read_core","elf","std"],"target":null,"registry":null},{"name":"once_cell","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.12.0","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"rustix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.35.10","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":["mm","param","time"],"target":"cfg(target_os = \"linux\")","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-jit-debug","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-debug-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{"gdb_jit_int":["once_cell"],"object":["dep:object"],"once_cell":["dep:once_cell"],"perf_jitdump":["rustix","object"],"rustix":["dep:rustix"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-jit-debug-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["development-tools::debugging"],"keywords":["gdb","jit"],"readme":"README.md","repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-runtime","version":"2.0.0","id":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"Runtime library support for Wasmtime","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.22","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"cfg-if","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"encoding_rs","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.8.31","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"indexmap","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.2","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.112","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.8","kind":null,"rename":null,"optional":false,"uses_default_features":false,"features":[],"target":null,"registry":null},{"name":"memfd","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":"memoffset","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":"paste","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"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":"thiserror","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":"wasmtime-asm-macros","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-environ","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmtime-fiber","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":"wasmtime-jit-debug","source":"registry+https://github.com/rust-lang/crates.io-index","req":"=2.0.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["gdb_jit_int"],"target":null,"registry":null},{"name":"cc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0","kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"mach","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"cfg(target_os = \"macos\")","registry":null},{"name":"windows-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["Win32_System_Kernel","Win32_System_Memory","Win32_System_Diagnostics_Debug","Win32_System_SystemInformation","Win32_Storage_FileSystem","Win32_Security"],"target":"cfg(target_os = \"windows\")","registry":null},{"name":"rustix","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.35.10","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["mm"],"target":"cfg(unix)","registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-runtime","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-runtime-2.0.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/wasmtime-runtime-2.0.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false}],"features":{"async":["wasmtime-fiber"],"component-model":["wasmtime-environ/component-model","dep:encoding_rs"],"memfd":["dep:memfd"],"memory-init-cow":["memfd"],"pooling-allocator":[],"posix-signals-on-macos":[],"wasmtime-fiber":["dep:wasmtime-fiber"]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-runtime-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":["wasm"],"keywords":["webassembly","wasm"],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-runtime","edition":"2021","links":null,"default_run":null,"rust_version":null},{"name":"wasmtime-types","version":"2.0.0","id":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","license":"Apache-2.0 WITH LLVM-exception","license_file":null,"description":"WebAssembly type definitions for Cranelift","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"cranelift-entity","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.89.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":["enable-serde"],"target":null,"registry":null},{"name":"serde","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^1.0.94","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.4","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasmparser","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.92.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["lib"],"crate_types":["lib"],"name":"wasmtime-types","src_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-types-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true}],"features":{},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/wasmtime-types-2.0.0/Cargo.toml","metadata":null,"publish":null,"authors":["The Wasmtime Project Developers"],"categories":[],"keywords":[],"readme":null,"repository":"https://github.com/bytecodealliance/wasmtime","homepage":null,"documentation":"https://docs.rs/wasmtime-types","edition":"2021","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-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.36.1","id":"windows-sys 0.36.1 (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_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-pc-windows-msvc","registry":null},{"name":"windows_aarch64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"aarch64-uwp-windows-msvc","registry":null},{"name":"windows_i686_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-pc-windows-gnu","registry":null},{"name":"windows_i686_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-pc-windows-msvc","registry":null},{"name":"windows_i686_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-uwp-windows-gnu","registry":null},{"name":"windows_i686_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"i686-uwp-windows-msvc","registry":null},{"name":"windows_x86_64_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-gnu","registry":null},{"name":"windows_x86_64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-pc-windows-msvc","registry":null},{"name":"windows_x86_64_gnu","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"x86_64-uwp-windows-gnu","registry":null},{"name":"windows_x86_64_msvc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.36.1","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":"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.36.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true}],"features":{"AI":[],"AI_MachineLearning":["AI"],"AI_MachineLearning_Preview":["AI_MachineLearning"],"ApplicationModel":[],"ApplicationModel_Activation":["ApplicationModel"],"ApplicationModel_AppExtensions":["ApplicationModel"],"ApplicationModel_AppService":["ApplicationModel"],"ApplicationModel_Appointments":["ApplicationModel"],"ApplicationModel_Appointments_AppointmentsProvider":["ApplicationModel_Appointments"],"ApplicationModel_Appointments_DataProvider":["ApplicationModel_Appointments"],"ApplicationModel_Background":["ApplicationModel"],"ApplicationModel_Calls":["ApplicationModel"],"ApplicationModel_Calls_Background":["ApplicationModel_Calls"],"ApplicationModel_Calls_Provider":["ApplicationModel_Calls"],"ApplicationModel_Chat":["ApplicationModel"],"ApplicationModel_CommunicationBlocking":["ApplicationModel"],"ApplicationModel_Contacts":["ApplicationModel"],"ApplicationModel_Contacts_DataProvider":["ApplicationModel_Contacts"],"ApplicationModel_Contacts_Provider":["ApplicationModel_Contacts"],"ApplicationModel_ConversationalAgent":["ApplicationModel"],"ApplicationModel_Core":["ApplicationModel"],"ApplicationModel_DataTransfer":["ApplicationModel"],"ApplicationModel_DataTransfer_DragDrop":["ApplicationModel_DataTransfer"],"ApplicationModel_DataTransfer_DragDrop_Core":["ApplicationModel_DataTransfer_DragDrop"],"ApplicationModel_DataTransfer_ShareTarget":["ApplicationModel_DataTransfer"],"ApplicationModel_Email":["ApplicationModel"],"ApplicationModel_Email_DataProvider":["ApplicationModel_Email"],"ApplicationModel_ExtendedExecution":["ApplicationModel"],"ApplicationModel_ExtendedExecution_Foreground":["ApplicationModel_ExtendedExecution"],"ApplicationModel_Holographic":["ApplicationModel"],"ApplicationModel_LockScreen":["ApplicationModel"],"ApplicationModel_Payments":["ApplicationModel"],"ApplicationModel_Payments_Provider":["ApplicationModel_Payments"],"ApplicationModel_Preview":["ApplicationModel"],"ApplicationModel_Preview_Holographic":["ApplicationModel_Preview"],"ApplicationModel_Preview_InkWorkspace":["ApplicationModel_Preview"],"ApplicationModel_Preview_Notes":["ApplicationModel_Preview"],"ApplicationModel_Resources":["ApplicationModel"],"ApplicationModel_Resources_Core":["ApplicationModel_Resources"],"ApplicationModel_Resources_Management":["ApplicationModel_Resources"],"ApplicationModel_Search":["ApplicationModel"],"ApplicationModel_Search_Core":["ApplicationModel_Search"],"ApplicationModel_SocialInfo":["ApplicationModel"],"ApplicationModel_SocialInfo_Provider":["ApplicationModel_SocialInfo"],"ApplicationModel_Store":["ApplicationModel"],"ApplicationModel_Store_LicenseManagement":["ApplicationModel_Store"],"ApplicationModel_Store_Preview":["ApplicationModel_Store"],"ApplicationModel_Store_Preview_InstallControl":["ApplicationModel_Store_Preview"],"ApplicationModel_UserActivities":["ApplicationModel"],"ApplicationModel_UserActivities_Core":["ApplicationModel_UserActivities"],"ApplicationModel_UserDataAccounts":["ApplicationModel"],"ApplicationModel_UserDataAccounts_Provider":["ApplicationModel_UserDataAccounts"],"ApplicationModel_UserDataAccounts_SystemAccess":["ApplicationModel_UserDataAccounts"],"ApplicationModel_UserDataTasks":["ApplicationModel"],"ApplicationModel_UserDataTasks_DataProvider":["ApplicationModel_UserDataTasks"],"ApplicationModel_VoiceCommands":["ApplicationModel"],"ApplicationModel_Wallet":["ApplicationModel"],"ApplicationModel_Wallet_System":["ApplicationModel_Wallet"],"Data":[],"Data_Html":["Data"],"Data_Json":["Data"],"Data_Pdf":["Data"],"Data_Text":["Data"],"Data_Xml":["Data"],"Data_Xml_Dom":["Data_Xml"],"Data_Xml_Xsl":["Data_Xml"],"Devices":[],"Devices_Adc":["Devices"],"Devices_Adc_Provider":["Devices_Adc"],"Devices_AllJoyn":["Devices"],"Devices_Background":["Devices"],"Devices_Bluetooth":["Devices"],"Devices_Bluetooth_Advertisement":["Devices_Bluetooth"],"Devices_Bluetooth_Background":["Devices_Bluetooth"],"Devices_Bluetooth_GenericAttributeProfile":["Devices_Bluetooth"],"Devices_Bluetooth_Rfcomm":["Devices_Bluetooth"],"Devices_Custom":["Devices"],"Devices_Display":["Devices"],"Devices_Display_Core":["Devices_Display"],"Devices_Enumeration":["Devices"],"Devices_Enumeration_Pnp":["Devices_Enumeration"],"Devices_Geolocation":["Devices"],"Devices_Geolocation_Geofencing":["Devices_Geolocation"],"Devices_Gpio":["Devices"],"Devices_Gpio_Provider":["Devices_Gpio"],"Devices_Haptics":["Devices"],"Devices_HumanInterfaceDevice":["Devices"],"Devices_I2c":["Devices"],"Devices_I2c_Provider":["Devices_I2c"],"Devices_Input":["Devices"],"Devices_Input_Preview":["Devices_Input"],"Devices_Lights":["Devices"],"Devices_Lights_Effects":["Devices_Lights"],"Devices_Midi":["Devices"],"Devices_Perception":["Devices"],"Devices_Perception_Provider":["Devices_Perception"],"Devices_PointOfService":["Devices"],"Devices_PointOfService_Provider":["Devices_PointOfService"],"Devices_Portable":["Devices"],"Devices_Power":["Devices"],"Devices_Printers":["Devices"],"Devices_Printers_Extensions":["Devices_Printers"],"Devices_Pwm":["Devices"],"Devices_Pwm_Provider":["Devices_Pwm"],"Devices_Radios":["Devices"],"Devices_Scanners":["Devices"],"Devices_Sensors":["Devices"],"Devices_Sensors_Custom":["Devices_Sensors"],"Devices_SerialCommunication":["Devices"],"Devices_SmartCards":["Devices"],"Devices_Sms":["Devices"],"Devices_Spi":["Devices"],"Devices_Spi_Provider":["Devices_Spi"],"Devices_Usb":["Devices"],"Devices_WiFi":["Devices"],"Devices_WiFiDirect":["Devices"],"Devices_WiFiDirect_Services":["Devices_WiFiDirect"],"Embedded":[],"Embedded_DeviceLockdown":["Embedded"],"Foundation":[],"Foundation_Collections":["Foundation"],"Foundation_Diagnostics":["Foundation"],"Foundation_Metadata":["Foundation"],"Foundation_Numerics":["Foundation"],"Gaming":[],"Gaming_Input":["Gaming"],"Gaming_Input_Custom":["Gaming_Input"],"Gaming_Input_ForceFeedback":["Gaming_Input"],"Gaming_Input_Preview":["Gaming_Input"],"Gaming_Preview":["Gaming"],"Gaming_Preview_GamesEnumeration":["Gaming_Preview"],"Gaming_UI":["Gaming"],"Gaming_XboxLive":["Gaming"],"Gaming_XboxLive_Storage":["Gaming_XboxLive"],"Globalization":[],"Globalization_Collation":["Globalization"],"Globalization_DateTimeFormatting":["Globalization"],"Globalization_Fonts":["Globalization"],"Globalization_NumberFormatting":["Globalization"],"Globalization_PhoneNumberFormatting":["Globalization"],"Graphics":[],"Graphics_Capture":["Graphics"],"Graphics_DirectX":["Graphics"],"Graphics_DirectX_Direct3D11":["Graphics_DirectX"],"Graphics_Display":["Graphics"],"Graphics_Display_Core":["Graphics_Display"],"Graphics_Effects":["Graphics"],"Graphics_Holographic":["Graphics"],"Graphics_Imaging":["Graphics"],"Graphics_Printing":["Graphics"],"Graphics_Printing3D":["Graphics"],"Graphics_Printing_OptionDetails":["Graphics_Printing"],"Graphics_Printing_PrintSupport":["Graphics_Printing"],"Graphics_Printing_PrintTicket":["Graphics_Printing"],"Graphics_Printing_Workflow":["Graphics_Printing"],"Management":[],"Management_Core":["Management"],"Management_Deployment":["Management"],"Management_Deployment_Preview":["Management_Deployment"],"Management_Policies":["Management"],"Management_Update":["Management"],"Management_Workplace":["Management"],"Media":[],"Media_AppBroadcasting":["Media"],"Media_AppRecording":["Media"],"Media_Audio":["Media"],"Media_Capture":["Media"],"Media_Capture_Core":["Media_Capture"],"Media_Capture_Frames":["Media_Capture"],"Media_Casting":["Media"],"Media_ClosedCaptioning":["Media"],"Media_ContentRestrictions":["Media"],"Media_Control":["Media"],"Media_Core":["Media"],"Media_Core_Preview":["Media_Core"],"Media_Devices":["Media"],"Media_Devices_Core":["Media_Devices"],"Media_DialProtocol":["Media"],"Media_Editing":["Media"],"Media_Effects":["Media"],"Media_FaceAnalysis":["Media"],"Media_Import":["Media"],"Media_MediaProperties":["Media"],"Media_Miracast":["Media"],"Media_Ocr":["Media"],"Media_PlayTo":["Media"],"Media_Playback":["Media"],"Media_Playlists":["Media"],"Media_Protection":["Media"],"Media_Protection_PlayReady":["Media_Protection"],"Media_Render":["Media"],"Media_SpeechRecognition":["Media"],"Media_SpeechSynthesis":["Media"],"Media_Streaming":["Media"],"Media_Streaming_Adaptive":["Media_Streaming"],"Media_Transcoding":["Media"],"Networking":[],"Networking_BackgroundTransfer":["Networking"],"Networking_Connectivity":["Networking"],"Networking_NetworkOperators":["Networking"],"Networking_Proximity":["Networking"],"Networking_PushNotifications":["Networking"],"Networking_ServiceDiscovery":["Networking"],"Networking_ServiceDiscovery_Dnssd":["Networking_ServiceDiscovery"],"Networking_Sockets":["Networking"],"Networking_Vpn":["Networking"],"Networking_XboxLive":["Networking"],"Perception":[],"Perception_Automation":["Perception"],"Perception_Automation_Core":["Perception_Automation"],"Perception_People":["Perception"],"Perception_Spatial":["Perception"],"Perception_Spatial_Preview":["Perception_Spatial"],"Perception_Spatial_Surfaces":["Perception_Spatial"],"Phone":[],"Phone_ApplicationModel":["Phone"],"Phone_Devices":["Phone"],"Phone_Devices_Notification":["Phone_Devices"],"Phone_Devices_Power":["Phone_Devices"],"Phone_Management":["Phone"],"Phone_Management_Deployment":["Phone_Management"],"Phone_Media":["Phone"],"Phone_Media_Devices":["Phone_Media"],"Phone_Notification":["Phone"],"Phone_Notification_Management":["Phone_Notification"],"Phone_PersonalInformation":["Phone"],"Phone_PersonalInformation_Provisioning":["Phone_PersonalInformation"],"Phone_Speech":["Phone"],"Phone_Speech_Recognition":["Phone_Speech"],"Phone_StartScreen":["Phone"],"Phone_System":["Phone"],"Phone_System_Power":["Phone_System"],"Phone_System_Profile":["Phone_System"],"Phone_System_UserProfile":["Phone_System"],"Phone_System_UserProfile_GameServices":["Phone_System_UserProfile"],"Phone_System_UserProfile_GameServices_Core":["Phone_System_UserProfile_GameServices"],"Phone_UI":["Phone"],"Phone_UI_Input":["Phone_UI"],"Security":[],"Security_Authentication":["Security"],"Security_Authentication_Identity":["Security_Authentication"],"Security_Authentication_Identity_Core":["Security_Authentication_Identity"],"Security_Authentication_Identity_Provider":["Security_Authentication_Identity"],"Security_Authentication_OnlineId":["Security_Authentication"],"Security_Authentication_Web":["Security_Authentication"],"Security_Authentication_Web_Core":["Security_Authentication_Web"],"Security_Authentication_Web_Provider":["Security_Authentication_Web"],"Security_Authorization":["Security"],"Security_Authorization_AppCapabilityAccess":["Security_Authorization"],"Security_Credentials":["Security"],"Security_Credentials_UI":["Security_Credentials"],"Security_Cryptography":["Security"],"Security_Cryptography_Certificates":["Security_Cryptography"],"Security_Cryptography_Core":["Security_Cryptography"],"Security_Cryptography_DataProtection":["Security_Cryptography"],"Security_DataProtection":["Security"],"Security_EnterpriseData":["Security"],"Security_ExchangeActiveSyncProvisioning":["Security"],"Security_Isolation":["Security"],"Services":[],"Services_Cortana":["Services"],"Services_Maps":["Services"],"Services_Maps_Guidance":["Services_Maps"],"Services_Maps_LocalSearch":["Services_Maps"],"Services_Maps_OfflineMaps":["Services_Maps"],"Services_Store":["Services"],"Services_TargetedContent":["Services"],"Storage":[],"Storage_AccessCache":["Storage"],"Storage_BulkAccess":["Storage"],"Storage_Compression":["Storage"],"Storage_FileProperties":["Storage"],"Storage_Pickers":["Storage"],"Storage_Pickers_Provider":["Storage_Pickers"],"Storage_Provider":["Storage"],"Storage_Search":["Storage"],"Storage_Streams":["Storage"],"System":[],"System_Diagnostics":["System"],"System_Diagnostics_DevicePortal":["System_Diagnostics"],"System_Diagnostics_Telemetry":["System_Diagnostics"],"System_Diagnostics_TraceReporting":["System_Diagnostics"],"System_Display":["System"],"System_Implementation":["System"],"System_Implementation_FileExplorer":["System_Implementation"],"System_Inventory":["System"],"System_Power":["System"],"System_Power_Diagnostics":["System_Power"],"System_Preview":["System"],"System_Profile":["System"],"System_Profile_SystemManufacturers":["System_Profile"],"System_RemoteDesktop":["System"],"System_RemoteDesktop_Input":["System_RemoteDesktop"],"System_RemoteSystems":["System"],"System_Threading":["System"],"System_Threading_Core":["System_Threading"],"System_Update":["System"],"System_UserProfile":["System"],"UI":[],"UI_Accessibility":["UI"],"UI_ApplicationSettings":["UI"],"UI_Composition":["UI"],"UI_Composition_Core":["UI_Composition"],"UI_Composition_Desktop":["UI_Composition"],"UI_Composition_Diagnostics":["UI_Composition"],"UI_Composition_Effects":["UI_Composition"],"UI_Composition_Interactions":["UI_Composition"],"UI_Composition_Scenes":["UI_Composition"],"UI_Core":["UI"],"UI_Core_AnimationMetrics":["UI_Core"],"UI_Core_Preview":["UI_Core"],"UI_Input":["UI"],"UI_Input_Core":["UI_Input"],"UI_Input_Inking":["UI_Input"],"UI_Input_Inking_Analysis":["UI_Input_Inking"],"UI_Input_Inking_Core":["UI_Input_Inking"],"UI_Input_Inking_Preview":["UI_Input_Inking"],"UI_Input_Preview":["UI_Input"],"UI_Input_Preview_Injection":["UI_Input_Preview"],"UI_Input_Spatial":["UI_Input"],"UI_Notifications":["UI"],"UI_Notifications_Management":["UI_Notifications"],"UI_Popups":["UI"],"UI_Shell":["UI"],"UI_StartScreen":["UI"],"UI_Text":["UI"],"UI_Text_Core":["UI_Text"],"UI_UIAutomation":["UI"],"UI_UIAutomation_Core":["UI_UIAutomation"],"UI_ViewManagement":["UI"],"UI_ViewManagement_Core":["UI_ViewManagement"],"UI_WebUI":["UI"],"UI_WebUI_Core":["UI_WebUI"],"UI_WindowManagement":["UI"],"UI_WindowManagement_Preview":["UI_WindowManagement"],"UI_Xaml":["UI"],"UI_Xaml_Automation":["UI_Xaml"],"UI_Xaml_Automation_Peers":["UI_Xaml_Automation"],"UI_Xaml_Automation_Provider":["UI_Xaml_Automation"],"UI_Xaml_Automation_Text":["UI_Xaml_Automation"],"UI_Xaml_Controls":["UI_Xaml"],"UI_Xaml_Controls_Maps":["UI_Xaml_Controls"],"UI_Xaml_Controls_Primitives":["UI_Xaml_Controls"],"UI_Xaml_Core":["UI_Xaml"],"UI_Xaml_Core_Direct":["UI_Xaml_Core"],"UI_Xaml_Data":["UI_Xaml"],"UI_Xaml_Documents":["UI_Xaml"],"UI_Xaml_Hosting":["UI_Xaml"],"UI_Xaml_Input":["UI_Xaml"],"UI_Xaml_Interop":["UI_Xaml"],"UI_Xaml_Markup":["UI_Xaml"],"UI_Xaml_Media":["UI_Xaml"],"UI_Xaml_Media_Animation":["UI_Xaml_Media"],"UI_Xaml_Media_Imaging":["UI_Xaml_Media"],"UI_Xaml_Media_Media3D":["UI_Xaml_Media"],"UI_Xaml_Navigation":["UI_Xaml"],"UI_Xaml_Printing":["UI_Xaml"],"UI_Xaml_Resources":["UI_Xaml"],"UI_Xaml_Shapes":["UI_Xaml"],"Web":[],"Web_AtomPub":["Web"],"Web_Http":["Web"],"Web_Http_Diagnostics":["Web_Http"],"Web_Http_Filters":["Web_Http"],"Web_Http_Headers":["Web_Http"],"Web_Syndication":["Web"],"Web_UI":["Web"],"Web_UI_Interop":["Web_UI"],"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_Debug_WebApp":["Win32_System_Diagnostics_Debug"],"Win32_System_Diagnostics_Etw":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_ProcessSnapshotting":["Win32_System_Diagnostics"],"Win32_System_Diagnostics_ToolHelp":["Win32_System_Diagnostics"],"Win32_System_DistributedTransactionCoordinator":["Win32_System"],"Win32_System_Environment":["Win32_System"],"Win32_System_ErrorReporting":["Win32_System"],"Win32_System_EventCollector":["Win32_System"],"Win32_System_EventLog":["Win32_System"],"Win32_System_EventNotificationService":["Win32_System"],"Win32_System_GroupPolicy":["Win32_System"],"Win32_System_HostCompute":["Win32_System"],"Win32_System_HostComputeNetwork":["Win32_System"],"Win32_System_HostComputeSystem":["Win32_System"],"Win32_System_Hypervisor":["Win32_System"],"Win32_System_IO":["Win32_System"],"Win32_System_Iis":["Win32_System"],"Win32_System_Ioctl":["Win32_System"],"Win32_System_JobObjects":["Win32_System"],"Win32_System_Js":["Win32_System"],"Win32_System_Kernel":["Win32_System"],"Win32_System_LibraryLoader":["Win32_System"],"Win32_System_Mailslots":["Win32_System"],"Win32_System_Mapi":["Win32_System"],"Win32_System_Memory":["Win32_System"],"Win32_System_Memory_NonVolatile":["Win32_System_Memory"],"Win32_System_MessageQueuing":["Win32_System"],"Win32_System_MixedReality":["Win32_System"],"Win32_System_Mmc":["Win32_System"],"Win32_System_Ole":["Win32_System"],"Win32_System_ParentalControls":["Win32_System"],"Win32_System_PasswordManagement":["Win32_System"],"Win32_System_Performance":["Win32_System"],"Win32_System_Performance_HardwareCounterProfiling":["Win32_System_Performance"],"Win32_System_Pipes":["Win32_System"],"Win32_System_Power":["Win32_System"],"Win32_System_ProcessStatus":["Win32_System"],"Win32_System_RealTimeCommunications":["Win32_System"],"Win32_System_Recovery":["Win32_System"],"Win32_System_Registry":["Win32_System"],"Win32_System_RemoteAssistance":["Win32_System"],"Win32_System_RemoteDesktop":["Win32_System"],"Win32_System_RemoteManagement":["Win32_System"],"Win32_System_RestartManager":["Win32_System"],"Win32_System_Restore":["Win32_System"],"Win32_System_Rpc":["Win32_System"],"Win32_System_Search":["Win32_System"],"Win32_System_Search_Common":["Win32_System_Search"],"Win32_System_SecurityCenter":["Win32_System"],"Win32_System_ServerBackup":["Win32_System"],"Win32_System_Services":["Win32_System"],"Win32_System_SettingsManagementInfrastructure":["Win32_System"],"Win32_System_SetupAndMigration":["Win32_System"],"Win32_System_Shutdown":["Win32_System"],"Win32_System_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_WinRT_Xaml":["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"],"Win32_Web":["Win32"],"Win32_Web_MsHtml":["Win32_Web"],"default":[],"deprecated":[]},"manifest_path":"/home/jake/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.36.1/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.46"},{"name":"windows_aarch64_msvc","version":"0.36.1","id":"windows_aarch64_msvc 0.36.1 (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.36.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/windows_aarch64_msvc-0.36.1/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.36.1/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.36.1","id":"windows_i686_gnu 0.36.1 (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.36.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/windows_i686_gnu-0.36.1/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.36.1/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.36.1","id":"windows_i686_msvc 0.36.1 (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.36.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/windows_i686_msvc-0.36.1/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.36.1/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.36.1","id":"windows_x86_64_gnu 0.36.1 (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.36.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/windows_x86_64_gnu-0.36.1/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.36.1/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.36.1","id":"windows_x86_64_msvc 0.36.1 (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.36.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/windows_x86_64_msvc-0.36.1/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.36.1/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}],"workspace_members":["bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)"],"resolve":{"nodes":[{"id":"addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"gimli","pkg":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"getrandom","pkg":"getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))"}]},{"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(all(target_arch = \"arm\", target_os = \"none\")))"}]},{"name":"version_check","pkg":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"id":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"generic_array","pkg":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)","dependencies":["conv 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"conv","pkg":"conv 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime","pkg":"wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default"]},{"id":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"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":"conv 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["custom_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"custom_derive","pkg":"custom_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"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":"cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"aarch64-apple-darwin"},{"kind":null,"target":"aarch64-linux-android"},{"kind":null,"target":"cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))"}]}],"features":[]},{"id":"cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"arrayvec","pkg":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bincode","pkg":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bumpalo","pkg":"bumpalo 3.11.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_bforest","pkg":"cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_codegen_meta","pkg":"cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"cranelift_codegen_shared","pkg":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_isle","pkg":"cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"gimli","pkg":"gimli 0.26.2 (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":"regalloc2","pkg":"regalloc2 0.4.1 (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":"sha2","pkg":"sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["bincode","default","enable-serde","gimli","incremental-cache","serde","sha2","std","unwind"]},{"id":"cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen_shared","pkg":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["enable-serde","serde"]},{"id":"cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen","pkg":"cranelift-codegen 0.89.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":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"rayon","pkg":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"id":"cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen","pkg":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"s390x\")"}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_codegen","pkg":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_frontend","pkg":"cranelift-frontend 0.89.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":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_types","pkg":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"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":["std"]},{"id":"crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (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":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["crossbeam-utils","default","std"]},{"id":"crossbeam-deque 0.8.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)","crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (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":"crossbeam_epoch","pkg":"crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["crossbeam-epoch","crossbeam-utils","default","std"]},{"id":"crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","memoffset 0.6.5 (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":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"memoffset","pkg":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"scopeguard","pkg":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"crossbeam-utils 0.8.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":["default","std"]},{"id":"custom_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"generic_array","pkg":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["alloc","std"]},{"id":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["use_std"]},{"id":"errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"errno_dragonfly","pkg":"errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"dragonfly\")"}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"},{"kind":null,"target":"cfg(target_os = \"hermit\")"},{"kind":null,"target":"cfg(target_os = \"wasi\")"}]},{"name":"winapi","pkg":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":[]},{"id":"errno-dragonfly 0.1.2 (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.137 (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.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"byteorder","pkg":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"typenum","pkg":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"version_check","pkg":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]}],"features":[]},{"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.137 (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.137 (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":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"fallible_iterator","pkg":"fallible-iterator 0.2.0 (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":"stable_deref_trait","pkg":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["fallible-iterator","indexmap","read","read-core","stable_deref_trait","std","write"]},{"id":"hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"ahash","pkg":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["ahash","raw"]},{"id":"hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default"]},{"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)","serde 1.0.147 (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}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["serde","serde-1","std"]},{"id":"io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"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":"ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","ittapi-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (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":"ittapi_sys","pkg":"ittapi-sys 0.3.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}]}],"features":[]},{"id":"ittapi-sys 0.3.1 (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":[]},{"id":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","extra_traits","std"]},{"id":"linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["errno","general","ioctl","no_std"]},{"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":"mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_os = \"macos\", target_os = \"ios\"))"}]}],"features":["default"]},{"id":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["std"]},{"id":"memoffset 0.6.5 (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"]},{"id":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"hermit_abi","pkg":"hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))"}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(not(windows))"}]}],"features":[]},{"id":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","memchr 2.5.0 (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":"hashbrown","pkg":"hashbrown 0.12.3 (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":"memchr","pkg":"memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["coff","crc32fast","elf","hashbrown","indexmap","macho","pe","read_core","std","write","write_core","write_std"]},{"id":"once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","default","race","std"]},{"id":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"paste 1.0.9 (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":"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"]},{"id":"psm 0.1.21 (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":[]},{"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.137 (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.137 (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","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":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"autocfg","pkg":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"crossbeam_deque","pkg":"crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"either","pkg":"either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rayon_core","pkg":"rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"crossbeam_channel","pkg":"crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_deque","pkg":"crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"crossbeam_utils","pkg":"crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"num_cpus","pkg":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"fxhash","pkg":"fxhash 0.2.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":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"slice_group_by","pkg":"slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"smallvec","pkg":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["checker","default","enable-serde","serde"]},{"id":"rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (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":"libc_errno","pkg":"errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))"}]},{"name":"io_lifetimes","pkg":"io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))"},{"kind":null,"target":"cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))"}]},{"name":"linux_raw_sys","pkg":"linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))"},{"kind":null,"target":"cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))"}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(windows)"}]}],"features":["default","io-lifetimes","libc","mm","process","std","use-libc-auxv"]},{"id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"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":["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":"sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"block_buffer","pkg":"block-buffer 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cpufeatures","pkg":"cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))"}]},{"name":"digest","pkg":"digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"opaque_debug","pkg":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["default","std"]},{"id":"slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["serde","union"]},{"id":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["alloc","std"]},{"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","parsing","printing","proc-macro","quote"]},{"id":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"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":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":["default","std"]},{"id":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (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":"bincode","pkg":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (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":"object","pkg":"object 0.29.0 (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":"paste","pkg":"paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"psm","pkg":"psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rayon","pkg":"rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_cranelift","pkg":"wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_jit","pkg":"wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_runtime","pkg":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["cranelift","incremental-cache","parallel-compilation","vtune"]},{"id":"wasmtime-asm-macros 2.0.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)"],"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":"wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (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":"cranelift_codegen","pkg":"cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_frontend","pkg":"cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_native","pkg":"cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cranelift_wasm","pkg":"cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"gimli","pkg":"gimli 0.26.2 (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":"object","pkg":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (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":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":["incremental-cache"]},{"id":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-types 2.0.0 (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":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"gimli","pkg":"gimli 0.26.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}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"object","pkg":"object 0.29.0 (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":"target_lexicon","pkg":"target-lexicon 0.12.4 (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":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_types","pkg":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"addr2line","pkg":"addr2line 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"anyhow","pkg":"anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"bincode","pkg":"bincode 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"cpp_demangle","pkg":"cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"gimli","pkg":"gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"ittapi","pkg":"ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_arch = \"x86_64\")"}]},{"name":"log","pkg":"log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"object","pkg":"object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustc_demangle","pkg":"rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"rustix","pkg":"rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"linux\")"}]},{"name":"serde","pkg":"serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"target_lexicon","pkg":"target-lexicon 0.12.4 (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":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_runtime","pkg":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":["ittapi","vtune"]},{"id":"wasmtime-jit-debug 2.0.0 (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":["gdb_jit_int","once_cell"]},{"id":"wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["anyhow 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)","cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)","log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)","mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","windows-sys 0.36.1 (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":"cc","pkg":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":"build","target":null}]},{"name":"cfg_if","pkg":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"indexmap","pkg":"indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"libc","pkg":"libc 0.2.137 (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":"mach","pkg":"mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"macos\")"}]},{"name":"memoffset","pkg":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"paste","pkg":"paste 1.0.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":"rustix","pkg":"rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(unix)"}]},{"name":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_asm_macros","pkg":"wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_environ","pkg":"wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmtime_jit_debug","pkg":"wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"windows_sys","pkg":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"cfg(target_os = \"windows\")"}]}],"features":[]},{"id":"wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)","serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)","thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"cranelift_entity","pkg":"cranelift-entity 0.89.0 (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":"thiserror","pkg":"thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]},{"name":"wasmparser","pkg":"wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":null}]}],"features":[]},{"id":"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"winapi_i686_pc_windows_gnu","pkg":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"}]},{"name":"winapi_x86_64_pc_windows_gnu","pkg":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"}]}],"features":["errhandlingapi","minwindef","ntdef","winbase"]},{"id":"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":["windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)"],"deps":[{"name":"windows_aarch64_msvc","pkg":"windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"aarch64-pc-windows-msvc"},{"kind":null,"target":"aarch64-uwp-windows-msvc"}]},{"name":"windows_i686_gnu","pkg":"windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-gnu"},{"kind":null,"target":"i686-uwp-windows-gnu"}]},{"name":"windows_i686_msvc","pkg":"windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"i686-pc-windows-msvc"},{"kind":null,"target":"i686-uwp-windows-msvc"}]},{"name":"windows_x86_64_gnu","pkg":"windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-gnu"},{"kind":null,"target":"x86_64-uwp-windows-gnu"}]},{"name":"windows_x86_64_msvc","pkg":"windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dep_kinds":[{"kind":null,"target":"x86_64-pc-windows-msvc"},{"kind":null,"target":"x86_64-uwp-windows-msvc"}]}],"features":["Win32","Win32_Foundation","Win32_NetworkManagement","Win32_NetworkManagement_IpHelper","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_Kernel","Win32_System_Memory","Win32_System_SystemInformation","Win32_System_Threading","default"]},{"id":"windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]},{"id":"windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)","dependencies":[],"deps":[],"features":[]}],"root":"bug 0.1.0 (path+file:///home/jake/code/krates/tests/bug)"},"target_directory":"/home/jake/code/krates/tests/bug/target","version":1,"workspace_root":"/home/jake/code/krates/tests/bug","metadata":null} diff --git a/tests/bug/Cargo.toml b/tests/bug/Cargo.toml index 402bb7d..cba8d37 100644 --- a/tests/bug/Cargo.toml +++ b/tests/bug/Cargo.toml @@ -3,6 +3,9 @@ name = "bug" version = "0.1.0" edition = "2021" +[dependencies] +conv = "=0.3.3" + [dependencies.wasmtime] version = "2.0.0" default-features = false diff --git a/tests/misc.rs b/tests/misc.rs index 4b0b189..25a423d 100644 --- a/tests/misc.rs +++ b/tests/misc.rs @@ -191,6 +191,7 @@ fn direct_dependencies() { } #[test] +#[cfg(feature = "prefer-index")] fn bug_repro() { let kb = krates::Builder::new(); diff --git a/tests/snapshots/misc__bug_repro.snap b/tests/snapshots/misc__bug_repro.snap index bc91658..90a14e3 100644 --- a/tests/snapshots/misc__bug_repro.snap +++ b/tests/snapshots/misc__bug_repro.snap @@ -16,836 +16,846 @@ digraph { 10 [ label = "crate byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)" ] 11 [ label = "crate cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)" ] 12 [ label = "crate cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 13 [ label = "crate cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" ] - 14 [ label = "crate cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" ] - 15 [ label = "crate cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 16 [ label = "crate cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 17 [ label = "crate cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 18 [ label = "crate cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 19 [ label = "crate cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 20 [ label = "crate cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 21 [ label = "crate cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 22 [ label = "crate cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 23 [ label = "crate cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 24 [ label = "crate crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" ] - 25 [ label = "crate crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" ] - 26 [ label = "crate crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" ] - 27 [ label = "crate crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)" ] - 28 [ label = "crate crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)" ] - 29 [ label = "crate digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 30 [ label = "crate either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 31 [ label = "crate fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 32 [ label = "crate fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 33 [ label = "crate generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" ] - 34 [ label = "crate getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" ] - 35 [ label = "crate gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)" ] - 36 [ label = "crate hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" ] - 37 [ label = "crate hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" ] - 38 [ label = "crate indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 39 [ label = "crate io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" ] - 40 [ label = "crate itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" ] - 41 [ label = "crate ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 42 [ label = "crate ittapi-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 43 [ label = "crate libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)" ] - 44 [ label = "crate linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)" ] - 45 [ label = "crate log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" ] - 46 [ label = "crate mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" ] - 47 [ label = "crate memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 48 [ label = "crate memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" ] - 49 [ label = "crate num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 50 [ label = "crate object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 51 [ label = "crate once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 52 [ label = "crate opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 53 [ label = "crate paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" ] - 54 [ label = "crate ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" ] - 55 [ label = "crate proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" ] - 56 [ label = "crate psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" ] - 57 [ label = "crate quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" ] - 58 [ label = "crate rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" ] - 59 [ label = "crate rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 60 [ label = "crate rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" ] - 61 [ label = "crate rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" ] - 62 [ label = "crate rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" ] - 63 [ label = "crate regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 64 [ label = "crate rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" ] - 65 [ label = "crate rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)" ] - 66 [ label = "crate scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 67 [ label = "crate serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)" ] - 68 [ label = "crate serde_derive 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)" ] - 69 [ label = "crate sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)" ] - 70 [ label = "crate slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 71 [ label = "crate smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 72 [ label = "crate stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 73 [ label = "crate syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)" ] - 74 [ label = "crate target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" ] - 75 [ label = "crate thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" ] - 76 [ label = "crate thiserror-impl 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" ] - 77 [ label = "crate typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 78 [ label = "crate unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" ] - 79 [ label = "crate version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" ] - 80 [ label = "crate wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 81 [ label = "crate wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 82 [ label = "crate wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 83 [ label = "crate wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 84 [ label = "crate wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 85 [ label = "crate wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 86 [ label = "crate wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 87 [ label = "crate wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 88 [ label = "crate wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 89 [ label = "crate wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] - 90 [ label = "crate windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 91 [ label = "crate windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 92 [ label = "crate windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 93 [ label = "crate windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 94 [ label = "crate windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 95 [ label = "crate windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] - 96 [ label = "feature read" ] - 97 [ label = "feature alloc" ] - 98 [ label = "feature default" ] - 99 [ label = "feature cranelift" ] - 100 [ label = "feature incremental-cache" ] - 101 [ label = "feature parallel-compilation" ] - 102 [ label = "feature vtune" ] - 103 [ label = "feature default" ] - 104 [ label = "feature default" ] - 105 [ label = "feature default" ] - 106 [ label = "feature enable-serde" ] + 13 [ label = "crate conv 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" ] + 14 [ label = "crate cpp_demangle 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" ] + 15 [ label = "crate cpufeatures 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" ] + 16 [ label = "crate cranelift-bforest 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 17 [ label = "crate cranelift-codegen 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 18 [ label = "crate cranelift-codegen-meta 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 19 [ label = "crate cranelift-codegen-shared 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 20 [ label = "crate cranelift-entity 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 21 [ label = "crate cranelift-frontend 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 22 [ label = "crate cranelift-isle 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 23 [ label = "crate cranelift-native 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 24 [ label = "crate cranelift-wasm 0.89.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 25 [ label = "crate crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" ] + 26 [ label = "crate crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" ] + 27 [ label = "crate crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" ] + 28 [ label = "crate crossbeam-epoch 0.9.11 (registry+https://github.com/rust-lang/crates.io-index)" ] + 29 [ label = "crate crossbeam-utils 0.8.12 (registry+https://github.com/rust-lang/crates.io-index)" ] + 30 [ label = "crate custom_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" ] + 31 [ label = "crate digest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 32 [ label = "crate either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 33 [ label = "crate fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 34 [ label = "crate fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 35 [ label = "crate generic-array 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" ] + 36 [ label = "crate getrandom 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" ] + 37 [ label = "crate gimli 0.26.2 (registry+https://github.com/rust-lang/crates.io-index)" ] + 38 [ label = "crate hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" ] + 39 [ label = "crate hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" ] + 40 [ label = "crate indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 41 [ label = "crate io-lifetimes 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" ] + 42 [ label = "crate itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" ] + 43 [ label = "crate ittapi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 44 [ label = "crate ittapi-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 45 [ label = "crate libc 0.2.137 (registry+https://github.com/rust-lang/crates.io-index)" ] + 46 [ label = "crate linux-raw-sys 0.0.46 (registry+https://github.com/rust-lang/crates.io-index)" ] + 47 [ label = "crate log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" ] + 48 [ label = "crate mach 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" ] + 49 [ label = "crate memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 50 [ label = "crate memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" ] + 51 [ label = "crate num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 52 [ label = "crate object 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 53 [ label = "crate once_cell 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 54 [ label = "crate opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 55 [ label = "crate paste 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" ] + 56 [ label = "crate ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" ] + 57 [ label = "crate proc-macro2 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" ] + 58 [ label = "crate psm 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" ] + 59 [ label = "crate quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" ] + 60 [ label = "crate rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" ] + 61 [ label = "crate rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 62 [ label = "crate rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" ] + 63 [ label = "crate rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" ] + 64 [ label = "crate rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" ] + 65 [ label = "crate regalloc2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 66 [ label = "crate rustc-demangle 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" ] + 67 [ label = "crate rustix 0.35.12 (registry+https://github.com/rust-lang/crates.io-index)" ] + 68 [ label = "crate scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 69 [ label = "crate serde 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)" ] + 70 [ label = "crate serde_derive 1.0.147 (registry+https://github.com/rust-lang/crates.io-index)" ] + 71 [ label = "crate sha2 0.9.9 (registry+https://github.com/rust-lang/crates.io-index)" ] + 72 [ label = "crate slice-group-by 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 73 [ label = "crate smallvec 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 74 [ label = "crate stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 75 [ label = "crate syn 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)" ] + 76 [ label = "crate target-lexicon 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" ] + 77 [ label = "crate thiserror 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" ] + 78 [ label = "crate thiserror-impl 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" ] + 79 [ label = "crate typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 80 [ label = "crate unicode-ident 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" ] + 81 [ label = "crate version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" ] + 82 [ label = "crate wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 83 [ label = "crate wasmparser 0.92.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 84 [ label = "crate wasmtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 85 [ label = "crate wasmtime-asm-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 86 [ label = "crate wasmtime-cranelift 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 87 [ label = "crate wasmtime-environ 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 88 [ label = "crate wasmtime-jit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 89 [ label = "crate wasmtime-jit-debug 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 90 [ label = "crate wasmtime-runtime 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 91 [ label = "crate wasmtime-types 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" ] + 92 [ label = "crate windows-sys 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 93 [ label = "crate windows_aarch64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 94 [ label = "crate windows_i686_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 95 [ label = "crate windows_i686_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 96 [ label = "crate windows_x86_64_gnu 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 97 [ label = "crate windows_x86_64_msvc 0.36.1 (registry+https://github.com/rust-lang/crates.io-index)" ] + 98 [ label = "feature read" ] + 99 [ label = "feature alloc" ] + 100 [ label = "feature default" ] + 101 [ label = "feature default" ] + 102 [ label = "feature cranelift" ] + 103 [ label = "feature incremental-cache" ] + 104 [ label = "feature parallel-compilation" ] + 105 [ label = "feature vtune" ] + 106 [ label = "feature std" ] 107 [ label = "feature default" ] - 108 [ label = "feature std" ] - 109 [ label = "feature write" ] - 110 [ label = "feature default" ] - 111 [ label = "feature checker" ] - 112 [ label = "feature enable-serde" ] - 113 [ label = "feature derive" ] + 108 [ label = "feature default" ] + 109 [ label = "feature default" ] + 110 [ label = "feature enable-serde" ] + 111 [ label = "feature default" ] + 112 [ label = "feature std" ] + 113 [ label = "feature write" ] 114 [ label = "feature default" ] - 115 [ label = "feature union" ] - 116 [ label = "feature serde" ] - 117 [ label = "feature default" ] - 118 [ label = "feature std" ] - 119 [ label = "feature default" ] - 120 [ label = "feature std" ] + 115 [ label = "feature checker" ] + 116 [ label = "feature enable-serde" ] + 117 [ label = "feature derive" ] + 118 [ label = "feature default" ] + 119 [ label = "feature union" ] + 120 [ label = "feature serde" ] 121 [ label = "feature default" ] 122 [ label = "feature std" ] - 123 [ label = "feature std" ] - 124 [ label = "feature default" ] + 123 [ label = "feature default" ] + 124 [ label = "feature std" ] 125 [ label = "feature default" ] - 126 [ label = "feature default" ] + 126 [ label = "feature std" ] 127 [ label = "feature std" ] - 128 [ label = "feature std" ] - 129 [ label = "feature raw" ] - 130 [ label = "feature use_std" ] - 131 [ label = "feature default" ] - 132 [ label = "feature default" ] - 133 [ label = "feature std" ] - 134 [ label = "feature ahash" ] - 135 [ label = "feature std" ] - 136 [ label = "feature std" ] - 137 [ label = "feature proc-macro" ] - 138 [ label = "feature std" ] - 139 [ label = "feature alloc" ] - 140 [ label = "feature getrandom" ] - 141 [ label = "feature std" ] - 142 [ label = "feature simd" ] - 143 [ label = "feature std" ] - 144 [ label = "feature std" ] - 145 [ label = "feature default" ] - 146 [ label = "feature default" ] - 147 [ label = "feature default" ] - 148 [ label = "feature default" ] + 128 [ label = "feature default" ] + 129 [ label = "feature default" ] + 130 [ label = "feature default" ] + 131 [ label = "feature std" ] + 132 [ label = "feature std" ] + 133 [ label = "feature raw" ] + 134 [ label = "feature use_std" ] + 135 [ label = "feature default" ] + 136 [ label = "feature default" ] + 137 [ label = "feature std" ] + 138 [ label = "feature ahash" ] + 139 [ label = "feature std" ] + 140 [ label = "feature std" ] + 141 [ label = "feature proc-macro" ] + 142 [ label = "feature std" ] + 143 [ label = "feature alloc" ] + 144 [ label = "feature getrandom" ] + 145 [ label = "feature std" ] + 146 [ label = "feature simd" ] + 147 [ label = "feature std" ] + 148 [ label = "feature std" ] 149 [ label = "feature default" ] - 150 [ label = "feature extra_traits" ] - 151 [ label = "feature general" ] - 152 [ label = "feature no_std" ] + 150 [ label = "feature default" ] + 151 [ label = "feature default" ] + 152 [ label = "feature default" ] 153 [ label = "feature default" ] - 154 [ label = "feature Win32_Foundation" ] - 155 [ label = "feature Win32_Networking_WinSock" ] - 156 [ label = "feature Win32_NetworkManagement_IpHelper" ] - 157 [ label = "feature Win32_System_Threading" ] - 158 [ label = "feature default" ] - 159 [ label = "feature default" ] - 160 [ label = "feature default" ] - 161 [ label = "feature default" ] - 162 [ label = "feature std" ] - 163 [ label = "feature proc-macro" ] - 164 [ label = "feature read_core" ] - 165 [ label = "feature elf" ] + 154 [ label = "feature extra_traits" ] + 155 [ label = "feature general" ] + 156 [ label = "feature no_std" ] + 157 [ label = "feature default" ] + 158 [ label = "feature Win32_Foundation" ] + 159 [ label = "feature Win32_Networking_WinSock" ] + 160 [ label = "feature Win32_NetworkManagement_IpHelper" ] + 161 [ label = "feature Win32_System_Threading" ] + 162 [ label = "feature default" ] + 163 [ label = "feature default" ] + 164 [ label = "feature default" ] + 165 [ label = "feature default" ] 166 [ label = "feature std" ] - 167 [ label = "feature default" ] - 168 [ label = "feature incremental-cache" ] - 169 [ label = "feature vtune" ] - 170 [ label = "feature Win32_System_Diagnostics_Debug" ] - 171 [ label = "feature incremental-cache" ] - 172 [ label = "feature default" ] - 173 [ label = "feature default" ] - 174 [ label = "feature write" ] - 175 [ label = "feature serde-1" ] - 176 [ label = "feature write_core" ] + 167 [ label = "feature proc-macro" ] + 168 [ label = "feature read_core" ] + 169 [ label = "feature elf" ] + 170 [ label = "feature std" ] + 171 [ label = "feature default" ] + 172 [ label = "feature incremental-cache" ] + 173 [ label = "feature vtune" ] + 174 [ label = "feature Win32_System_Diagnostics_Debug" ] + 175 [ label = "feature incremental-cache" ] + 176 [ label = "feature default" ] 177 [ label = "feature default" ] - 178 [ label = "feature default" ] - 179 [ label = "feature process" ] - 180 [ label = "feature default" ] + 178 [ label = "feature write" ] + 179 [ label = "feature serde-1" ] + 180 [ label = "feature write_core" ] 181 [ label = "feature default" ] - 182 [ label = "feature mm" ] - 183 [ label = "feature gdb_jit_int" ] - 184 [ label = "feature Win32_System_Kernel" ] - 185 [ label = "feature Win32_System_Memory" ] - 186 [ label = "feature Win32_System_SystemInformation" ] - 187 [ label = "feature Win32_Storage_FileSystem" ] - 188 [ label = "feature Win32_Security" ] - 189 [ label = "feature std" ] - 190 [ label = "feature std" ] - 191 [ label = "feature std" ] - 192 [ label = "feature std" ] - 193 [ label = "feature enable-serde" ] - 194 [ label = "feature bincode" ] - 195 [ label = "feature sha2" ] - 196 [ label = "feature serde" ] - 197 [ label = "feature unwind" ] - 198 [ label = "feature gimli" ] - 199 [ label = "feature serde" ] - 200 [ label = "feature std" ] - 201 [ label = "feature std" ] - 202 [ label = "feature std" ] - 203 [ label = "feature std" ] - 204 [ label = "feature alloc" ] - 205 [ label = "feature alloc" ] - 206 [ label = "feature indexmap" ] - 207 [ label = "feature read-core" ] - 208 [ label = "feature serde" ] - 209 [ label = "feature use_std" ] - 210 [ label = "feature use_alloc" ] - 211 [ label = "feature std" ] - 212 [ label = "feature crc32fast" ] - 213 [ label = "feature indexmap" ] - 214 [ label = "feature hashbrown" ] - 215 [ label = "feature write_std" ] - 216 [ label = "feature coff" ] - 217 [ label = "feature macho" ] - 218 [ label = "feature pe" ] - 219 [ label = "feature std" ] - 220 [ label = "feature race" ] - 221 [ label = "feature std" ] - 222 [ label = "feature std_rng" ] - 223 [ label = "feature rand_chacha" ] - 224 [ label = "feature alloc" ] - 225 [ label = "feature getrandom" ] - 226 [ label = "feature libc" ] - 227 [ label = "feature serde" ] - 228 [ label = "feature std" ] - 229 [ label = "feature use-libc-auxv" ] - 230 [ label = "feature libc" ] - 231 [ label = "feature io-lifetimes" ] - 232 [ label = "feature serde_derive" ] + 182 [ label = "feature default" ] + 183 [ label = "feature process" ] + 184 [ label = "feature default" ] + 185 [ label = "feature default" ] + 186 [ label = "feature mm" ] + 187 [ label = "feature gdb_jit_int" ] + 188 [ label = "feature Win32_System_Kernel" ] + 189 [ label = "feature Win32_System_Memory" ] + 190 [ label = "feature Win32_System_SystemInformation" ] + 191 [ label = "feature Win32_Storage_FileSystem" ] + 192 [ label = "feature Win32_Security" ] + 193 [ label = "feature std" ] + 194 [ label = "feature std" ] + 195 [ label = "feature std" ] + 196 [ label = "feature std" ] + 197 [ label = "feature std" ] + 198 [ label = "feature enable-serde" ] + 199 [ label = "feature bincode" ] + 200 [ label = "feature sha2" ] + 201 [ label = "feature serde" ] + 202 [ label = "feature unwind" ] + 203 [ label = "feature gimli" ] + 204 [ label = "feature serde" ] + 205 [ label = "feature std" ] + 206 [ label = "feature std" ] + 207 [ label = "feature std" ] + 208 [ label = "feature std" ] + 209 [ label = "feature alloc" ] + 210 [ label = "feature alloc" ] + 211 [ label = "feature indexmap" ] + 212 [ label = "feature read-core" ] + 213 [ label = "feature serde" ] + 214 [ label = "feature use_std" ] + 215 [ label = "feature use_alloc" ] + 216 [ label = "feature std" ] + 217 [ label = "feature crc32fast" ] + 218 [ label = "feature indexmap" ] + 219 [ label = "feature hashbrown" ] + 220 [ label = "feature write_std" ] + 221 [ label = "feature coff" ] + 222 [ label = "feature macho" ] + 223 [ label = "feature pe" ] + 224 [ label = "feature std" ] + 225 [ label = "feature race" ] + 226 [ label = "feature std" ] + 227 [ label = "feature std_rng" ] + 228 [ label = "feature rand_chacha" ] + 229 [ label = "feature alloc" ] + 230 [ label = "feature getrandom" ] + 231 [ label = "feature libc" ] + 232 [ label = "feature serde" ] 233 [ label = "feature std" ] - 234 [ label = "feature std" ] - 235 [ label = "feature std" ] - 236 [ label = "feature alloc" ] - 237 [ label = "feature derive" ] - 238 [ label = "feature parsing" ] - 239 [ label = "feature printing" ] - 240 [ label = "feature clone-impls" ] - 241 [ label = "feature proc-macro" ] - 242 [ label = "feature quote" ] - 243 [ label = "feature std" ] - 244 [ label = "feature ittapi" ] - 245 [ label = "feature once_cell" ] - 246 [ label = "feature Win32_System" ] - 247 [ label = "feature Win32" ] - 248 [ label = "feature Win32_System_Diagnostics" ] - 249 [ label = "feature Win32_Storage" ] - 250 [ label = "feature Win32_Networking" ] - 251 [ label = "feature Win32_NetworkManagement" ] - 0 -> 96 [ label = "" ] - 1 -> 34 [ label = " 'cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))'" ] - 1 -> 97 [ label = " 'cfg(not(all(target_arch = \"arm\", target_os = \"none\")))'" ] - 1 -> 79 [ label = "(build)" ] - 5 -> 98 [ label = "" ] - 7 -> 33 [ label = "" ] - 8 -> 99 [ label = "" ] - 8 -> 100 [ label = "" ] + 234 [ label = "feature use-libc-auxv" ] + 235 [ label = "feature libc" ] + 236 [ label = "feature io-lifetimes" ] + 237 [ label = "feature serde_derive" ] + 238 [ label = "feature std" ] + 239 [ label = "feature std" ] + 240 [ label = "feature std" ] + 241 [ label = "feature alloc" ] + 242 [ label = "feature derive" ] + 243 [ label = "feature parsing" ] + 244 [ label = "feature printing" ] + 245 [ label = "feature clone-impls" ] + 246 [ label = "feature proc-macro" ] + 247 [ label = "feature quote" ] + 248 [ label = "feature std" ] + 249 [ label = "feature ittapi" ] + 250 [ label = "feature once_cell" ] + 251 [ label = "feature Win32_System" ] + 252 [ label = "feature Win32" ] + 253 [ label = "feature Win32_System_Diagnostics" ] + 254 [ label = "feature Win32_Storage" ] + 255 [ label = "feature Win32_Networking" ] + 256 [ label = "feature Win32_NetworkManagement" ] + 0 -> 98 [ label = "" ] + 1 -> 36 [ label = " 'cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))'" ] + 1 -> 99 [ label = " 'cfg(not(all(target_arch = \"arm\", target_os = \"none\")))'" ] + 1 -> 81 [ label = "(build)" ] + 5 -> 100 [ label = "" ] + 7 -> 35 [ label = "" ] 8 -> 101 [ label = "" ] 8 -> 102 [ label = "" ] - 13 -> 12 [ label = "" ] - 14 -> 103 [ label = " 'aarch64-apple-darwin'" ] - 14 -> 103 [ label = " 'aarch64-linux-android'" ] - 14 -> 103 [ label = " 'cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))'" ] - 15 -> 19 [ label = "" ] - 16 -> 104 [ label = "" ] - 16 -> 5 [ label = "" ] - 16 -> 105 [ label = "" ] - 16 -> 15 [ label = "" ] - 16 -> 17 [ label = "(build)" ] - 16 -> 18 [ label = "" ] - 16 -> 19 [ label = "" ] - 16 -> 106 [ label = "" ] - 16 -> 107 [ label = "(build)" ] - 16 -> 96 [ label = "" ] - 16 -> 108 [ label = "" ] - 16 -> 109 [ label = "" ] - 16 -> 45 [ label = "" ] - 16 -> 110 [ label = "" ] - 16 -> 111 [ label = "" ] - 16 -> 112 [ label = "" ] - 16 -> 98 [ label = "" ] - 16 -> 113 [ label = "" ] - 16 -> 114 [ label = "" ] - 16 -> 115 [ label = "" ] - 16 -> 116 [ label = "" ] - 16 -> 74 [ label = "" ] - 17 -> 18 [ label = "" ] - 19 -> 98 [ label = "" ] - 19 -> 113 [ label = "" ] + 8 -> 103 [ label = "" ] + 8 -> 104 [ label = "" ] + 8 -> 105 [ label = "" ] + 13 -> 30 [ label = "" ] + 13 -> 106 [ label = "" ] + 14 -> 12 [ label = "" ] + 15 -> 107 [ label = " 'aarch64-apple-darwin'" ] + 15 -> 107 [ label = " 'aarch64-linux-android'" ] + 15 -> 107 [ label = " 'cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))'" ] + 16 -> 20 [ label = "" ] + 17 -> 108 [ label = "" ] + 17 -> 5 [ label = "" ] + 17 -> 109 [ label = "" ] + 17 -> 16 [ label = "" ] + 17 -> 18 [ label = "(build)" ] + 17 -> 19 [ label = "" ] + 17 -> 20 [ label = "" ] + 17 -> 110 [ label = "" ] + 17 -> 111 [ label = "(build)" ] + 17 -> 98 [ label = "" ] + 17 -> 112 [ label = "" ] + 17 -> 113 [ label = "" ] + 17 -> 47 [ label = "" ] + 17 -> 114 [ label = "" ] + 17 -> 115 [ label = "" ] + 17 -> 116 [ label = "" ] + 17 -> 100 [ label = "" ] + 17 -> 117 [ label = "" ] + 17 -> 118 [ label = "" ] + 17 -> 119 [ label = "" ] + 17 -> 120 [ label = "" ] + 17 -> 76 [ label = "" ] + 18 -> 19 [ label = "" ] + 20 -> 100 [ label = "" ] 20 -> 117 [ label = "" ] - 20 -> 118 [ label = "" ] - 20 -> 45 [ label = "" ] - 20 -> 115 [ label = "" ] - 20 -> 74 [ label = "" ] - 21 -> 61 [ label = "" ] - 22 -> 117 [ label = "" ] - 22 -> 118 [ label = "" ] - 22 -> 103 [ label = " 'cfg(target_arch = \"s390x\")'" ] - 22 -> 74 [ label = "" ] - 23 -> 117 [ label = "" ] - 23 -> 118 [ label = "" ] - 23 -> 19 [ label = "" ] - 23 -> 119 [ label = "" ] - 23 -> 120 [ label = "" ] + 21 -> 121 [ label = "" ] + 21 -> 122 [ label = "" ] + 21 -> 47 [ label = "" ] + 21 -> 119 [ label = "" ] + 21 -> 76 [ label = "" ] + 22 -> 63 [ label = "" ] 23 -> 121 [ label = "" ] - 23 -> 45 [ label = "" ] - 23 -> 115 [ label = "" ] - 23 -> 81 [ label = "" ] - 23 -> 89 [ label = "" ] - 24 -> 12 [ label = "" ] + 23 -> 122 [ label = "" ] + 23 -> 107 [ label = " 'cfg(target_arch = \"s390x\")'" ] + 23 -> 76 [ label = "" ] + 24 -> 121 [ label = "" ] + 24 -> 122 [ label = "" ] + 24 -> 20 [ label = "" ] + 24 -> 123 [ label = "" ] + 24 -> 124 [ label = "" ] + 24 -> 125 [ label = "" ] + 24 -> 47 [ label = "" ] + 24 -> 119 [ label = "" ] + 24 -> 83 [ label = "" ] + 24 -> 91 [ label = "" ] 25 -> 12 [ label = "" ] - 25 -> 28 [ label = "" ] - 25 -> 122 [ label = "" ] 26 -> 12 [ label = "" ] - 26 -> 27 [ label = "" ] - 26 -> 123 [ label = "" ] - 26 -> 28 [ label = "" ] - 26 -> 122 [ label = "" ] - 27 -> 4 [ label = "(build)" ] + 26 -> 29 [ label = "" ] + 26 -> 126 [ label = "" ] 27 -> 12 [ label = "" ] 27 -> 28 [ label = "" ] - 27 -> 122 [ label = "" ] - 27 -> 124 [ label = "" ] - 27 -> 66 [ label = "" ] + 27 -> 127 [ label = "" ] + 27 -> 29 [ label = "" ] + 27 -> 126 [ label = "" ] + 28 -> 4 [ label = "(build)" ] 28 -> 12 [ label = "" ] - 29 -> 33 [ label = "" ] - 32 -> 125 [ label = "" ] - 33 -> 77 [ label = "" ] - 33 -> 79 [ label = "(build)" ] - 34 -> 12 [ label = "" ] - 34 -> 43 [ label = " 'cfg(unix)'" ] - 34 -> 126 [ label = " 'cfg(target_os = \"wasi\")'" ] - 35 -> 31 [ label = "" ] - 35 -> 127 [ label = "" ] - 35 -> 38 [ label = "" ] - 35 -> 72 [ label = "" ] - 35 -> 128 [ label = "" ] - 36 -> 1 [ label = "" ] - 37 -> 43 [ label = "" ] - 38 -> 4 [ label = "(build)" ] - 38 -> 129 [ label = "" ] - 38 -> 67 [ label = "" ] - 40 -> 30 [ label = "" ] - 40 -> 130 [ label = "" ] - 41 -> 131 [ label = "" ] - 41 -> 42 [ label = "" ] - 41 -> 45 [ label = "" ] - 42 -> 11 [ label = "(build)" ] - 45 -> 12 [ label = "" ] - 46 -> 43 [ label = " 'cfg(any(target_os = \"macos\", target_os = \"ios\"))'" ] - 48 -> 4 [ label = "(build)" ] - 49 -> 132 [ label = " 'cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))'" ] - 49 -> 103 [ label = " 'cfg(not(windows))'" ] - 50 -> 24 [ label = "" ] - 50 -> 133 [ label = "" ] - 50 -> 134 [ label = "" ] - 50 -> 38 [ label = "" ] - 50 -> 135 [ label = "" ] - 50 -> 47 [ label = "" ] - 50 -> 136 [ label = "" ] - 55 -> 78 [ label = "" ] - 56 -> 11 [ label = "(build)" ] - 57 -> 55 [ label = "" ] - 57 -> 137 [ label = "" ] - 58 -> 43 [ label = " 'cfg(unix)'" ] - 58 -> 59 [ label = "" ] - 58 -> 138 [ label = "" ] - 58 -> 60 [ label = "" ] - 58 -> 139 [ label = "" ] - 58 -> 140 [ label = "" ] - 58 -> 141 [ label = "" ] - 59 -> 142 [ label = "" ] - 59 -> 143 [ label = "" ] - 59 -> 60 [ label = "" ] - 60 -> 34 [ label = "" ] + 28 -> 29 [ label = "" ] + 28 -> 126 [ label = "" ] + 28 -> 128 [ label = "" ] + 28 -> 68 [ label = "" ] + 29 -> 12 [ label = "" ] + 31 -> 35 [ label = "" ] + 34 -> 129 [ label = "" ] + 35 -> 79 [ label = "" ] + 35 -> 81 [ label = "(build)" ] + 36 -> 12 [ label = "" ] + 36 -> 45 [ label = " 'cfg(unix)'" ] + 36 -> 130 [ label = " 'cfg(target_os = \"wasi\")'" ] + 37 -> 33 [ label = "" ] + 37 -> 131 [ label = "" ] + 37 -> 40 [ label = "" ] + 37 -> 74 [ label = "" ] + 37 -> 132 [ label = "" ] + 38 -> 1 [ label = "" ] + 39 -> 45 [ label = "" ] + 40 -> 4 [ label = "(build)" ] + 40 -> 133 [ label = "" ] + 40 -> 69 [ label = "" ] + 42 -> 32 [ label = "" ] + 42 -> 134 [ label = "" ] + 43 -> 135 [ label = "" ] + 43 -> 44 [ label = "" ] + 43 -> 47 [ label = "" ] + 44 -> 11 [ label = "(build)" ] + 47 -> 12 [ label = "" ] + 48 -> 45 [ label = " 'cfg(any(target_os = \"macos\", target_os = \"ios\"))'" ] + 50 -> 4 [ label = "(build)" ] + 51 -> 136 [ label = " 'cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))'" ] + 51 -> 107 [ label = " 'cfg(not(windows))'" ] + 52 -> 25 [ label = "" ] + 52 -> 137 [ label = "" ] + 52 -> 138 [ label = "" ] + 52 -> 40 [ label = "" ] + 52 -> 139 [ label = "" ] + 52 -> 49 [ label = "" ] + 52 -> 140 [ label = "" ] + 57 -> 80 [ label = "" ] + 58 -> 11 [ label = "(build)" ] + 59 -> 57 [ label = "" ] + 59 -> 141 [ label = "" ] + 60 -> 45 [ label = " 'cfg(unix)'" ] + 60 -> 61 [ label = "" ] + 60 -> 142 [ label = "" ] + 60 -> 62 [ label = "" ] + 60 -> 143 [ label = "" ] 60 -> 144 [ label = "" ] - 61 -> 4 [ label = "(build)" ] - 61 -> 145 [ label = "" ] - 61 -> 30 [ label = "" ] + 60 -> 145 [ label = "" ] + 61 -> 146 [ label = "" ] + 61 -> 147 [ label = "" ] 61 -> 62 [ label = "" ] - 62 -> 146 [ label = "" ] - 62 -> 145 [ label = "" ] - 62 -> 147 [ label = "" ] - 62 -> 49 [ label = "" ] + 62 -> 36 [ label = "" ] + 62 -> 148 [ label = "" ] + 63 -> 4 [ label = "(build)" ] + 63 -> 149 [ label = "" ] 63 -> 32 [ label = "" ] - 63 -> 45 [ label = "" ] - 63 -> 98 [ label = "" ] - 63 -> 113 [ label = "" ] - 63 -> 148 [ label = "" ] - 63 -> 71 [ label = "" ] - 65 -> 149 [ label = "" ] - 65 -> 39 [ label = "" ] - 65 -> 103 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] - 65 -> 150 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] - 65 -> 103 [ label = " 'cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))'" ] - 65 -> 150 [ label = " 'cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))'" ] - 65 -> 151 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] - 65 -> 152 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] - 65 -> 151 [ label = " 'cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))'" ] - 65 -> 152 [ label = " 'cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))'" ] - 65 -> 153 [ label = " 'cfg(windows)'" ] - 65 -> 154 [ label = " 'cfg(windows)'" ] - 65 -> 155 [ label = " 'cfg(windows)'" ] - 65 -> 156 [ label = " 'cfg(windows)'" ] - 65 -> 157 [ label = " 'cfg(windows)'" ] - 67 -> 158 [ label = "" ] - 68 -> 159 [ label = "" ] - 68 -> 160 [ label = "" ] - 68 -> 161 [ label = "" ] - 69 -> 7 [ label = "" ] - 69 -> 12 [ label = "" ] - 69 -> 14 [ label = " 'cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))'" ] - 69 -> 29 [ label = "" ] + 63 -> 64 [ label = "" ] + 64 -> 150 [ label = "" ] + 64 -> 149 [ label = "" ] + 64 -> 151 [ label = "" ] + 64 -> 51 [ label = "" ] + 65 -> 34 [ label = "" ] + 65 -> 47 [ label = "" ] + 65 -> 100 [ label = "" ] + 65 -> 117 [ label = "" ] + 65 -> 152 [ label = "" ] + 65 -> 73 [ label = "" ] + 67 -> 153 [ label = "" ] + 67 -> 41 [ label = "" ] + 67 -> 107 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] + 67 -> 154 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] + 67 -> 107 [ label = " 'cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))'" ] + 67 -> 154 [ label = " 'cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))'" ] + 67 -> 155 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] + 67 -> 156 [ label = " 'cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))'" ] + 67 -> 155 [ label = " 'cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))'" ] + 67 -> 156 [ label = " 'cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))'" ] + 67 -> 157 [ label = " 'cfg(windows)'" ] + 67 -> 158 [ label = " 'cfg(windows)'" ] + 67 -> 159 [ label = " 'cfg(windows)'" ] + 67 -> 160 [ label = " 'cfg(windows)'" ] + 67 -> 161 [ label = " 'cfg(windows)'" ] 69 -> 162 [ label = "" ] - 69 -> 52 [ label = "" ] - 71 -> 67 [ label = "" ] - 73 -> 55 [ label = "" ] - 73 -> 137 [ label = "" ] - 73 -> 57 [ label = "" ] - 73 -> 163 [ label = "" ] - 73 -> 78 [ label = "" ] - 75 -> 76 [ label = "" ] - 76 -> 159 [ label = "" ] - 76 -> 160 [ label = "" ] - 76 -> 161 [ label = "" ] - 81 -> 38 [ label = "" ] - 82 -> 131 [ label = "" ] - 82 -> 5 [ label = "" ] - 82 -> 12 [ label = "" ] - 82 -> 38 [ label = "" ] - 82 -> 103 [ label = "" ] - 82 -> 45 [ label = "" ] - 82 -> 164 [ label = "" ] - 82 -> 165 [ label = "" ] - 82 -> 166 [ label = "" ] - 82 -> 167 [ label = "" ] - 82 -> 53 [ label = "" ] - 82 -> 56 [ label = "" ] - 82 -> 61 [ label = "" ] - 82 -> 98 [ label = "" ] - 82 -> 113 [ label = "" ] - 82 -> 74 [ label = "" ] - 82 -> 81 [ label = "" ] - 82 -> 84 [ label = "" ] - 82 -> 168 [ label = "" ] - 82 -> 85 [ label = "" ] - 82 -> 86 [ label = "" ] - 82 -> 169 [ label = "" ] - 82 -> 88 [ label = "" ] - 82 -> 153 [ label = " 'cfg(target_os = \"windows\")'" ] - 82 -> 170 [ label = " 'cfg(target_os = \"windows\")'" ] - 83 -> 12 [ label = "" ] - 84 -> 131 [ label = "" ] - 84 -> 117 [ label = "" ] + 70 -> 163 [ label = "" ] + 70 -> 164 [ label = "" ] + 70 -> 165 [ label = "" ] + 71 -> 7 [ label = "" ] + 71 -> 12 [ label = "" ] + 71 -> 15 [ label = " 'cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))'" ] + 71 -> 31 [ label = "" ] + 71 -> 166 [ label = "" ] + 71 -> 54 [ label = "" ] + 75 -> 57 [ label = "" ] + 75 -> 141 [ label = "" ] + 75 -> 59 [ label = "" ] + 75 -> 167 [ label = "" ] + 75 -> 80 [ label = "" ] + 77 -> 78 [ label = "" ] + 78 -> 163 [ label = "" ] + 78 -> 164 [ label = "" ] + 78 -> 165 [ label = "" ] + 83 -> 40 [ label = "" ] + 84 -> 135 [ label = "" ] + 84 -> 5 [ label = "" ] + 84 -> 12 [ label = "" ] + 84 -> 40 [ label = "" ] + 84 -> 107 [ label = "" ] + 84 -> 47 [ label = "" ] + 84 -> 168 [ label = "" ] + 84 -> 169 [ label = "" ] + 84 -> 170 [ label = "" ] 84 -> 171 [ label = "" ] - 84 -> 19 [ label = "" ] - 84 -> 119 [ label = "" ] + 84 -> 55 [ label = "" ] + 84 -> 58 [ label = "" ] + 84 -> 63 [ label = "" ] + 84 -> 100 [ label = "" ] + 84 -> 117 [ label = "" ] + 84 -> 76 [ label = "" ] + 84 -> 83 [ label = "" ] + 84 -> 86 [ label = "" ] 84 -> 172 [ label = "" ] + 84 -> 87 [ label = "" ] + 84 -> 88 [ label = "" ] 84 -> 173 [ label = "" ] - 84 -> 96 [ label = "" ] - 84 -> 108 [ label = "" ] - 84 -> 45 [ label = "" ] - 84 -> 164 [ label = "" ] - 84 -> 165 [ label = "" ] - 84 -> 166 [ label = "" ] - 84 -> 174 [ label = "" ] - 84 -> 74 [ label = "" ] - 84 -> 75 [ label = "" ] - 84 -> 81 [ label = "" ] - 84 -> 85 [ label = "" ] - 85 -> 131 [ label = "" ] - 85 -> 19 [ label = "" ] - 85 -> 96 [ label = "" ] - 85 -> 108 [ label = "" ] - 85 -> 175 [ label = "" ] - 85 -> 45 [ label = "" ] - 85 -> 164 [ label = "" ] - 85 -> 165 [ label = "" ] - 85 -> 166 [ label = "" ] - 85 -> 176 [ label = "" ] - 85 -> 98 [ label = "" ] - 85 -> 113 [ label = "" ] - 85 -> 74 [ label = "" ] - 85 -> 75 [ label = "" ] - 85 -> 81 [ label = "" ] - 85 -> 89 [ label = "" ] - 86 -> 0 [ label = "" ] - 86 -> 131 [ label = "" ] - 86 -> 5 [ label = "" ] - 86 -> 12 [ label = "" ] + 84 -> 90 [ label = "" ] + 84 -> 157 [ label = " 'cfg(target_os = \"windows\")'" ] + 84 -> 174 [ label = " 'cfg(target_os = \"windows\")'" ] + 85 -> 12 [ label = "" ] + 86 -> 135 [ label = "" ] + 86 -> 121 [ label = "" ] + 86 -> 175 [ label = "" ] + 86 -> 20 [ label = "" ] + 86 -> 123 [ label = "" ] + 86 -> 176 [ label = "" ] 86 -> 177 [ label = "" ] - 86 -> 96 [ label = "" ] - 86 -> 108 [ label = "" ] - 86 -> 41 [ label = " 'cfg(target_arch = \"x86_64\")'" ] - 86 -> 45 [ label = "" ] - 86 -> 164 [ label = "" ] - 86 -> 165 [ label = "" ] - 86 -> 166 [ label = "" ] - 86 -> 64 [ label = "" ] - 86 -> 178 [ label = " 'cfg(target_os = \"linux\")'" ] - 86 -> 179 [ label = " 'cfg(target_os = \"linux\")'" ] 86 -> 98 [ label = "" ] - 86 -> 113 [ label = "" ] - 86 -> 74 [ label = "" ] - 86 -> 75 [ label = "" ] - 86 -> 85 [ label = "" ] - 86 -> 88 [ label = "" ] - 86 -> 153 [ label = " 'cfg(target_os = \"windows\")'" ] - 86 -> 170 [ label = " 'cfg(target_os = \"windows\")'" ] - 87 -> 167 [ label = "" ] - 88 -> 131 [ label = "" ] - 88 -> 11 [ label = "(build)" ] + 86 -> 112 [ label = "" ] + 86 -> 47 [ label = "" ] + 86 -> 168 [ label = "" ] + 86 -> 169 [ label = "" ] + 86 -> 170 [ label = "" ] + 86 -> 178 [ label = "" ] + 86 -> 76 [ label = "" ] + 86 -> 77 [ label = "" ] + 86 -> 83 [ label = "" ] + 86 -> 87 [ label = "" ] + 87 -> 135 [ label = "" ] + 87 -> 20 [ label = "" ] + 87 -> 98 [ label = "" ] + 87 -> 112 [ label = "" ] + 87 -> 179 [ label = "" ] + 87 -> 47 [ label = "" ] + 87 -> 168 [ label = "" ] + 87 -> 169 [ label = "" ] + 87 -> 170 [ label = "" ] + 87 -> 180 [ label = "" ] + 87 -> 100 [ label = "" ] + 87 -> 117 [ label = "" ] + 87 -> 76 [ label = "" ] + 87 -> 77 [ label = "" ] + 87 -> 83 [ label = "" ] + 87 -> 91 [ label = "" ] + 88 -> 0 [ label = "" ] + 88 -> 135 [ label = "" ] + 88 -> 5 [ label = "" ] 88 -> 12 [ label = "" ] - 88 -> 38 [ label = "" ] - 88 -> 43 [ label = "" ] - 88 -> 45 [ label = "" ] - 88 -> 180 [ label = " 'cfg(target_os = \"macos\")'" ] - 88 -> 124 [ label = "" ] - 88 -> 53 [ label = "" ] 88 -> 181 [ label = "" ] - 88 -> 178 [ label = " 'cfg(unix)'" ] - 88 -> 182 [ label = " 'cfg(unix)'" ] - 88 -> 75 [ label = "" ] - 88 -> 83 [ label = "" ] - 88 -> 85 [ label = "" ] - 88 -> 183 [ label = "" ] - 88 -> 153 [ label = " 'cfg(target_os = \"windows\")'" ] - 88 -> 184 [ label = " 'cfg(target_os = \"windows\")'" ] - 88 -> 185 [ label = " 'cfg(target_os = \"windows\")'" ] - 88 -> 170 [ label = " 'cfg(target_os = \"windows\")'" ] - 88 -> 186 [ label = " 'cfg(target_os = \"windows\")'" ] - 88 -> 187 [ label = " 'cfg(target_os = \"windows\")'" ] - 88 -> 188 [ label = " 'cfg(target_os = \"windows\")'" ] - 89 -> 106 [ label = "" ] - 89 -> 98 [ label = "" ] - 89 -> 113 [ label = "" ] - 89 -> 75 [ label = "" ] - 89 -> 81 [ label = "" ] - 90 -> 91 [ label = " 'aarch64-pc-windows-msvc'" ] - 90 -> 91 [ label = " 'aarch64-uwp-windows-msvc'" ] - 90 -> 92 [ label = " 'i686-pc-windows-gnu'" ] - 90 -> 92 [ label = " 'i686-uwp-windows-gnu'" ] - 90 -> 93 [ label = " 'i686-pc-windows-msvc'" ] - 90 -> 93 [ label = " 'i686-uwp-windows-msvc'" ] - 90 -> 94 [ label = " 'x86_64-pc-windows-gnu'" ] - 90 -> 94 [ label = " 'x86_64-uwp-windows-gnu'" ] - 90 -> 95 [ label = " 'x86_64-pc-windows-msvc'" ] - 90 -> 95 [ label = " 'x86_64-uwp-windows-msvc'" ] - 131 -> 2 [ label = "" ] - 131 -> 189 [ label = "" ] - 189 -> 2 [ label = "" ] - 104 -> 3 [ label = "" ] - 104 -> 190 [ label = "" ] - 190 -> 3 [ label = "" ] - 149 -> 6 [ label = "" ] - 105 -> 9 [ label = "" ] - 125 -> 10 [ label = "" ] - 125 -> 191 [ label = "" ] - 191 -> 10 [ label = "" ] - 177 -> 13 [ label = "" ] - 177 -> 192 [ label = "" ] - 192 -> 13 [ label = "" ] - 118 -> 16 [ label = "" ] - 171 -> 16 [ label = "" ] - 171 -> 193 [ label = "" ] - 171 -> 194 [ label = "" ] - 171 -> 195 [ label = "" ] - 195 -> 16 [ label = "" ] - 195 -> 69 [ label = "" ] - 194 -> 16 [ label = "" ] - 194 -> 5 [ label = "" ] - 193 -> 16 [ label = "" ] - 193 -> 196 [ label = "" ] - 193 -> 106 [ label = "" ] - 193 -> 112 [ label = "" ] - 193 -> 116 [ label = "" ] - 196 -> 16 [ label = "" ] - 196 -> 67 [ label = "" ] - 117 -> 16 [ label = "" ] - 117 -> 118 [ label = "" ] - 117 -> 197 [ label = "" ] - 197 -> 16 [ label = "" ] - 197 -> 198 [ label = "" ] - 198 -> 16 [ label = "" ] - 198 -> 35 [ label = "" ] - 106 -> 19 [ label = "" ] - 106 -> 199 [ label = "" ] - 199 -> 19 [ label = "" ] - 199 -> 67 [ label = "" ] - 120 -> 20 [ label = "" ] - 120 -> 118 [ label = "" ] - 119 -> 20 [ label = "" ] - 119 -> 120 [ label = "" ] - 107 -> 21 [ label = "" ] - 172 -> 22 [ label = "" ] - 172 -> 200 [ label = "" ] - 200 -> 22 [ label = "" ] - 200 -> 118 [ label = "" ] - 173 -> 23 [ label = "" ] - 173 -> 201 [ label = "" ] - 201 -> 23 [ label = "" ] - 201 -> 118 [ label = "" ] - 201 -> 120 [ label = "" ] - 133 -> 24 [ label = "" ] - 146 -> 25 [ label = "" ] - 146 -> 202 [ label = "" ] - 202 -> 25 [ label = "" ] - 202 -> 122 [ label = "" ] - 145 -> 26 [ label = "" ] - 145 -> 203 [ label = "" ] - 203 -> 26 [ label = "" ] - 203 -> 123 [ label = "" ] - 203 -> 122 [ label = "" ] - 123 -> 27 [ label = "" ] - 123 -> 204 [ label = "" ] - 123 -> 122 [ label = "" ] - 204 -> 27 [ label = "" ] - 122 -> 28 [ label = "" ] - 147 -> 28 [ label = "" ] - 147 -> 122 [ label = "" ] - 162 -> 29 [ label = "" ] - 162 -> 205 [ label = "" ] - 205 -> 29 [ label = "" ] - 130 -> 30 [ label = "" ] - 127 -> 31 [ label = "" ] - 144 -> 34 [ label = "" ] - 109 -> 35 [ label = "" ] - 109 -> 206 [ label = "" ] - 206 -> 35 [ label = "" ] - 206 -> 38 [ label = "" ] - 108 -> 35 [ label = "" ] - 108 -> 127 [ label = "" ] - 108 -> 128 [ label = "" ] - 96 -> 35 [ label = "" ] - 96 -> 207 [ label = "" ] - 207 -> 35 [ label = "" ] - 129 -> 36 [ label = "" ] - 134 -> 36 [ label = "" ] - 134 -> 1 [ label = "" ] - 132 -> 37 [ label = "" ] - 135 -> 38 [ label = "" ] - 175 -> 38 [ label = "" ] - 175 -> 208 [ label = "" ] - 208 -> 38 [ label = "" ] - 208 -> 67 [ label = "" ] - 121 -> 40 [ label = "" ] - 121 -> 209 [ label = "" ] - 209 -> 40 [ label = "" ] - 209 -> 210 [ label = "" ] - 209 -> 130 [ label = "" ] - 210 -> 40 [ label = "" ] - 150 -> 43 [ label = "" ] - 103 -> 43 [ label = "" ] - 103 -> 211 [ label = "" ] - 211 -> 43 [ label = "" ] - 152 -> 44 [ label = "" ] - 151 -> 44 [ label = "" ] - 180 -> 46 [ label = "" ] - 136 -> 47 [ label = "" ] - 124 -> 48 [ label = "" ] - 176 -> 50 [ label = "" ] - 176 -> 212 [ label = "" ] - 176 -> 213 [ label = "" ] - 176 -> 214 [ label = "" ] - 214 -> 50 [ label = "" ] - 214 -> 36 [ label = "" ] - 213 -> 50 [ label = "" ] - 213 -> 38 [ label = "" ] - 212 -> 50 [ label = "" ] - 212 -> 24 [ label = "" ] - 174 -> 50 [ label = "" ] - 174 -> 215 [ label = "" ] - 174 -> 216 [ label = "" ] - 174 -> 165 [ label = "" ] - 174 -> 217 [ label = "" ] - 174 -> 218 [ label = "" ] - 218 -> 50 [ label = "" ] - 218 -> 216 [ label = "" ] - 217 -> 50 [ label = "" ] - 216 -> 50 [ label = "" ] - 215 -> 50 [ label = "" ] - 215 -> 176 [ label = "" ] - 215 -> 166 [ label = "" ] - 215 -> 135 [ label = "" ] - 215 -> 133 [ label = "" ] - 166 -> 50 [ label = "" ] - 166 -> 136 [ label = "" ] - 164 -> 50 [ label = "" ] - 165 -> 50 [ label = "" ] - 167 -> 51 [ label = "" ] - 167 -> 219 [ label = "" ] - 219 -> 51 [ label = "" ] - 219 -> 97 [ label = "" ] - 97 -> 51 [ label = "" ] - 97 -> 220 [ label = "" ] - 220 -> 51 [ label = "" ] - 143 -> 54 [ label = "" ] - 142 -> 54 [ label = "" ] - 137 -> 55 [ label = "" ] - 159 -> 55 [ label = "" ] - 159 -> 137 [ label = "" ] + 88 -> 98 [ label = "" ] + 88 -> 112 [ label = "" ] + 88 -> 43 [ label = " 'cfg(target_arch = \"x86_64\")'" ] + 88 -> 47 [ label = "" ] + 88 -> 168 [ label = "" ] + 88 -> 169 [ label = "" ] + 88 -> 170 [ label = "" ] + 88 -> 66 [ label = "" ] + 88 -> 182 [ label = " 'cfg(target_os = \"linux\")'" ] + 88 -> 183 [ label = " 'cfg(target_os = \"linux\")'" ] + 88 -> 100 [ label = "" ] + 88 -> 117 [ label = "" ] + 88 -> 76 [ label = "" ] + 88 -> 77 [ label = "" ] + 88 -> 87 [ label = "" ] + 88 -> 90 [ label = "" ] + 88 -> 157 [ label = " 'cfg(target_os = \"windows\")'" ] + 88 -> 174 [ label = " 'cfg(target_os = \"windows\")'" ] + 89 -> 171 [ label = "" ] + 90 -> 135 [ label = "" ] + 90 -> 11 [ label = "(build)" ] + 90 -> 12 [ label = "" ] + 90 -> 40 [ label = "" ] + 90 -> 45 [ label = "" ] + 90 -> 47 [ label = "" ] + 90 -> 184 [ label = " 'cfg(target_os = \"macos\")'" ] + 90 -> 128 [ label = "" ] + 90 -> 55 [ label = "" ] + 90 -> 185 [ label = "" ] + 90 -> 182 [ label = " 'cfg(unix)'" ] + 90 -> 186 [ label = " 'cfg(unix)'" ] + 90 -> 77 [ label = "" ] + 90 -> 85 [ label = "" ] + 90 -> 87 [ label = "" ] + 90 -> 187 [ label = "" ] + 90 -> 157 [ label = " 'cfg(target_os = \"windows\")'" ] + 90 -> 188 [ label = " 'cfg(target_os = \"windows\")'" ] + 90 -> 189 [ label = " 'cfg(target_os = \"windows\")'" ] + 90 -> 174 [ label = " 'cfg(target_os = \"windows\")'" ] + 90 -> 190 [ label = " 'cfg(target_os = \"windows\")'" ] + 90 -> 191 [ label = " 'cfg(target_os = \"windows\")'" ] + 90 -> 192 [ label = " 'cfg(target_os = \"windows\")'" ] + 91 -> 110 [ label = "" ] + 91 -> 100 [ label = "" ] + 91 -> 117 [ label = "" ] + 91 -> 77 [ label = "" ] + 91 -> 83 [ label = "" ] + 92 -> 93 [ label = " 'aarch64-pc-windows-msvc'" ] + 92 -> 93 [ label = " 'aarch64-uwp-windows-msvc'" ] + 92 -> 94 [ label = " 'i686-pc-windows-gnu'" ] + 92 -> 94 [ label = " 'i686-uwp-windows-gnu'" ] + 92 -> 95 [ label = " 'i686-pc-windows-msvc'" ] + 92 -> 95 [ label = " 'i686-uwp-windows-msvc'" ] + 92 -> 96 [ label = " 'x86_64-pc-windows-gnu'" ] + 92 -> 96 [ label = " 'x86_64-uwp-windows-gnu'" ] + 92 -> 97 [ label = " 'x86_64-pc-windows-msvc'" ] + 92 -> 97 [ label = " 'x86_64-uwp-windows-msvc'" ] + 135 -> 2 [ label = "" ] + 135 -> 193 [ label = "" ] + 193 -> 2 [ label = "" ] + 108 -> 3 [ label = "" ] + 108 -> 194 [ label = "" ] + 194 -> 3 [ label = "" ] + 153 -> 6 [ label = "" ] + 109 -> 9 [ label = "" ] + 129 -> 10 [ label = "" ] + 129 -> 195 [ label = "" ] + 195 -> 10 [ label = "" ] + 101 -> 13 [ label = "" ] + 101 -> 196 [ label = "" ] + 196 -> 13 [ label = "" ] + 196 -> 106 [ label = "" ] + 181 -> 14 [ label = "" ] + 181 -> 197 [ label = "" ] + 197 -> 14 [ label = "" ] + 122 -> 17 [ label = "" ] + 175 -> 17 [ label = "" ] + 175 -> 198 [ label = "" ] + 175 -> 199 [ label = "" ] + 175 -> 200 [ label = "" ] + 200 -> 17 [ label = "" ] + 200 -> 71 [ label = "" ] + 199 -> 17 [ label = "" ] + 199 -> 5 [ label = "" ] + 198 -> 17 [ label = "" ] + 198 -> 201 [ label = "" ] + 198 -> 110 [ label = "" ] + 198 -> 116 [ label = "" ] + 198 -> 120 [ label = "" ] + 201 -> 17 [ label = "" ] + 201 -> 69 [ label = "" ] + 121 -> 17 [ label = "" ] + 121 -> 122 [ label = "" ] + 121 -> 202 [ label = "" ] + 202 -> 17 [ label = "" ] + 202 -> 203 [ label = "" ] + 203 -> 17 [ label = "" ] + 203 -> 37 [ label = "" ] + 110 -> 20 [ label = "" ] + 110 -> 204 [ label = "" ] + 204 -> 20 [ label = "" ] + 204 -> 69 [ label = "" ] + 124 -> 21 [ label = "" ] + 124 -> 122 [ label = "" ] + 123 -> 21 [ label = "" ] + 123 -> 124 [ label = "" ] + 111 -> 22 [ label = "" ] + 176 -> 23 [ label = "" ] + 176 -> 205 [ label = "" ] + 205 -> 23 [ label = "" ] + 205 -> 122 [ label = "" ] + 177 -> 24 [ label = "" ] + 177 -> 206 [ label = "" ] + 206 -> 24 [ label = "" ] + 206 -> 122 [ label = "" ] + 206 -> 124 [ label = "" ] + 137 -> 25 [ label = "" ] + 150 -> 26 [ label = "" ] + 150 -> 207 [ label = "" ] + 207 -> 26 [ label = "" ] + 207 -> 126 [ label = "" ] + 149 -> 27 [ label = "" ] + 149 -> 208 [ label = "" ] + 208 -> 27 [ label = "" ] + 208 -> 127 [ label = "" ] + 208 -> 126 [ label = "" ] + 127 -> 28 [ label = "" ] + 127 -> 209 [ label = "" ] + 127 -> 126 [ label = "" ] + 209 -> 28 [ label = "" ] + 126 -> 29 [ label = "" ] + 151 -> 29 [ label = "" ] + 151 -> 126 [ label = "" ] + 106 -> 30 [ label = "" ] + 166 -> 31 [ label = "" ] + 166 -> 210 [ label = "" ] + 210 -> 31 [ label = "" ] + 134 -> 32 [ label = "" ] + 131 -> 33 [ label = "" ] + 148 -> 36 [ label = "" ] + 113 -> 37 [ label = "" ] + 113 -> 211 [ label = "" ] + 211 -> 37 [ label = "" ] + 211 -> 40 [ label = "" ] + 112 -> 37 [ label = "" ] + 112 -> 131 [ label = "" ] + 112 -> 132 [ label = "" ] + 98 -> 37 [ label = "" ] + 98 -> 212 [ label = "" ] + 212 -> 37 [ label = "" ] + 133 -> 38 [ label = "" ] + 138 -> 38 [ label = "" ] + 138 -> 1 [ label = "" ] + 136 -> 39 [ label = "" ] + 139 -> 40 [ label = "" ] + 179 -> 40 [ label = "" ] + 179 -> 213 [ label = "" ] + 213 -> 40 [ label = "" ] + 213 -> 69 [ label = "" ] + 125 -> 42 [ label = "" ] + 125 -> 214 [ label = "" ] + 214 -> 42 [ label = "" ] + 214 -> 215 [ label = "" ] + 214 -> 134 [ label = "" ] + 215 -> 42 [ label = "" ] + 154 -> 45 [ label = "" ] + 107 -> 45 [ label = "" ] + 107 -> 216 [ label = "" ] + 216 -> 45 [ label = "" ] + 156 -> 46 [ label = "" ] + 155 -> 46 [ label = "" ] + 184 -> 48 [ label = "" ] + 140 -> 49 [ label = "" ] + 128 -> 50 [ label = "" ] + 180 -> 52 [ label = "" ] + 180 -> 217 [ label = "" ] + 180 -> 218 [ label = "" ] + 180 -> 219 [ label = "" ] + 219 -> 52 [ label = "" ] + 219 -> 38 [ label = "" ] + 218 -> 52 [ label = "" ] + 218 -> 40 [ label = "" ] + 217 -> 52 [ label = "" ] + 217 -> 25 [ label = "" ] + 178 -> 52 [ label = "" ] + 178 -> 220 [ label = "" ] + 178 -> 221 [ label = "" ] + 178 -> 169 [ label = "" ] + 178 -> 222 [ label = "" ] + 178 -> 223 [ label = "" ] + 223 -> 52 [ label = "" ] + 223 -> 221 [ label = "" ] + 222 -> 52 [ label = "" ] + 221 -> 52 [ label = "" ] + 220 -> 52 [ label = "" ] + 220 -> 180 [ label = "" ] + 220 -> 170 [ label = "" ] + 220 -> 139 [ label = "" ] + 220 -> 137 [ label = "" ] + 170 -> 52 [ label = "" ] + 170 -> 140 [ label = "" ] + 168 -> 52 [ label = "" ] + 169 -> 52 [ label = "" ] + 171 -> 53 [ label = "" ] + 171 -> 224 [ label = "" ] + 224 -> 53 [ label = "" ] + 224 -> 99 [ label = "" ] + 99 -> 53 [ label = "" ] + 99 -> 225 [ label = "" ] + 225 -> 53 [ label = "" ] + 147 -> 56 [ label = "" ] + 146 -> 56 [ label = "" ] + 141 -> 57 [ label = "" ] 163 -> 57 [ label = "" ] - 163 -> 137 [ label = "" ] - 160 -> 57 [ label = "" ] - 160 -> 163 [ label = "" ] - 181 -> 58 [ label = "" ] - 181 -> 221 [ label = "" ] - 181 -> 222 [ label = "" ] - 222 -> 58 [ label = "" ] - 222 -> 223 [ label = "" ] - 223 -> 58 [ label = "" ] - 223 -> 59 [ label = "" ] - 221 -> 58 [ label = "" ] - 221 -> 141 [ label = "" ] - 221 -> 138 [ label = "" ] - 221 -> 224 [ label = "" ] - 221 -> 225 [ label = "" ] - 221 -> 226 [ label = "" ] - 226 -> 58 [ label = "" ] - 226 -> 43 [ label = "" ] - 225 -> 58 [ label = "" ] - 225 -> 140 [ label = "" ] - 224 -> 58 [ label = "" ] - 224 -> 139 [ label = "" ] - 138 -> 59 [ label = "" ] - 138 -> 143 [ label = "" ] - 141 -> 60 [ label = "" ] - 141 -> 139 [ label = "" ] - 141 -> 140 [ label = "" ] - 141 -> 144 [ label = "" ] - 140 -> 60 [ label = "" ] - 140 -> 34 [ label = "" ] - 139 -> 60 [ label = "" ] - 112 -> 63 [ label = "" ] - 112 -> 227 [ label = "" ] - 227 -> 63 [ label = "" ] - 227 -> 67 [ label = "" ] - 110 -> 63 [ label = "" ] - 111 -> 63 [ label = "" ] - 179 -> 65 [ label = "" ] - 182 -> 65 [ label = "" ] - 178 -> 65 [ label = "" ] - 178 -> 228 [ label = "" ] - 178 -> 229 [ label = "" ] - 229 -> 65 [ label = "" ] - 229 -> 230 [ label = "" ] - 230 -> 65 [ label = "" ] - 230 -> 43 [ label = "" ] - 228 -> 65 [ label = "" ] - 228 -> 231 [ label = "" ] - 231 -> 65 [ label = "" ] - 231 -> 39 [ label = "" ] - 113 -> 67 [ label = "" ] - 113 -> 232 [ label = "" ] - 232 -> 67 [ label = "" ] - 232 -> 68 [ label = "" ] - 98 -> 67 [ label = "" ] - 98 -> 233 [ label = "" ] + 163 -> 141 [ label = "" ] + 167 -> 59 [ label = "" ] + 167 -> 141 [ label = "" ] + 164 -> 59 [ label = "" ] + 164 -> 167 [ label = "" ] + 185 -> 60 [ label = "" ] + 185 -> 226 [ label = "" ] + 185 -> 227 [ label = "" ] + 227 -> 60 [ label = "" ] + 227 -> 228 [ label = "" ] + 228 -> 60 [ label = "" ] + 228 -> 61 [ label = "" ] + 226 -> 60 [ label = "" ] + 226 -> 145 [ label = "" ] + 226 -> 142 [ label = "" ] + 226 -> 229 [ label = "" ] + 226 -> 230 [ label = "" ] + 226 -> 231 [ label = "" ] + 231 -> 60 [ label = "" ] + 231 -> 45 [ label = "" ] + 230 -> 60 [ label = "" ] + 230 -> 144 [ label = "" ] + 229 -> 60 [ label = "" ] + 229 -> 143 [ label = "" ] + 142 -> 61 [ label = "" ] + 142 -> 147 [ label = "" ] + 145 -> 62 [ label = "" ] + 145 -> 143 [ label = "" ] + 145 -> 144 [ label = "" ] + 145 -> 148 [ label = "" ] + 144 -> 62 [ label = "" ] + 144 -> 36 [ label = "" ] + 143 -> 62 [ label = "" ] + 116 -> 65 [ label = "" ] + 116 -> 232 [ label = "" ] + 232 -> 65 [ label = "" ] + 232 -> 69 [ label = "" ] + 114 -> 65 [ label = "" ] + 115 -> 65 [ label = "" ] + 183 -> 67 [ label = "" ] + 186 -> 67 [ label = "" ] + 182 -> 67 [ label = "" ] + 182 -> 233 [ label = "" ] + 182 -> 234 [ label = "" ] + 234 -> 67 [ label = "" ] + 234 -> 235 [ label = "" ] + 235 -> 67 [ label = "" ] + 235 -> 45 [ label = "" ] 233 -> 67 [ label = "" ] - 158 -> 68 [ label = "" ] - 114 -> 69 [ label = "" ] - 114 -> 234 [ label = "" ] - 234 -> 69 [ label = "" ] - 234 -> 162 [ label = "" ] - 148 -> 70 [ label = "" ] - 148 -> 235 [ label = "" ] - 235 -> 70 [ label = "" ] - 115 -> 71 [ label = "" ] - 116 -> 71 [ label = "" ] - 116 -> 67 [ label = "" ] - 128 -> 72 [ label = "" ] - 128 -> 236 [ label = "" ] - 236 -> 72 [ label = "" ] - 161 -> 73 [ label = "" ] - 161 -> 237 [ label = "" ] - 161 -> 238 [ label = "" ] - 161 -> 239 [ label = "" ] - 161 -> 240 [ label = "" ] - 161 -> 241 [ label = "" ] - 241 -> 73 [ label = "" ] - 241 -> 137 [ label = "" ] - 241 -> 163 [ label = "" ] - 240 -> 73 [ label = "" ] - 239 -> 73 [ label = "" ] - 239 -> 242 [ label = "" ] - 242 -> 73 [ label = "" ] - 242 -> 57 [ label = "" ] - 238 -> 73 [ label = "" ] - 237 -> 73 [ label = "" ] - 126 -> 80 [ label = "" ] - 126 -> 243 [ label = "" ] - 243 -> 80 [ label = "" ] - 102 -> 82 [ label = "" ] - 102 -> 169 [ label = "" ] - 101 -> 82 [ label = "" ] - 101 -> 61 [ label = "" ] - 100 -> 82 [ label = "" ] - 99 -> 82 [ label = "" ] - 99 -> 84 [ label = "" ] - 168 -> 84 [ label = "" ] - 168 -> 171 [ label = "" ] - 169 -> 86 [ label = "" ] - 169 -> 244 [ label = "" ] - 244 -> 86 [ label = "" ] - 244 -> 41 [ label = "" ] - 183 -> 87 [ label = "" ] - 183 -> 245 [ label = "" ] - 245 -> 87 [ label = "" ] - 245 -> 51 [ label = "" ] - 153 -> 90 [ label = "" ] - 157 -> 90 [ label = "" ] - 157 -> 246 [ label = "" ] - 246 -> 90 [ label = "" ] - 246 -> 247 [ label = "" ] - 247 -> 90 [ label = "" ] - 186 -> 90 [ label = "" ] - 186 -> 246 [ label = "" ] - 185 -> 90 [ label = "" ] - 185 -> 246 [ label = "" ] - 184 -> 90 [ label = "" ] - 184 -> 246 [ label = "" ] - 170 -> 90 [ label = "" ] - 170 -> 248 [ label = "" ] - 248 -> 90 [ label = "" ] - 248 -> 246 [ label = "" ] - 187 -> 90 [ label = "" ] - 187 -> 249 [ label = "" ] - 249 -> 90 [ label = "" ] - 249 -> 247 [ label = "" ] - 188 -> 90 [ label = "" ] - 188 -> 247 [ label = "" ] - 155 -> 90 [ label = "" ] - 155 -> 250 [ label = "" ] - 250 -> 90 [ label = "" ] - 250 -> 247 [ label = "" ] - 156 -> 90 [ label = "" ] - 156 -> 251 [ label = "" ] - 251 -> 90 [ label = "" ] - 251 -> 247 [ label = "" ] - 154 -> 90 [ label = "" ] - 154 -> 247 [ label = "" ] + 233 -> 236 [ label = "" ] + 236 -> 67 [ label = "" ] + 236 -> 41 [ label = "" ] + 117 -> 69 [ label = "" ] + 117 -> 237 [ label = "" ] + 237 -> 69 [ label = "" ] + 237 -> 70 [ label = "" ] + 100 -> 69 [ label = "" ] + 100 -> 238 [ label = "" ] + 238 -> 69 [ label = "" ] + 162 -> 70 [ label = "" ] + 118 -> 71 [ label = "" ] + 118 -> 239 [ label = "" ] + 239 -> 71 [ label = "" ] + 239 -> 166 [ label = "" ] + 152 -> 72 [ label = "" ] + 152 -> 240 [ label = "" ] + 240 -> 72 [ label = "" ] + 119 -> 73 [ label = "" ] + 132 -> 74 [ label = "" ] + 132 -> 241 [ label = "" ] + 241 -> 74 [ label = "" ] + 165 -> 75 [ label = "" ] + 165 -> 242 [ label = "" ] + 165 -> 243 [ label = "" ] + 165 -> 244 [ label = "" ] + 165 -> 245 [ label = "" ] + 165 -> 246 [ label = "" ] + 246 -> 75 [ label = "" ] + 246 -> 141 [ label = "" ] + 246 -> 167 [ label = "" ] + 245 -> 75 [ label = "" ] + 244 -> 75 [ label = "" ] + 244 -> 247 [ label = "" ] + 247 -> 75 [ label = "" ] + 247 -> 59 [ label = "" ] + 243 -> 75 [ label = "" ] + 242 -> 75 [ label = "" ] + 130 -> 82 [ label = "" ] + 130 -> 248 [ label = "" ] + 248 -> 82 [ label = "" ] + 105 -> 84 [ label = "" ] + 105 -> 173 [ label = "" ] + 104 -> 84 [ label = "" ] + 104 -> 63 [ label = "" ] + 103 -> 84 [ label = "" ] + 102 -> 84 [ label = "" ] + 102 -> 86 [ label = "" ] + 172 -> 86 [ label = "" ] + 172 -> 175 [ label = "" ] + 173 -> 88 [ label = "" ] + 173 -> 249 [ label = "" ] + 249 -> 88 [ label = "" ] + 249 -> 43 [ label = "" ] + 187 -> 89 [ label = "" ] + 187 -> 250 [ label = "" ] + 250 -> 89 [ label = "" ] + 250 -> 53 [ label = "" ] + 157 -> 92 [ label = "" ] + 161 -> 92 [ label = "" ] + 161 -> 251 [ label = "" ] + 251 -> 92 [ label = "" ] + 251 -> 252 [ label = "" ] + 252 -> 92 [ label = "" ] + 190 -> 92 [ label = "" ] + 190 -> 251 [ label = "" ] + 189 -> 92 [ label = "" ] + 189 -> 251 [ label = "" ] + 188 -> 92 [ label = "" ] + 188 -> 251 [ label = "" ] + 174 -> 92 [ label = "" ] + 174 -> 253 [ label = "" ] + 253 -> 92 [ label = "" ] + 253 -> 251 [ label = "" ] + 191 -> 92 [ label = "" ] + 191 -> 254 [ label = "" ] + 254 -> 92 [ label = "" ] + 254 -> 252 [ label = "" ] + 192 -> 92 [ label = "" ] + 192 -> 252 [ label = "" ] + 159 -> 92 [ label = "" ] + 159 -> 255 [ label = "" ] + 255 -> 92 [ label = "" ] + 255 -> 252 [ label = "" ] + 160 -> 92 [ label = "" ] + 160 -> 256 [ label = "" ] + 256 -> 92 [ label = "" ] + 256 -> 252 [ label = "" ] + 158 -> 92 [ label = "" ] + 158 -> 252 [ label = "" ] }