diff --git a/crate_universe/src/context.rs b/crate_universe/src/context.rs index 2c2ec03c9a..1cbc00c306 100644 --- a/crate_universe/src/context.rs +++ b/crate_universe/src/context.rs @@ -26,25 +26,34 @@ pub(crate) use self::crate_context::*; #[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize)] pub(crate) struct Context { /// The collective checksum of all inputs to the context + #[serde(default, skip_serializing_if = "Option::is_none")] pub(crate) checksum: Option, - /// The collection of all crates that make up the dependency graph + /// The collection of all crates that make up the dependency graph. + // Always emitted; the rendering templates reference `context.crates` and + // expect the key to be present. pub(crate) crates: BTreeMap, /// A subset of only crates with binary targets + #[serde(default, skip_serializing_if = "BTreeSet::is_empty")] pub(crate) binary_crates: BTreeSet, /// A subset of workspace members mapping to their workspace - /// path relative to the workspace root + /// path relative to the workspace root. + // Always emitted; the rendering templates iterate `context.workspace_members` + // and expect the key to be present even when empty. pub(crate) workspace_members: BTreeMap, /// A mapping of `cfg` flags to platform triples supporting the configuration + #[serde(default)] pub(crate) conditions: BTreeMap>, /// A list of crates visible to any bazel module. + // Always emitted; the rendering templates iterate `context.direct_deps`. pub(crate) direct_deps: BTreeSet, /// A list of crates visible to this bazel module. + // Always emitted; the rendering templates iterate `context.direct_dev_deps`. pub(crate) direct_dev_deps: BTreeSet, /// A list of `[patch]` entries from the Cargo.lock file which were not used in the resolve. @@ -52,7 +61,7 @@ pub(crate) struct Context { // This prevents previous lockfiles (from before this field) from failing to parse with the current version of rules_rust. // After we've supported this (so serialised it in lockfiles) for a few versions, // we can remove the default fallback because existing lockfiles should have the key present. - #[serde(default)] + #[serde(default, skip_serializing_if = "BTreeSet::is_empty")] pub(crate) unused_patches: BTreeSet, } @@ -430,4 +439,82 @@ mod test { // The data should be identical assert_eq!(context, deserialized_context); } + + // Older cargo-bazel versions wrote every crate with the fully expanded + // form: `Select` as `{"common": [...], "selects": {}}`, `srcs` as a full + // `{"allow_empty": ..., "include": [...]}` object, explicit default + // `compile_data_glob: ["**"]`, `null` license/package_url, and a + // `common_attrs.version` copy of the parent version. New cargo-bazel + // versions must still read those verbose lockfiles losslessly (the extra + // fields that no longer exist in the schema are silently dropped by + // serde's default field handling). + #[test] + fn deserializes_legacy_verbose_lockfile() { + let legacy = r#"{ + "checksum": "d94d3a74aa0e73ed1c9b8bd803bb6ecaaeaf258f7c3a937d4783aaf5891b31b0", + "crates": { + "anyhow 1.0.69": { + "name": "anyhow", + "version": "1.0.69", + "package_url": null, + "repository": null, + "targets": [ + { + "Library": { + "crate_name": "anyhow", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": ["**/*.rs"] + } + } + } + ], + "library_target_name": "anyhow", + "common_attrs": { + "compile_data_glob": ["**"], + "crate_features": { + "common": ["default", "std"], + "selects": {} + }, + "deps": { + "common": [], + "selects": {} + }, + "edition": "2018", + "version": "1.0.69" + }, + "license": null, + "license_ids": [], + "license_file": null + } + }, + "binary_crates": [], + "workspace_members": {}, + "conditions": {}, + "direct_deps": [], + "direct_dev_deps": [] + }"#; + + let ctx: Context = serde_json::from_str(legacy).expect("legacy lockfile must parse"); + let krate = ctx + .crates + .get(&CrateId::new("anyhow".to_owned(), Version::new(1, 0, 69))) + .expect("anyhow crate should be present"); + + assert_eq!(krate.name, "anyhow"); + assert_eq!(krate.version, Version::new(1, 0, 69)); + assert_eq!(krate.library_target_name.as_deref(), Some("anyhow")); + assert_eq!(krate.common_attrs.edition, "2018"); + assert!(krate.common_attrs.compile_data_glob.contains("**")); + assert_eq!( + krate + .common_attrs + .crate_features + .values() + .into_iter() + .collect::>(), + BTreeSet::from(["default".to_owned(), "std".to_owned()]), + ); + } } diff --git a/crate_universe/src/context/crate_context.rs b/crate_universe/src/context/crate_context.rs index c94eaa4218..f64b61d48c 100644 --- a/crate_universe/src/context/crate_context.rs +++ b/crate_universe/src/context/crate_context.rs @@ -49,6 +49,10 @@ pub(crate) struct TargetAttributes { pub(crate) crate_root: Option, /// A glob pattern of all source files required by the target + #[serde( + default = "Glob::default_rust_srcs", + skip_serializing_if = "Glob::is_default_rust_srcs" + )] pub(crate) srcs: Glob, } @@ -89,6 +93,22 @@ impl Rule { } } +fn default_glob_all() -> BTreeSet { + BTreeSet::from(["**".to_owned()]) +} + +fn is_default_glob_all(value: &BTreeSet) -> bool { + *value == default_glob_all() +} + +fn default_build_script_compile_data_glob_excludes() -> BTreeSet { + BTreeSet::from(["**/*.rs".to_owned()]) +} + +fn is_default_build_script_compile_data_glob_excludes(value: &BTreeSet) -> bool { + *value == default_build_script_compile_data_glob_excludes() +} + /// A set of attributes common to most `rust_library`, `rust_proc_macro`, and other /// [core rules of `rules_rust`](https://bazelbuild.github.io/rules_rust/defs.html). #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] @@ -97,7 +117,10 @@ pub(crate) struct CommonAttributes { #[serde(skip_serializing_if = "Select::is_empty")] pub(crate) compile_data: Select>, - #[serde(skip_serializing_if = "BTreeSet::is_empty")] + #[serde( + default = "default_glob_all", + skip_serializing_if = "is_default_glob_all" + )] pub(crate) compile_data_glob: BTreeSet, #[serde(skip_serializing_if = "BTreeSet::is_empty")] @@ -147,8 +170,6 @@ pub(crate) struct CommonAttributes { #[serde(skip_serializing_if = "Select::is_empty")] pub(crate) rustc_flags: Select>, - pub(crate) version: String, - #[serde(skip_serializing_if = "Vec::is_empty")] pub(crate) tags: Vec, } @@ -158,7 +179,7 @@ impl Default for CommonAttributes { Self { compile_data: Default::default(), // Generated targets include all files in their package by default - compile_data_glob: BTreeSet::from(["**".to_owned()]), + compile_data_glob: default_glob_all(), compile_data_glob_excludes: Default::default(), crate_features: Default::default(), data: Default::default(), @@ -175,7 +196,6 @@ impl Default for CommonAttributes { rustc_env: Default::default(), rustc_env_files: Default::default(), rustc_flags: Default::default(), - version: Default::default(), tags: Default::default(), } } @@ -189,16 +209,25 @@ pub(crate) struct BuildScriptAttributes { #[serde(skip_serializing_if = "Select::is_empty")] pub(crate) compile_data: Select>, - #[serde(skip_serializing_if = "BTreeSet::is_empty")] + #[serde( + default = "default_glob_all", + skip_serializing_if = "is_default_glob_all" + )] pub(crate) compile_data_glob: BTreeSet, - #[serde(skip_serializing_if = "BTreeSet::is_empty")] + #[serde( + default = "default_build_script_compile_data_glob_excludes", + skip_serializing_if = "is_default_build_script_compile_data_glob_excludes" + )] pub(crate) compile_data_glob_excludes: BTreeSet, #[serde(skip_serializing_if = "Select::is_empty")] pub(crate) data: Select>, - #[serde(skip_serializing_if = "BTreeSet::is_empty")] + #[serde( + default = "default_glob_all", + skip_serializing_if = "is_default_glob_all" + )] pub(crate) data_glob: BTreeSet, #[serde(skip_serializing_if = "Select::is_empty")] @@ -276,11 +305,11 @@ impl Default for BuildScriptAttributes { compile_data: Default::default(), // The build script itself also has access to all // source files by default. - compile_data_glob: BTreeSet::from(["**".to_owned()]), - compile_data_glob_excludes: BTreeSet::from(["**/*.rs".to_owned()]), + compile_data_glob: default_glob_all(), + compile_data_glob_excludes: default_build_script_compile_data_glob_excludes(), data: Default::default(), // Build scripts include all sources by default - data_glob: BTreeSet::from(["**".to_owned()]), + data_glob: default_glob_all(), deps: Default::default(), extra_deps: Default::default(), link_deps: Default::default(), @@ -311,12 +340,15 @@ pub(crate) struct CrateContext { pub(crate) version: semver::Version, /// The package URL of the current crate - #[serde(default)] + #[serde(default, skip_serializing_if = "Option::is_none")] pub(crate) package_url: Option, /// Optional source annotations if they were discoverable in the /// lockfile. Workspace Members will not have source annotations and /// potentially others. + // Always emitted; rendering templates iterate `crate.repository` and + // Tera treats a missing variable inside `for`/attribute access as an + // error even when guarded by `{% if not ... %}`. #[serde(default)] pub(crate) repository: Option, @@ -326,7 +358,7 @@ pub(crate) struct CrateContext { /// The name of the crate's root library target. This is the target that a dependent /// would get if they were to depend on `{crate_name}`. - #[serde(default)] + #[serde(default, skip_serializing_if = "Option::is_none")] pub(crate) library_target_name: Option, /// A set of attributes common to most [Rule] types or target types. @@ -340,15 +372,15 @@ pub(crate) struct CrateContext { pub(crate) build_script_attrs: Option, /// The license used by the crate - #[serde(default)] + #[serde(default, skip_serializing_if = "Option::is_none")] pub(crate) license: Option, /// The SPDX licence IDs - /// #[serde(default)] + #[serde(default, skip_serializing_if = "BTreeSet::is_empty")] pub(crate) license_ids: BTreeSet, /// The license file - #[serde(default)] + #[serde(default, skip_serializing_if = "Option::is_none")] pub(crate) license_file: Option, /// Additional text to add to the generated BUILD file. @@ -434,7 +466,12 @@ impl CrateContext { }) .unwrap_or_default(); - // Gather all "common" attributes + // Gather all "common" attributes. + // + // Note: `version` is intentionally not populated here — the crate + // version is already captured on the parent `CrateContext` and is + // re-derived at render time. Keeping this field empty elides it from + // the serialized lockfile (see `CommonAttributes::version`). let mut common_attrs = CommonAttributes { crate_features, deps, @@ -442,7 +479,6 @@ impl CrateContext { edition: package.edition.as_str().to_string(), proc_macro_deps, proc_macro_deps_dev, - version: package.version.to_string(), ..Default::default() }; diff --git a/crate_universe/src/lockfile.rs b/crate_universe/src/lockfile.rs index 1c4e1b308d..e741fa78fe 100644 --- a/crate_universe/src/lockfile.rs +++ b/crate_universe/src/lockfile.rs @@ -37,7 +37,9 @@ pub(crate) fn lock_context( /// Write a [crate::context::Context] to disk pub(crate) fn write_lockfile(lockfile: Context, path: &Path, dry_run: bool) -> Result<()> { - let content = serde_json::to_string_pretty(&lockfile)?; + let mut value = serde_json::to_value(&lockfile)?; + compact_lockfile_value(&mut value); + let content = serde_json::to_string_pretty(&value)?; if dry_run { println!("{content:#?}"); @@ -53,6 +55,49 @@ pub(crate) fn write_lockfile(lockfile: Context, path: &Path, dry_run: bool) -> R Ok(()) } +/// Recursively rewrite `{"common": X, "selects": {}}` patterns in a lockfile +/// JSON value to just `X`. +/// +/// [`crate::select::Select`] always serializes to the verbose two-field shape +/// because the Tera-based rendering templates (see +/// `src/rendering/templates/`) index `deps_set.common` / `deps_set.selects` +/// directly on a `serde_json::Value` and would break if handed a bare array. +/// The on-disk lockfile has no such consumer — its readers all go through +/// `Select`'s own `Deserialize` impl, which accepts both shapes — so we +/// collapse the empty-`selects` case here for a substantial size win. The +/// verbose shape is preserved when `selects` is non-empty because that shape +/// is meaningful (multiple platform-specific values). +pub(crate) fn compact_lockfile_value(value: &mut serde_json::Value) { + match value { + serde_json::Value::Object(map) => { + // Only collapse when the object is exactly `{"common": _, "selects": {}}`. + // Extra keys (or a missing key) mean this isn't a `Select` and we + // must leave it alone. + let is_empty_select = map.len() == 2 + && map.contains_key("common") + && map + .get("selects") + .and_then(|s| s.as_object()) + .is_some_and(|s| s.is_empty()); + if is_empty_select { + let mut common = map.remove("common").unwrap(); + compact_lockfile_value(&mut common); + *value = common; + } else { + for v in map.values_mut() { + compact_lockfile_value(v); + } + } + } + serde_json::Value::Array(items) => { + for item in items { + compact_lockfile_value(item); + } + } + _ => {} + } +} + #[derive(Debug, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Clone)] pub(crate) struct Digest(String); @@ -260,7 +305,7 @@ mod test { ); assert_eq!( - Digest("caafd4eaa60b599509522968ce17d6ba07b8118b767b7dddb00bef8d5ddba7fa".to_owned()), + Digest("35fcd7714d7f78be0f9dd3342382bfe8607603fba569d0d6838170acbffb243a".to_owned()), digest, ); } @@ -305,7 +350,7 @@ mod test { ); assert_eq!( - Digest("c395b0c5bed8470775b13399a6e8ec43af4abd4aa104ebc81297a286e449fc23".to_owned()), + Digest("e4a1a5a57826e5e57fb5bb6b5887033a45739027af7b53e2315575298be1a073".to_owned()), digest, ); } @@ -336,7 +381,7 @@ mod test { ); assert_eq!( - Digest("3288cda3c2194f5ca7f1929b74bd13f36eb624e859d77b143d762c60631d700d".to_owned()), + Digest("ea05a81b08047c8e54bffb97226b0794d76b264c3bf3d9d7bf5f39185556fd6c".to_owned()), digest, ); } @@ -385,7 +430,7 @@ mod test { ); assert_eq!( - Digest("ccc875599ade8873ba48496875d29f08772710651b9bf6d428a97f45a559aa2e".to_owned()), + Digest("9439a328b690942102d488db7a83c566c3e8b70e2b891f823e797e257a79c672".to_owned()), digest, ); } @@ -442,4 +487,62 @@ mod test { "Digests should be identical regardless of CRLF vs LF line endings in cargo_config" ); } + + #[test] + fn compact_collapses_empty_selects() { + let mut value = serde_json::json!({ + "crates": { + "anyhow 1.0.69": { + "common_attrs": { + "crate_features": { + "common": ["default", "std"], + "selects": {} + }, + "deps": { + "common": [{"id": "cfg-if 1.0.0", "target": "cfg_if"}], + "selects": { + "cfg(windows)": [{"id": "winapi 0.3.9", "target": "winapi"}] + } + } + } + } + } + }); + compact_lockfile_value(&mut value); + + assert_eq!( + value, + serde_json::json!({ + "crates": { + "anyhow 1.0.69": { + "common_attrs": { + // Empty `selects` collapsed to just the common list. + "crate_features": ["default", "std"], + // Non-empty `selects` preserved as-is. + "deps": { + "common": [{"id": "cfg-if 1.0.0", "target": "cfg_if"}], + "selects": { + "cfg(windows)": [{"id": "winapi 0.3.9", "target": "winapi"}] + } + } + } + } + } + }), + ); + } + + // Guard against false positives: unrelated `{common, selects}`-shaped objects + // with extra keys (or a non-object `selects`) must not be collapsed. + #[test] + fn compact_leaves_non_select_objects_alone() { + let original = serde_json::json!({ + "common": [1, 2], + "selects": {}, + "extra_key": "value" + }); + let mut value = original.clone(); + compact_lockfile_value(&mut value); + assert_eq!(value, original); + } } diff --git a/crate_universe/src/rendering.rs b/crate_universe/src/rendering.rs index 45f5547e8a..0f568a1734 100644 --- a/crate_universe/src/rendering.rs +++ b/crate_universe/src/rendering.rs @@ -806,7 +806,7 @@ impl Renderer { platforms, ), toolchains: attrs.map_or_else(BTreeSet::new, |attrs| attrs.toolchains.clone()), - version: krate.common_attrs.version.clone(), + version: krate.version.to_string(), visibility: BTreeSet::from(["//visibility:private".to_owned()]), }) } @@ -967,7 +967,7 @@ impl Renderer { .collect(), ) }), - version: krate.common_attrs.version.clone(), + version: krate.version.to_string(), }) } diff --git a/crate_universe/src/select.rs b/crate_universe/src/select.rs index d2662fc054..be5e4bec7d 100644 --- a/crate_universe/src/select.rs +++ b/crate_universe/src/select.rs @@ -4,6 +4,14 @@ use std::fmt::Debug; use serde::{de::DeserializeOwned, Deserialize, Deserializer, Serialize}; /// A wrapper around values where some values may be conditionally included (e.g. only on a certain platform), and others are unconditional. +/// +/// Always serialized in the verbose `{common, selects}` shape so consumers of +/// the intermediate `serde_json::Value` (notably the Tera-based rendering +/// templates in `src/rendering/templates/`) can access `.common` and `.selects` +/// uniformly. The on-disk lockfile is post-processed by +/// [`crate::lockfile::compact_lockfile_value`] to collapse `{common: X, +/// selects: {}}` down to just `X` for size — the `Deserialize` impl below +/// accepts both forms so no reader change is needed. #[derive(Debug, Clone, PartialEq, Eq, Serialize)] pub struct Select where @@ -482,3 +490,37 @@ where result } } + +#[cfg(test)] +mod test { + use super::*; + + // Direct serialization always uses the verbose {common, selects} shape so + // downstream `serde_json::Value` consumers (Tera templates) can look up + // `.common` / `.selects` uniformly. The on-disk lockfile is compacted + // separately by `crate::lockfile::compact_lockfile_value`. + #[test] + fn select_serializes_verbose_form() { + let mut sel: Select> = Select::new(); + sel.insert("default".to_owned(), None); + sel.insert("std".to_owned(), None); + + let json = serde_json::to_string(&sel).unwrap(); + assert_eq!(json, r#"{"common":["default","std"],"selects":{}}"#); + } + + // The compact form (a bare common value) that the lockfile writer + // produces must still deserialize into the same in-memory value as the + // verbose form. This guards against a regression that would break + // reads of lockfiles emitted by post-compaction writers. + #[test] + fn select_deserializes_compact_form() { + let verbose = r#"{"common":["default","std"],"selects":{}}"#; + let compact = r#"["default","std"]"#; + + let from_verbose: Select> = serde_json::from_str(verbose).unwrap(); + let from_compact: Select> = serde_json::from_str(compact).unwrap(); + + assert_eq!(from_verbose, from_compact); + } +} diff --git a/crate_universe/src/utils/starlark/glob.rs b/crate_universe/src/utils/starlark/glob.rs index eee50c30eb..b7f8a7c2c0 100644 --- a/crate_universe/src/utils/starlark/glob.rs +++ b/crate_universe/src/utils/starlark/glob.rs @@ -26,6 +26,22 @@ impl Glob { // Note: self.exclude intentionally not considered. A glob is empty if // there are no included globs. A glob cannot have only excludes. } + + /// True when this glob matches the `srcs` value generated for every Rust + /// target when sources aren't present on disk — the common + /// `crates_repository` / `crate.from_cargo` path. Elided from the lockfile + /// and reinstated on load via [`Glob::default_rust_srcs`]. The local-vendor + /// variant (`allow_empty = false`) is kept in the lockfile explicitly so + /// its "sources must exist" check is preserved. + pub(crate) fn is_default_rust_srcs(&self) -> bool { + self == &Glob::new_rust_srcs(true) + } + + /// The default `srcs` value used when a `TargetAttributes` entry is + /// deserialized without an explicit `srcs` field. + pub(crate) fn default_rust_srcs() -> Self { + Glob::new_rust_srcs(true) + } } impl Serialize for Glob { diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_none.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_none.json index 3ef174ca21..86dcd09247 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_none.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_none.json @@ -1,147 +1,98 @@ { - "checksum": "3e3fcf66309b79dd862d024b401189924392392563e6e2c26b86cb87e8629b09", + "checksum": "66c76bfa889b8e0eb53622508804b4e6f8f053f079effe92ee16e20cd7d6b56b", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_opt.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_opt.json index c7841b2772..5ad6888f02 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_opt.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_alias_annotation_opt.json @@ -1,148 +1,99 @@ { - "checksum": "18ba6d58a344cab03b2fb916caa02b4f668036f0a8ccbe15a3a37e715bdd827b", + "checksum": "36f8efa72134b8a6910486479e0c145fed172ae6521664b4f3abdcfa98d3feb6", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "alias_rule": "opt", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null, - "alias_rule": "opt" + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_custom_annotation_none.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_custom_annotation_none.json index aa92551128..d2ebd8ebde 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_custom_annotation_none.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_custom_annotation_none.json @@ -1,147 +1,98 @@ { - "checksum": "63df7f6886a12d37ab62c14405c6b4f3ef8b0766a421dcbaa18b39eaa7639308", + "checksum": "b4654221c9f83944f4aa9a51efbda3db399acb2841bc844244681f816df88794", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_dbg_annotation_fastbuild.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_dbg_annotation_fastbuild.json index 92af15e018..8edcaf13d2 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_dbg_annotation_fastbuild.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_dbg_annotation_fastbuild.json @@ -1,148 +1,99 @@ { - "checksum": "85241b8d747b0ac60e47daf548eb0c4bfcffa246452a1db84a874c5f436f244d", + "checksum": "2315e2bf607a156d23271b301129a25d4b51016667f261681655cabd6d08a2e3", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "alias_rule": "fastbuild", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null, - "alias_rule": "fastbuild" + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_alias.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_alias.json index 937767131c..555d4f7942 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_alias.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_alias.json @@ -1,148 +1,99 @@ { - "checksum": "705226d8a61b9d27f54bc30b1362ba4324e487943d7b7454098fbe45f39acb73", + "checksum": "61664c652b1946359a520a048b7af63572524e285a5a03df35aed52981f3a257", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "alias_rule": "alias", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null, - "alias_rule": "alias" + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_dbg.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_dbg.json index 52df3a8cbe..38be0d25b5 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_dbg.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_dbg.json @@ -1,148 +1,99 @@ { - "checksum": "d5f1a19286ffb5f30c2027730b1892c9f6957d3c9ad40e1ed282555fc51d3526", + "checksum": "aaae7fdcc9b7d27e70f33812fb6c366c474d25263c806fb5bcbe040f1103d044", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "alias_rule": "dbg", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null, - "alias_rule": "dbg" + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_none.json b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_none.json index de9c949a2b..8ffc9fb199 100644 --- a/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_none.json +++ b/crate_universe/tests/integration/alias_rule/cargo-bazel-lock_global_opt_annotation_none.json @@ -1,147 +1,98 @@ { - "checksum": "79a06818fd9e39a391eb67fbaec4c505857146f72bfaa64b66cc9cba7b67ac3b", + "checksum": "2e555ca69dfbc409af10a709c42309bdd656e6b80895bdf25eae9ab9e2fe12a1", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "test_data_passing_crate" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", + "version": "0.0.1" + }, + "test_data_passing_crate 0.1.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "test_data_passing_crate 0.1.0", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "test_data_passing_crate" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "test_data_passing_crate 0.1.0": { + "library_target_name": "test_data_passing_crate", + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], "name": "test_data_passing_crate", - "version": "0.1.0", "package_url": "https://github.com/bazelbuild/rules_rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download", - "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286" + "sha256": "08c67aba3a29c3dc187eaf8080107404abfaee1ae893a02c43a362343ca73286", + "url": "https://static.crates.io/crates/test_data_passing_crate/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "test_data_passing_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "test_data_passing_crate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "test_data_passing_crate 0.1.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null + "version": "0.1.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "test_data_passing_crate 0.1.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/cargo_aliases/cargo-bazel-lock.json b/crate_universe/tests/integration/cargo_aliases/cargo-bazel-lock.json index 49a5557670..f14c44eb0e 100644 --- a/crate_universe/tests/integration/cargo_aliases/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/cargo_aliases/cargo-bazel-lock.json @@ -1,161 +1,138 @@ { - "checksum": "0e723880958059d0566ce8168ea93c314bd1c5d67efa8db55abe737b58f6c175", + "checksum": "559183309312402bba715b6787886a751a3d670f6cf1ff28e99d552ed5caab67", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(any())": [], + "cfg(target_os = \"hermit\")": [], + "cfg(target_os = \"wasi\")": [ + "wasm32-wasip1" + ], + "cfg(unix)": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(windows)": [ + "x86_64-pc-windows-msvc" + ], + "i686-pc-windows-gnu": [], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-gnu": [], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "aho-corasick 0.7.20": { + "common_attrs": { + "crate_features": [ + "default", + "std" + ], + "deps": [ + { + "id": "memchr 2.5.0", + "target": "memchr" + } + ], + "edition": "2018" + }, + "library_target_name": "aho_corasick", + "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", + "license_ids": [ + "MIT", + "Unlicense" + ], "name": "aho-corasick", - "version": "0.7.20", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/0.7.20/download", - "sha256": "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" + "sha256": "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac", + "url": "https://static.crates.io/crates/aho-corasick/0.7.20/download" } }, "targets": [ { "Library": { "crate_name": "aho_corasick", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "aho_corasick", + "version": "0.7.20" + }, + "aliases 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "alias": "pinned_log", + "id": "log 0.3.9", + "target": "log" + }, + { + "id": "log 0.4.14", + "target": "log" + }, + { + "alias": "pinned_names", + "id": "names 0.12.1-dev", + "target": "names" + }, + { + "id": "names 0.13.0", + "target": "names" + }, + { + "id": "serde_yaml 0.9.34+deprecated", + "target": "serde_yaml" + }, + { + "id": "value-bag 1.11.1", + "target": "value_bag" + } ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.5.0", - "target": "memchr" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.20" + "deps_dev": [ + { + "id": "env_logger 0.9.3", + "target": "env_logger" + } + ], + "edition": "2018" }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "aliases 0.1.0": { + "library_target_name": "aliases", "name": "aliases", - "version": "0.1.0", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "aliases", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "aliases", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "log 0.3.9", - "target": "log", - "alias": "pinned_log" - }, - { - "id": "log 0.4.14", - "target": "log" - }, - { - "id": "names 0.12.1-dev", - "target": "names", - "alias": "pinned_names" - }, - { - "id": "names 0.13.0", - "target": "names" - }, - { - "id": "serde_yaml 0.9.34+deprecated", - "target": "serde_yaml" - }, - { - "id": "value-bag 1.11.1", - "target": "value_bag" - } - ], - "selects": {} - }, - "deps_dev": { - "common": [ - { - "id": "env_logger 0.9.3", - "target": "env_logger" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.0" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.1.0" }, "atty 0.2.14": { - "name": "atty", - "version": "0.2.14", - "package_url": "https://github.com/softprops/atty", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/atty/0.2.14/download", - "sha256": "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "atty", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "atty", "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -179,504 +156,384 @@ ] } }, - "edition": "2015", - "version": "0.2.14" + "edition": "2015" }, + "library_target_name": "atty", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "name": "atty", + "package_url": "https://github.com/softprops/atty", + "repository": { + "Http": { + "sha256": "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8", + "url": "https://static.crates.io/crates/atty/0.2.14/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "atty", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.2.14" }, "autocfg 1.1.0": { + "common_attrs": { + "edition": "2015" + }, + "library_target_name": "autocfg", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "autocfg", - "version": "1.1.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.1.0/download", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", + "url": "https://static.crates.io/crates/autocfg/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "autocfg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "autocfg", + "version": "1.1.0" + }, + "bitflags 1.3.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "edition": "2015", - "version": "1.1.0" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "bitflags", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "bitflags 1.3.2": { "name": "bitflags", - "version": "1.3.2", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/1.3.2/download", - "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", + "url": "https://static.crates.io/crates/bitflags/1.3.2/download" } }, "targets": [ { "Library": { "crate_name": "bitflags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bitflags", + "version": "1.3.2" + }, + "cfg-if 1.0.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.3.2" + "edition": "2018" }, + "library_target_name": "cfg_if", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cfg-if 1.0.0": { "name": "cfg-if", - "version": "1.0.0", "package_url": "https://github.com/alexcrichton/cfg-if", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.0/download", - "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", + "url": "https://static.crates.io/crates/cfg-if/1.0.0/download" } }, "targets": [ { "Library": { "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cfg_if", + "version": "1.0.0" + }, + "clap 3.2.23": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "atty", + "clap_derive", + "color", + "default", + "derive", + "once_cell", + "std", + "strsim", + "suggestions", + "termcolor" + ], + "deps": [ + { + "id": "atty 0.2.14", + "target": "atty" + }, + { + "id": "bitflags 1.3.2", + "target": "bitflags" + }, + { + "id": "clap_lex 0.2.4", + "target": "clap_lex" + }, + { + "id": "indexmap 1.9.2", + "target": "indexmap" + }, + { + "id": "once_cell 1.17.1", + "target": "once_cell" + }, + { + "id": "strsim 0.10.0", + "target": "strsim" + }, + { + "id": "termcolor 1.2.0", + "target": "termcolor" + }, + { + "id": "textwrap 0.16.0", + "target": "textwrap" + } ], - "edition": "2018", - "version": "1.0.0" + "edition": "2021", + "proc_macro_deps": [ + { + "id": "clap_derive 3.2.18", + "target": "clap_derive" + } + ] }, - "license": "MIT/Apache-2.0", + "library_target_name": "clap", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap 3.2.23": { "name": "clap", - "version": "3.2.23", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/3.2.23/download", - "sha256": "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" + "sha256": "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5", + "url": "https://static.crates.io/crates/clap/3.2.23/download" } }, "targets": [ { "Library": { "crate_name": "clap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap", + "version": "3.2.23" + }, + "clap_derive 3.2.18": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "crate_features": { - "common": [ - "atty", - "clap_derive", - "color", - "default", - "derive", - "once_cell", - "std", - "strsim", - "suggestions", - "termcolor" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "atty 0.2.14", - "target": "atty" - }, - { - "id": "bitflags 1.3.2", - "target": "bitflags" - }, - { - "id": "clap_lex 0.2.4", - "target": "clap_lex" - }, - { - "id": "indexmap 1.9.2", - "target": "indexmap" - }, - { - "id": "once_cell 1.17.1", - "target": "once_cell" - }, - { - "id": "strsim 0.10.0", - "target": "strsim" - }, - { - "id": "termcolor 1.2.0", - "target": "termcolor" - }, - { - "id": "textwrap 0.16.0", - "target": "textwrap" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "clap_derive 3.2.18", - "target": "clap_derive" - } - ], - "selects": {} - }, - "version": "3.2.23" + "deps": [ + { + "id": "heck 0.4.1", + "target": "heck" + }, + { + "id": "proc-macro-error 1.0.4", + "target": "proc_macro_error" + }, + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } + ], + "edition": "2021" }, + "library_target_name": "clap_derive", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap_derive 3.2.18": { "name": "clap_derive", - "version": "3.2.18", "package_url": "https://github.com/clap-rs/clap/tree/master/clap_derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/3.2.18/download", - "sha256": "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" + "sha256": "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65", + "url": "https://static.crates.io/crates/clap_derive/3.2.18/download" } }, "targets": [ { "ProcMacro": { "crate_name": "clap_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap_derive", + "version": "3.2.18" + }, + "clap_lex 0.2.4": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "os_str_bytes 6.4.1", + "target": "os_str_bytes" + } ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "heck 0.4.1", - "target": "heck" - }, - { - "id": "proc-macro-error 1.0.4", - "target": "proc_macro_error" - }, - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.2.18" + "edition": "2021" }, + "library_target_name": "clap_lex", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap_lex 0.2.4": { "name": "clap_lex", - "version": "0.2.4", "package_url": "https://github.com/clap-rs/clap/tree/master/clap_lex", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.2.4/download", - "sha256": "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" + "sha256": "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5", + "url": "https://static.crates.io/crates/clap_lex/0.2.4/download" } }, "targets": [ { "Library": { "crate_name": "clap_lex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap_lex", + "version": "0.2.4" + }, + "env_logger 0.9.3": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "atty", + "default", + "humantime", + "regex", + "termcolor" + ], + "deps": [ + { + "id": "atty 0.2.14", + "target": "atty" + }, + { + "id": "humantime 2.1.0", + "target": "humantime" + }, + { + "id": "log 0.4.14", + "target": "log" + }, + { + "id": "regex 1.7.1", + "target": "regex" + }, + { + "id": "termcolor 1.2.0", + "target": "termcolor" + } ], - "deps": { - "common": [ - { - "id": "os_str_bytes 6.4.1", - "target": "os_str_bytes" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.4" + "edition": "2018" }, + "library_target_name": "env_logger", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "env_logger 0.9.3": { "name": "env_logger", - "version": "0.9.3", "package_url": "https://github.com/env-logger-rs/env_logger/", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.9.3/download", - "sha256": "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" + "sha256": "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7", + "url": "https://static.crates.io/crates/env_logger/0.9.3/download" } }, "targets": [ { "Library": { "crate_name": "env_logger", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "env_logger", + "version": "0.9.3" + }, + "equivalent 1.0.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "atty", - "default", - "humantime", - "regex", - "termcolor" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "atty 0.2.14", - "target": "atty" - }, - { - "id": "humantime 2.1.0", - "target": "humantime" - }, - { - "id": "log 0.4.14", - "target": "log" - }, - { - "id": "regex 1.7.1", - "target": "regex" - }, - { - "id": "termcolor 1.2.0", - "target": "termcolor" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.9.3" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "equivalent", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "equivalent 1.0.2": { "name": "equivalent", - "version": "1.0.2", "package_url": "https://github.com/indexmap-rs/equivalent", "repository": { "Http": { - "url": "https://static.crates.io/crates/equivalent/1.0.2/download", - "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f", + "url": "https://static.crates.io/crates/equivalent/1.0.2/download" } }, "targets": [ { "Library": { "crate_name": "equivalent", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "equivalent", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.0.2" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.0.2" }, "getrandom 0.2.8": { - "name": "getrandom", - "version": "0.2.8", - "package_url": "https://github.com/rust-random/getrandom", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.8/download", - "sha256": "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" - } - }, - "targets": [ - { - "Library": { - "crate_name": "getrandom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "getrandom", "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, "deps": { "common": [ { @@ -699,715 +556,532 @@ ] } }, - "edition": "2018", - "version": "0.2.8" + "edition": "2018" }, + "library_target_name": "getrandom", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "getrandom", + "package_url": "https://github.com/rust-random/getrandom", + "repository": { + "Http": { + "sha256": "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31", + "url": "https://static.crates.io/crates/getrandom/0.2.8/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "getrandom", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.2.8" }, "hashbrown 0.12.3": { + "common_attrs": { + "crate_features": [ + "raw" + ], + "edition": "2021" + }, + "library_target_name": "hashbrown", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "hashbrown", - "version": "0.12.3", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.12.3/download", - "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", + "url": "https://static.crates.io/crates/hashbrown/0.12.3/download" } }, "targets": [ { "Library": { "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hashbrown", + "version": "0.12.3" + }, + "hashbrown 0.15.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "raw" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.12.3" + "edition": "2021" }, + "library_target_name": "hashbrown", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "hashbrown 0.15.2": { "name": "hashbrown", - "version": "0.15.2", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.15.2/download", - "sha256": "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" + "sha256": "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289", + "url": "https://static.crates.io/crates/hashbrown/0.15.2/download" } }, "targets": [ { "Library": { "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hashbrown", + "version": "0.15.2" + }, + "heck 0.4.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "edition": "2021", - "version": "0.15.2" + "edition": "2018" }, + "library_target_name": "heck", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "heck 0.4.1": { "name": "heck", - "version": "0.4.1", "package_url": "https://github.com/withoutboats/heck", "repository": { "Http": { - "url": "https://static.crates.io/crates/heck/0.4.1/download", - "sha256": "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + "sha256": "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8", + "url": "https://static.crates.io/crates/heck/0.4.1/download" } }, "targets": [ { "Library": { "crate_name": "heck", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "heck", + "version": "0.4.1" + }, + "hermit-abi 0.1.19": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "libc 0.2.139", + "target": "libc" + } ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.1" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "hermit_abi", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "hermit-abi 0.1.19": { "name": "hermit-abi", - "version": "0.1.19", "package_url": "https://github.com/hermitcore/libhermit-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/hermit-abi/0.1.19/download", - "sha256": "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" + "sha256": "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", + "url": "https://static.crates.io/crates/hermit-abi/0.1.19/download" } }, "targets": [ { "Library": { "crate_name": "hermit_abi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hermit_abi", + "version": "0.1.19" + }, + "humantime 2.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.139", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.19" + "edition": "2018" }, + "library_target_name": "humantime", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "humantime 2.1.0": { "name": "humantime", - "version": "2.1.0", "package_url": "https://github.com/tailhook/humantime", "repository": { "Http": { - "url": "https://static.crates.io/crates/humantime/2.1.0/download", - "sha256": "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + "sha256": "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4", + "url": "https://static.crates.io/crates/humantime/2.1.0/download" } }, "targets": [ { "Library": { "crate_name": "humantime", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "humantime", + "version": "2.1.0" + }, + "indexmap 1.9.2": { + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "edition": "2018", - "version": "2.1.0" + "deps": [ + { + "id": "hashbrown 0.12.3", + "target": "hashbrown" + }, + { + "id": "indexmap 1.9.2", + "target": "build_script_build" + } + ], + "edition": "2021" }, - "license": "MIT/Apache-2.0", + "library_target_name": "indexmap", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 1.9.2": { "name": "indexmap", - "version": "1.9.2", "package_url": "https://github.com/bluss/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/1.9.2/download", - "sha256": "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" + "sha256": "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399", + "url": "https://static.crates.io/crates/indexmap/1.9.2/download" } }, "targets": [ { "Library": { "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "indexmap", + "version": "1.9.2" + }, + "indexmap 2.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "hashbrown 0.12.3", - "target": "hashbrown" - }, - { - "id": "indexmap 1.9.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.9.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "crate_features": [ + "default", + "std" + ], + "deps": [ + { + "id": "equivalent 1.0.2", + "target": "equivalent" + }, + { + "id": "hashbrown 0.15.2", + "target": "hashbrown" + } ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2021" }, + "library_target_name": "indexmap", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 2.7.1": { "name": "indexmap", - "version": "2.7.1", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.7.1/download", - "sha256": "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" + "sha256": "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652", + "url": "https://static.crates.io/crates/indexmap/2.7.1/download" } }, "targets": [ { "Library": { "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "indexmap", + "version": "2.7.1" + }, + "itoa 1.0.14": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "equivalent 1.0.2", - "target": "equivalent" - }, - { - "id": "hashbrown 0.15.2", - "target": "hashbrown" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.7.1" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "itoa", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "itoa 1.0.14": { "name": "itoa", - "version": "1.0.14", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.14/download", - "sha256": "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" + "sha256": "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674", + "url": "https://static.crates.io/crates/itoa/1.0.14/download" } }, "targets": [ { "Library": { "crate_name": "itoa", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "itoa", + "version": "1.0.14" + }, + "libc 0.2.139": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "libc 0.2.139", + "target": "build_script_build" + } ], - "edition": "2018", - "version": "1.0.14" + "edition": "2015" }, + "library_target_name": "libc", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "libc 0.2.139": { "name": "libc", - "version": "0.2.139", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.139/download", - "sha256": "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" + "sha256": "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79", + "url": "https://static.crates.io/crates/libc/0.2.139/download" } }, "targets": [ { "Library": { "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "libc", + "version": "0.2.139" + }, + "log 0.3.9": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.139", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.2.139" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "use_std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "log 0.4.14", + "target": "log" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "log", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "log 0.3.9": { "name": "log", - "version": "0.3.9", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.3.9/download", - "sha256": "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" + "sha256": "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b", + "url": "https://static.crates.io/crates/log/0.3.9/download" } }, "targets": [ { "Library": { "crate_name": "log", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "log", + "version": "0.3.9" + }, + "log 0.4.14": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "crate_features": { - "common": [ - "default", - "use_std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "log 0.4.14", - "target": "log" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.3.9" + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "log 0.4.14", + "target": "build_script_build" + } + ], + "edition": "2015" }, - "license": "MIT/Apache-2.0", + "library_target_name": "log", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "log 0.4.14": { "name": "log", - "version": "0.4.14", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.14/download", - "sha256": "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" + "sha256": "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710", + "url": "https://static.crates.io/crates/log/0.4.14/download" } }, "targets": [ { "Library": { "crate_name": "log", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "log", + "version": "0.4.14" + }, + "memchr 2.5.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "log 0.4.14", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.14" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "memchr 2.5.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "memchr", + "license": "Unlicense/MIT", + "license_file": "LICENSE-MIT", "license_ids": [ - "Apache-2.0", - "MIT" + "MIT", + "Unlicense" ], - "license_file": "LICENSE-APACHE" - }, - "memchr 2.5.0": { "name": "memchr", - "version": "2.5.0", "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/memchr/2.5.0/download", - "sha256": "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + "sha256": "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", + "url": "https://static.crates.io/crates/memchr/2.5.0/download" } }, "targets": [ { "Library": { "crate_name": "memchr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "memchr", + "version": "2.5.0" + }, + "names 0.12.1-dev": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.5.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.5.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_features": [ + "application", + "clap", + "default" + ], + "deps": [ + { + "id": "clap 3.2.23", + "target": "clap" + }, + { + "id": "names 0.12.1-dev", + "target": "build_script_build" + }, + { + "id": "rand 0.8.5", + "target": "rand" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "Unlicense/MIT", + "library_target_name": "names", + "license": "MIT", + "license_file": "LICENSE.txt", "license_ids": [ - "MIT", - "Unlicense" + "MIT" ], - "license_file": "LICENSE-MIT" - }, - "names 0.12.1-dev": { "name": "names", - "version": "0.12.1-dev", "package_url": "https://github.com/fnichol/names", "repository": { "Git": { - "remote": "https://github.com/fnichol/names.git", "commitish": { "Rev": "760516503b89ddc8bc2ab42d579d4566cfb1054f" }, + "remote": "https://github.com/fnichol/names.git", "shallow_since": "1646516410 -0700" } }, @@ -1415,678 +1089,401 @@ { "Library": { "crate_name": "names", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "names", + "version": "0.12.1-dev" + }, + "names 0.13.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "application", - "clap", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "clap 3.2.23", - "target": "clap" - }, - { - "id": "names 0.12.1-dev", - "target": "build_script_build" - }, - { - "id": "rand 0.8.5", - "target": "rand" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.12.1-dev" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_features": [ + "application", + "clap", + "default" + ], + "deps": [ + { + "id": "clap 3.2.23", + "target": "clap" + }, + { + "id": "names 0.13.0", + "target": "build_script_build" + }, + { + "id": "rand 0.8.5", + "target": "rand" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "names", "license": "MIT", + "license_file": "LICENSE.txt", "license_ids": [ "MIT" ], - "license_file": "LICENSE.txt" - }, - "names 0.13.0": { "name": "names", - "version": "0.13.0", "package_url": "https://github.com/fnichol/names", "repository": { "Http": { - "url": "https://static.crates.io/crates/names/0.13.0/download", - "sha256": "e7d66043b25d4a6cccb23619d10c19c25304b355a7dccd4a8e11423dd2382146" + "sha256": "e7d66043b25d4a6cccb23619d10c19c25304b355a7dccd4a8e11423dd2382146", + "url": "https://static.crates.io/crates/names/0.13.0/download" } }, "targets": [ { "Library": { "crate_name": "names", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "names", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "application", - "clap", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "clap 3.2.23", - "target": "clap" - }, - { - "id": "names 0.13.0", - "target": "build_script_build" - }, - { - "id": "rand 0.8.5", - "target": "rand" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.13.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "0.13.0" + }, + "once_cell 1.17.1": { + "common_attrs": { + "crate_features": [ + "alloc", + "default", + "race", + "std" ], - "data_glob": [ - "**" - ] + "edition": "2021" }, - "license": "MIT", + "library_target_name": "once_cell", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE.txt" - }, - "once_cell 1.17.1": { "name": "once_cell", - "version": "1.17.1", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.17.1/download", - "sha256": "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" + "sha256": "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3", + "url": "https://static.crates.io/crates/once_cell/1.17.1/download" } }, "targets": [ { "Library": { "crate_name": "once_cell", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "once_cell", + "version": "1.17.1" + }, + "os_str_bytes 6.4.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "raw_os_str" ], - "crate_features": { - "common": [ - "alloc", - "default", - "race", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.17.1" + "edition": "2021" }, + "library_target_name": "os_str_bytes", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "os_str_bytes 6.4.1": { "name": "os_str_bytes", - "version": "6.4.1", "package_url": "https://github.com/dylni/os_str_bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/os_str_bytes/6.4.1/download", - "sha256": "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" + "sha256": "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee", + "url": "https://static.crates.io/crates/os_str_bytes/6.4.1/download" } }, "targets": [ { "Library": { "crate_name": "os_str_bytes", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "os_str_bytes", + "version": "6.4.1" + }, + "ppv-lite86 0.2.17": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "simd", + "std" ], - "crate_features": { - "common": [ - "raw_os_str" - ], - "selects": {} - }, - "edition": "2021", - "version": "6.4.1" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "ppv_lite86", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "ppv-lite86 0.2.17": { "name": "ppv-lite86", - "version": "0.2.17", "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download", - "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de", + "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download" } }, "targets": [ { "Library": { "crate_name": "ppv_lite86", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ppv_lite86", + "version": "0.2.17" + }, + "proc-macro-error 1.0.4": { + "build_script_attrs": { + "deps": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "syn", + "syn-error" + ], + "deps": [ + { + "id": "proc-macro-error 1.0.4", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "crate_features": { - "common": [ - "simd", - "std" - ], - "selects": {} - }, "edition": "2018", - "version": "0.2.17" + "proc_macro_deps": [ + { + "id": "proc-macro-error-attr 1.0.4", + "target": "proc_macro_error_attr" + } + ] }, - "license": "MIT/Apache-2.0", + "library_target_name": "proc_macro_error", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro-error 1.0.4": { "name": "proc-macro-error", - "version": "1.0.4", "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-error/1.0.4/download", - "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" + "sha256": "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c", + "url": "https://static.crates.io/crates/proc-macro-error/1.0.4/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro_error", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "proc_macro_error", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "syn", - "syn-error" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro-error 1.0.4", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "proc-macro-error-attr 1.0.4", - "target": "proc_macro_error_attr" - } - ], - "selects": {} - }, - "version": "1.0.4" - }, + "version": "1.0.4" + }, + "proc-macro-error-attr 1.0.4": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ] + }, + "common_attrs": { + "deps": [ + { + "id": "proc-macro-error-attr 1.0.4", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + } ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } + "edition": "2018" }, + "library_target_name": "proc_macro_error_attr", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro-error-attr 1.0.4": { "name": "proc-macro-error-attr", - "version": "1.0.4", "package_url": "https://gitlab.com/CreepySkeleton/proc-macro-error", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-error-attr/1.0.4/download", - "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" + "sha256": "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869", + "url": "https://static.crates.io/crates/proc-macro-error-attr/1.0.4/download" } }, "targets": [ { "ProcMacro": { "crate_name": "proc_macro_error_attr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "proc_macro_error_attr", + "version": "1.0.4" + }, + "proc-macro2 1.0.93": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro-error-attr 1.0.4", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" + ], + "deps": [ + { + "id": "proc-macro2 1.0.93", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.6", + "target": "unicode_ident" + } ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } + "edition": "2021" }, + "library_target_name": "proc_macro2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.93": { "name": "proc-macro2", - "version": "1.0.93", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.93/download", - "sha256": "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" + "sha256": "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99", + "url": "https://static.crates.io/crates/proc-macro2/1.0.93/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "proc_macro2", + "version": "1.0.93" + }, + "quote 1.0.38": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.6", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.93" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "quote", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.38": { "name": "quote", - "version": "1.0.38", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.38/download", - "sha256": "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" + "sha256": "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc", + "url": "https://static.crates.io/crates/quote/1.0.38/download" } }, "targets": [ { "Library": { "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "quote", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.38" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.0.38" }, "rand 0.8.5": { - "name": "rand", - "version": "0.8.5", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand/0.8.5/download", - "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand", "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "getrandom", + "libc", + "rand_chacha", + "std", + "std_rng" ], - "crate_features": { - "common": [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "std", - "std_rng" - ], - "selects": {} - }, "deps": { "common": [ { @@ -2125,715 +1522,521 @@ ] } }, - "edition": "2018", - "version": "0.8.5" + "edition": "2018" }, + "library_target_name": "rand", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "rand", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", + "url": "https://static.crates.io/crates/rand/0.8.5/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.8.5" }, "rand_chacha 0.3.1": { + "common_attrs": { + "crate_features": [ + "std" + ], + "deps": [ + { + "id": "ppv-lite86 0.2.17", + "target": "ppv_lite86" + }, + { + "id": "rand_core 0.6.4", + "target": "rand_core" + } + ], + "edition": "2018" + }, + "library_target_name": "rand_chacha", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "rand_chacha", - "version": "0.3.1", "package_url": "https://github.com/rust-random/rand", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_chacha/0.3.1/download", - "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" + "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", + "url": "https://static.crates.io/crates/rand_chacha/0.3.1/download" } }, "targets": [ { "Library": { "crate_name": "rand_chacha", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rand_chacha", + "version": "0.3.1" + }, + "rand_core 0.6.4": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "ppv-lite86 0.2.17", - "target": "ppv_lite86" - }, - { - "id": "rand_core 0.6.4", - "target": "rand_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.1" + "crate_features": [ + "alloc", + "getrandom", + "std" + ], + "deps": [ + { + "id": "getrandom 0.2.8", + "target": "getrandom" + } + ], + "edition": "2018" }, + "library_target_name": "rand_core", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "rand_core 0.6.4": { "name": "rand_core", - "version": "0.6.4", "package_url": "https://github.com/rust-random/rand", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_core/0.6.4/download", - "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" + "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", + "url": "https://static.crates.io/crates/rand_core/0.6.4/download" } }, "targets": [ { "Library": { "crate_name": "rand_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rand_core", + "version": "0.6.4" + }, + "regex 1.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "aho-corasick", + "memchr", + "perf", + "perf-cache", + "perf-dfa", + "perf-inline", + "perf-literal", + "std" + ], + "deps": [ + { + "id": "aho-corasick 0.7.20", + "target": "aho_corasick" + }, + { + "id": "memchr 2.5.0", + "target": "memchr" + }, + { + "id": "regex-syntax 0.6.28", + "target": "regex_syntax" + } ], - "crate_features": { - "common": [ - "alloc", - "getrandom", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "getrandom 0.2.8", - "target": "getrandom" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.4" + "edition": "2018" }, + "library_target_name": "regex", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "regex 1.7.1": { "name": "regex", - "version": "1.7.1", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.7.1/download", - "sha256": "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" + "sha256": "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733", + "url": "https://static.crates.io/crates/regex/1.7.1/download" } }, "targets": [ { "Library": { "crate_name": "regex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "regex", + "version": "1.7.1" + }, + "regex-syntax 0.6.28": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "aho-corasick", - "memchr", - "perf", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "aho-corasick 0.7.20", - "target": "aho_corasick" - }, - { - "id": "memchr 2.5.0", - "target": "memchr" - }, - { - "id": "regex-syntax 0.6.28", - "target": "regex_syntax" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.7.1" + "edition": "2018" }, + "library_target_name": "regex_syntax", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "regex-syntax 0.6.28": { "name": "regex-syntax", - "version": "0.6.28", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.6.28/download", - "sha256": "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" + "sha256": "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848", + "url": "https://static.crates.io/crates/regex-syntax/0.6.28/download" } }, "targets": [ { "Library": { "crate_name": "regex_syntax", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "regex_syntax", + "version": "0.6.28" + }, + "ryu 1.0.19": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.6.28" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "ryu", + "license": "Apache-2.0 OR BSL-1.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "MIT" + "BSL-1.0" ], - "license_file": "LICENSE-APACHE" - }, - "ryu 1.0.19": { "name": "ryu", - "version": "1.0.19", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.19/download", - "sha256": "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd" + "sha256": "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd", + "url": "https://static.crates.io/crates/ryu/1.0.19/download" } }, "targets": [ { "Library": { "crate_name": "ryu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ryu", + "version": "1.0.19" + }, + "serde 1.0.217": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" + ], + "deps": [ + { + "id": "serde 1.0.217", + "target": "build_script_build" + } ], "edition": "2018", - "version": "1.0.19" + "proc_macro_deps": { + "common": [], + "selects": { + "cfg(any())": [ + { + "id": "serde_derive 1.0.217", + "target": "serde_derive" + } + ] + } + } }, - "license": "Apache-2.0 OR BSL-1.0", + "library_target_name": "serde", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "BSL-1.0" + "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde 1.0.217": { "name": "serde", - "version": "1.0.217", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde/1.0.217/download", - "sha256": "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" + "sha256": "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70", + "url": "https://static.crates.io/crates/serde/1.0.217/download" } }, "targets": [ { "Library": { "crate_name": "serde", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde", + "version": "1.0.217" + }, + "serde_derive 1.0.217": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde 1.0.217", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "serde_derive 1.0.217", - "target": "serde_derive" - } - ] + "deps": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 2.0.98", + "target": "syn" } - }, - "version": "1.0.217" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "serde_derive", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_derive 1.0.217": { "name": "serde_derive", - "version": "1.0.217", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.217/download", - "sha256": "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" + "sha256": "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0", + "url": "https://static.crates.io/crates/serde_derive/1.0.217/download" } }, "targets": [ { "ProcMacro": { "crate_name": "serde_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "serde_derive", + "version": "1.0.217" + }, + "serde_yaml 0.9.34+deprecated": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "indexmap 2.7.1", + "target": "indexmap" + }, + { + "id": "itoa 1.0.14", + "target": "itoa" + }, + { + "id": "ryu 1.0.19", + "target": "ryu" + }, + { + "id": "serde 1.0.217", + "target": "serde" + }, + { + "id": "unsafe-libyaml 0.2.11", + "target": "unsafe_libyaml" + } ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 2.0.98", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "1.0.217" + "edition": "2021" }, + "library_target_name": "serde_yaml", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_yaml 0.9.34+deprecated": { "name": "serde_yaml", - "version": "0.9.34+deprecated", "package_url": "https://github.com/dtolnay/serde-yaml", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_yaml/0.9.34+deprecated/download", - "sha256": "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" + "sha256": "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47", + "url": "https://static.crates.io/crates/serde_yaml/0.9.34+deprecated/download" } }, "targets": [ { "Library": { "crate_name": "serde_yaml", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "serde_yaml", + "version": "0.9.34+deprecated" + }, + "strsim 0.10.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "indexmap 2.7.1", - "target": "indexmap" - }, - { - "id": "itoa 1.0.14", - "target": "itoa" - }, - { - "id": "ryu 1.0.19", - "target": "ryu" - }, - { - "id": "serde 1.0.217", - "target": "serde" - }, - { - "id": "unsafe-libyaml 0.2.11", - "target": "unsafe_libyaml" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.9.34+deprecated" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "strsim", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "strsim 0.10.0": { "name": "strsim", - "version": "0.10.0", "package_url": "https://github.com/dguo/strsim-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/strsim/0.10.0/download", - "sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + "sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623", + "url": "https://static.crates.io/crates/strsim/0.10.0/download" } }, "targets": [ { "Library": { "crate_name": "strsim", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "strsim", + "version": "0.10.0" + }, + "syn 1.0.109": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "clone-impls", + "default", + "derive", + "full", + "parsing", + "printing", + "proc-macro", + "quote" + ], + "deps": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.6", + "target": "unicode_ident" + } ], - "edition": "2015", - "version": "0.10.0" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "syn", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "syn 1.0.109": { "name": "syn", - "version": "1.0.109", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/1.0.109/download", - "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" + "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237", + "url": "https://static.crates.io/crates/syn/1.0.109/download" } }, "targets": [ { "Library": { "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "syn", + "version": "1.0.109" + }, + "syn 2.0.98": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "clone-impls", - "default", - "derive", - "full", - "parsing", - "printing", - "proc-macro", - "quote" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.6", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.109" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_features": [ + "clone-impls", + "derive", + "parsing", + "printing", + "proc-macro" + ], + "deps": [ + { + "id": "proc-macro2 1.0.93", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.38", + "target": "quote" + }, + { + "id": "unicode-ident 1.0.6", + "target": "unicode_ident" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "syn", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "syn 2.0.98": { "name": "syn", - "version": "2.0.98", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.98/download", - "sha256": "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" + "sha256": "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1", + "url": "https://static.crates.io/crates/syn/2.0.98/download" } }, "targets": [ { "Library": { "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "syn", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "clone-impls", - "derive", - "parsing", - "printing", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.93", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.38", - "target": "quote" - }, - { - "id": "unicode-ident 1.0.6", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.98" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "2.0.98" }, "termcolor 1.2.0": { - "name": "termcolor", - "version": "1.2.0", - "package_url": "https://github.com/BurntSushi/termcolor", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/termcolor/1.2.0/download", - "sha256": "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "termcolor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "termcolor", "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -2845,313 +2048,226 @@ ] } }, - "edition": "2018", - "version": "1.2.0" + "edition": "2018" }, + "library_target_name": "termcolor", "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" - }, - "textwrap 0.16.0": { - "name": "textwrap", - "version": "0.16.0", - "package_url": "https://github.com/mgeisler/textwrap", + "name": "termcolor", + "package_url": "https://github.com/BurntSushi/termcolor", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.16.0/download", - "sha256": "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" + "sha256": "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6", + "url": "https://static.crates.io/crates/termcolor/1.2.0/download" } }, "targets": [ { "Library": { - "crate_name": "textwrap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "termcolor", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "textwrap", + "version": "1.2.0" + }, + "textwrap 0.16.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.16.0" + "edition": "2021" }, + "library_target_name": "textwrap", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "unicode-ident 1.0.6": { - "name": "unicode-ident", - "version": "1.0.6", - "package_url": "https://github.com/dtolnay/unicode-ident", + "name": "textwrap", + "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.6/download", - "sha256": "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" + "sha256": "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d", + "url": "https://static.crates.io/crates/textwrap/0.16.0/download" } }, "targets": [ { "Library": { - "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "textwrap", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_ident", + "version": "0.16.0" + }, + "unicode-ident 1.0.6": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.6" + "edition": "2018" }, + "library_target_name": "unicode_ident", "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT", "Unicode-DFS-2016" ], - "license_file": "LICENSE-APACHE" - }, - "unsafe-libyaml 0.2.11": { - "name": "unsafe-libyaml", - "version": "0.2.11", - "package_url": "https://github.com/dtolnay/unsafe-libyaml", + "name": "unicode-ident", + "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unsafe-libyaml/0.2.11/download", - "sha256": "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + "sha256": "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc", + "url": "https://static.crates.io/crates/unicode-ident/1.0.6/download" } }, "targets": [ { "Library": { - "crate_name": "unsafe_libyaml", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unicode_ident", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unsafe_libyaml", + "version": "1.0.6" + }, + "unsafe-libyaml 0.2.11": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.2.11" + "edition": "2021" }, + "library_target_name": "unsafe_libyaml", "license": "MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" - }, - "value-bag 1.11.1": { - "name": "value-bag", - "version": "1.11.1", - "package_url": "https://github.com/sval-rs/value-bag", + "name": "unsafe-libyaml", + "package_url": "https://github.com/dtolnay/unsafe-libyaml", "repository": { "Http": { - "url": "https://static.crates.io/crates/value-bag/1.11.1/download", - "sha256": "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5" + "sha256": "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861", + "url": "https://static.crates.io/crates/unsafe-libyaml/0.2.11/download" } }, "targets": [ { "Library": { - "crate_name": "value_bag", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unsafe_libyaml", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "value_bag", + "version": "0.2.11" + }, + "value-bag 1.11.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "1.11.1" + "edition": "2021" }, + "library_target_name": "value_bag", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "version_check 0.9.4": { - "name": "version_check", - "version": "0.9.4", - "package_url": "https://github.com/SergioBenitez/version_check", + "name": "value-bag", + "package_url": "https://github.com/sval-rs/value-bag", "repository": { "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.4/download", - "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + "sha256": "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5", + "url": "https://static.crates.io/crates/value-bag/1.11.1/download" } }, "targets": [ { "Library": { - "crate_name": "version_check", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "value_bag", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "version_check", + "version": "1.11.1" + }, + "version_check 0.9.4": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.9.4" + "edition": "2015" }, + "library_target_name": "version_check", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "wasi 0.11.0+wasi-snapshot-preview1": { - "name": "wasi", - "version": "0.11.0+wasi-snapshot-preview1", - "package_url": "https://github.com/bytecodealliance/wasi", + "name": "version_check", + "package_url": "https://github.com/SergioBenitez/version_check", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download", - "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", + "url": "https://static.crates.io/crates/version_check/0.9.4/download" } }, "targets": [ { "Library": { - "crate_name": "wasi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "version_check", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasi", + "version": "0.9.4" + }, + "wasi 0.11.0+wasi-snapshot-preview1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.11.0+wasi-snapshot-preview1" + "edition": "2018" }, + "library_target_name": "wasi", "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi 0.3.9": { - "name": "winapi", - "version": "0.3.9", - "package_url": "https://github.com/retep998/winapi-rs", + "name": "wasi", + "package_url": "https://github.com/bytecodealliance/wasi", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi/0.3.9/download", - "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" + "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", + "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download" } }, "targets": [ { "Library": { - "crate_name": "winapi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "wasi", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "winapi", + "version": "0.11.0+wasi-snapshot-preview1" + }, + "winapi 0.3.9": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "consoleapi", + "errhandlingapi", + "fileapi", + "minwinbase", + "minwindef", + "processenv", + "std", + "winbase", + "wincon", + "winerror", + "winnt" ], - "crate_features": { - "common": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "minwinbase", - "minwindef", - "processenv", - "std", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "selects": {} - }, "deps": { "common": [ { @@ -3174,127 +2290,82 @@ ] } }, - "edition": "2015", - "version": "0.3.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi-i686-pc-windows-gnu 0.4.0": { - "name": "winapi-i686-pc-windows-gnu", - "version": "0.4.0", + "name": "winapi", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download", - "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", + "url": "https://static.crates.io/crates/winapi/0.3.9/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_i686_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_i686_pc_windows_gnu", + "version": "0.3.9" + }, + "winapi-i686-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "winapi-i686-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi_i686_pc_windows_gnu", "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null - }, - "winapi-util 0.1.5": { - "name": "winapi-util", - "version": "0.1.5", - "package_url": "https://github.com/BurntSushi/winapi-util", + "name": "winapi-i686-pc-windows-gnu", + "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.5/download", - "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" + "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", + "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi_i686_pc_windows_gnu", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_util", + "version": "0.4.0" + }, + "winapi-util 0.1.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -3306,132 +2377,75 @@ ] } }, - "edition": "2018", - "version": "0.1.5" + "edition": "2018" }, + "library_target_name": "winapi_util", "license": "Unlicense/MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" + "name": "winapi-util", + "package_url": "https://github.com/BurntSushi/winapi-util", + "repository": { + "Http": { + "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", + "url": "https://static.crates.io/crates/winapi-util/0.1.5/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "winapi_util", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.1.5" }, "winapi-x86_64-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, + "common_attrs": { + "deps": [ + { + "id": "winapi-x86_64-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } + ], + "edition": "2015" + }, + "library_target_name": "winapi_x86_64_pc_windows_gnu", + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "winapi-x86_64-pc-windows-gnu", - "version": "0.4.0", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", - "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", + "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { "crate_name": "winapi_x86_64_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_x86_64_pc_windows_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null + "version": "0.4.0" } }, - "binary_crates": [], - "workspace_members": { - "aliases 0.1.0": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(any())": [], - "cfg(target_os = \"hermit\")": [], - "cfg(target_os = \"wasi\")": [ - "wasm32-wasip1" - ], - "cfg(unix)": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "i686-pc-windows-gnu": [], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-gnu": [], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "log 0.3.9", "log 0.4.14", @@ -3443,5 +2457,7 @@ "direct_dev_deps": [ "env_logger 0.9.3" ], - "unused_patches": [] + "workspace_members": { + "aliases 0.1.0": "" + } } diff --git a/crate_universe/tests/integration/cargo_conditional_deps/cargo-bazel-lock.json b/crate_universe/tests/integration/cargo_conditional_deps/cargo-bazel-lock.json index 8df40604bb..3e50d64049 100644 --- a/crate_universe/tests/integration/cargo_conditional_deps/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/cargo_conditional_deps/cargo-bazel-lock.json @@ -1,153 +1,126 @@ { - "checksum": "b926f4e661a5958de7fa77ea71b4821cfe448b36f0cad6d0c2ef18f02963097e", + "checksum": "d5927eaa3d505efd7ed184818464ae14cc63d30d95d38228c4686b851c2b5978", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(target_os = \"linux\")": [ + "aarch64-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "autocfg 1.1.0": { + "common_attrs": { + "edition": "2015" + }, + "library_target_name": "autocfg", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "autocfg", - "version": "1.1.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.1.0/download", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", + "url": "https://static.crates.io/crates/autocfg/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "autocfg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "autocfg", + "version": "1.1.0" + }, + "bitflags 1.3.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "edition": "2015", - "version": "1.1.0" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "bitflags", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "bitflags 1.3.2": { "name": "bitflags", - "version": "1.3.2", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/1.3.2/download", - "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", + "url": "https://static.crates.io/crates/bitflags/1.3.2/download" } }, "targets": [ { "Library": { "crate_name": "bitflags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bitflags", + "version": "1.3.2" + }, + "cfg-if 1.0.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.3.2" + "edition": "2018" }, + "library_target_name": "cfg_if", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cfg-if 1.0.0": { "name": "cfg-if", - "version": "1.0.0", "package_url": "https://github.com/alexcrichton/cfg-if", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.0/download", - "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", + "url": "https://static.crates.io/crates/cfg-if/1.0.0/download" } }, "targets": [ { "Library": { "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cfg_if", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.0.0" }, "conditional-deps 0.1.0": { - "name": "conditional-deps", - "version": "0.1.0", - "package_url": null, - "repository": null, - "targets": [ - { - "Library": { - "crate_name": "conditional_deps", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "conditional_deps", "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -159,398 +132,274 @@ ] } }, - "edition": "2021", - "version": "0.1.0" + "edition": "2021" }, - "license": null, - "license_ids": [], - "license_file": null + "library_target_name": "conditional_deps", + "name": "conditional-deps", + "repository": null, + "targets": [ + { + "Library": { + "crate_name": "conditional_deps", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.1.0" }, "libc 0.2.146": { + "build_script_attrs": {}, + "common_attrs": { + "crate_features": [ + "default", + "extra_traits", + "std" + ], + "deps": [ + { + "id": "libc 0.2.146", + "target": "build_script_build" + } + ], + "edition": "2015" + }, + "library_target_name": "libc", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "libc", - "version": "0.2.146", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.146/download", - "sha256": "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" + "sha256": "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b", + "url": "https://static.crates.io/crates/libc/0.2.146/download" } }, "targets": [ { "Library": { "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "libc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "extra_traits", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.146", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.2.146" - }, + "version": "0.2.146" + }, + "memoffset 0.7.1": { "build_script_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ] + }, + "common_attrs": { + "crate_features": [ + "default" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "memoffset 0.7.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "memoffset", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "memoffset 0.7.1": { "name": "memoffset", - "version": "0.7.1", "package_url": "https://github.com/Gilnaa/memoffset", "repository": { "Http": { - "url": "https://static.crates.io/crates/memoffset/0.7.1/download", - "sha256": "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" + "sha256": "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4", + "url": "https://static.crates.io/crates/memoffset/0.7.1/download" } }, "targets": [ { "Library": { "crate_name": "memoffset", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "memoffset", + "version": "0.7.1" + }, + "nix 0.26.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memoffset 0.7.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.7.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "acct", + "aio", + "default", + "dir", + "env", + "event", + "feature", + "fs", + "hostname", + "inotify", + "ioctl", + "kmod", + "memoffset", + "mman", + "mount", + "mqueue", + "net", + "personality", + "pin-utils", + "poll", + "process", + "pthread", + "ptrace", + "quota", + "reboot", + "resource", + "sched", + "signal", + "socket", + "term", + "time", + "ucontext", + "uio", + "user", + "zerocopy" ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "bitflags 1.3.2", + "target": "bitflags" + }, + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "libc 0.2.146", + "target": "libc" + }, + { + "id": "memoffset 0.7.1", + "target": "memoffset" + }, + { + "id": "pin-utils 0.1.0", + "target": "pin_utils" + }, + { + "id": "static_assertions 1.1.0", + "target": "static_assertions" + } ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2018" }, + "library_target_name": "nix", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "nix 0.26.2": { "name": "nix", - "version": "0.26.2", "package_url": "https://github.com/nix-rust/nix", "repository": { "Http": { - "url": "https://static.crates.io/crates/nix/0.26.2/download", - "sha256": "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" + "sha256": "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a", + "url": "https://static.crates.io/crates/nix/0.26.2/download" } }, "targets": [ { "Library": { "crate_name": "nix", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "nix", + "version": "0.26.2" + }, + "pin-utils 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "acct", - "aio", - "default", - "dir", - "env", - "event", - "feature", - "fs", - "hostname", - "inotify", - "ioctl", - "kmod", - "memoffset", - "mman", - "mount", - "mqueue", - "net", - "personality", - "pin-utils", - "poll", - "process", - "pthread", - "ptrace", - "quota", - "reboot", - "resource", - "sched", - "signal", - "socket", - "term", - "time", - "ucontext", - "uio", - "user", - "zerocopy" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bitflags 1.3.2", - "target": "bitflags" - }, - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "libc 0.2.146", - "target": "libc" - }, - { - "id": "memoffset 0.7.1", - "target": "memoffset" - }, - { - "id": "pin-utils 0.1.0", - "target": "pin_utils" - }, - { - "id": "static_assertions 1.1.0", - "target": "static_assertions" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.26.2" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "pin_utils", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "pin-utils 0.1.0": { "name": "pin-utils", - "version": "0.1.0", "package_url": "https://github.com/rust-lang-nursery/pin-utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-utils/0.1.0/download", - "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", + "url": "https://static.crates.io/crates/pin-utils/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "pin_utils", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pin_utils", + "version": "0.1.0" + }, + "static_assertions 1.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.1.0" + "edition": "2015" }, + "library_target_name": "static_assertions", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "static_assertions 1.1.0": { "name": "static_assertions", - "version": "1.1.0", "package_url": "https://github.com/nvzqz/static-assertions-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/static_assertions/1.1.0/download", - "sha256": "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + "sha256": "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f", + "url": "https://static.crates.io/crates/static_assertions/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "static_assertions", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "static_assertions", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.1.0" } }, - "binary_crates": [], - "workspace_members": { - "conditional-deps 0.1.0": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(target_os = \"linux\")": [ - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "nix 0.26.2" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "conditional-deps 0.1.0": "" + } } diff --git a/crate_universe/tests/integration/cargo_workspace/cargo-bazel-lock.json b/crate_universe/tests/integration/cargo_workspace/cargo-bazel-lock.json index 5f4ccf9ad2..1fc8257955 100644 --- a/crate_universe/tests/integration/cargo_workspace/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/cargo_workspace/cargo-bazel-lock.json @@ -1,35 +1,60 @@ { - "checksum": "69b9a40b41bc61ce568799e7b3ca139b2a12cf1a42c2c2796bee84139d4af114", + "checksum": "f68bf2b9d613a74bcd38100952b22ea9e00518114bd36b60fb8bdbcbe3d28ecd", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(not(target_os = \"emscripten\"))": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasip1", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(target_os = \"emscripten\")": [], + "cfg(target_os = \"hermit\")": [], + "cfg(target_os = \"wasi\")": [ + "wasm32-wasip1" + ], + "cfg(target_os = \"windows\")": [ + "x86_64-pc-windows-msvc" + ], + "cfg(unix)": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(windows)": [ + "x86_64-pc-windows-msvc" + ], + "i686-pc-windows-gnu": [], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-gnu": [], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "ansi_term 0.12.1": { - "name": "ansi_term", - "version": "0.12.1", - "package_url": "https://github.com/ogham/rust-ansi-term", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/ansi_term/0.12.1/download", - "sha256": "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ansi_term", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ansi_term", "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -41,44 +66,33 @@ ] } }, - "edition": "2015", - "version": "0.12.1" + "edition": "2015" }, + "library_target_name": "ansi_term", "license": "MIT", "license_ids": [ "MIT" ], - "license_file": null - }, - "atty 0.2.14": { - "name": "atty", - "version": "0.2.14", - "package_url": "https://github.com/softprops/atty", + "name": "ansi_term", + "package_url": "https://github.com/ogham/rust-ansi-term", "repository": { "Http": { - "url": "https://static.crates.io/crates/atty/0.2.14/download", - "sha256": "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" + "sha256": "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2", + "url": "https://static.crates.io/crates/ansi_term/0.12.1/download" } }, "targets": [ { "Library": { - "crate_name": "atty", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "ansi_term", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "atty", + "version": "0.12.1" + }, + "atty 0.2.14": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -102,140 +116,104 @@ ] } }, - "edition": "2015", - "version": "0.2.14" + "edition": "2015" }, + "library_target_name": "atty", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "bitflags 1.3.2": { - "name": "bitflags", - "version": "1.3.2", - "package_url": "https://github.com/bitflags/bitflags", + "name": "atty", + "package_url": "https://github.com/softprops/atty", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/1.3.2/download", - "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + "sha256": "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8", + "url": "https://static.crates.io/crates/atty/0.2.14/download" } }, "targets": [ { "Library": { - "crate_name": "bitflags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "atty", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bitflags", + "version": "0.2.14" + }, + "bitflags 1.3.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.3.2" + "edition": "2018" }, + "library_target_name": "bitflags", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cfg-if 1.0.0": { - "name": "cfg-if", - "version": "1.0.0", - "package_url": "https://github.com/alexcrichton/cfg-if", + "name": "bitflags", + "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.0/download", - "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", + "url": "https://static.crates.io/crates/bitflags/1.3.2/download" } }, "targets": [ { "Library": { - "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "bitflags", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cfg_if", + "version": "1.3.2" + }, + "cfg-if 1.0.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.0" + "edition": "2018" }, + "library_target_name": "cfg_if", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap 2.34.0": { - "name": "clap", - "version": "2.34.0", - "package_url": "https://github.com/clap-rs/clap", + "name": "cfg-if", + "package_url": "https://github.com/alexcrichton/cfg-if", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/2.34.0/download", - "sha256": "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" + "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", + "url": "https://static.crates.io/crates/cfg-if/1.0.0/download" } }, "targets": [ { "Library": { - "crate_name": "clap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "cfg_if", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap", + "version": "1.0.0" + }, + "clap 2.34.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "ansi_term", + "atty", + "color", + "default", + "strsim", + "suggestions", + "vec_map" ], - "crate_features": { - "common": [ - "ansi_term", - "atty", - "color", - "default", - "strsim", - "suggestions", - "vec_map" - ], - "selects": {} - }, "deps": { "common": [ { @@ -302,118 +280,81 @@ ] } }, - "edition": "2018", - "version": "2.34.0" + "edition": "2018" }, + "library_target_name": "clap", "license": "MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" - }, - "ferris-says 0.2.1": { - "name": "ferris-says", - "version": "0.2.1", - "package_url": "https://github.com/mgattozzi/ferris-says", + "name": "clap", + "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/ferris-says/0.2.1/download", - "sha256": "9515ec2dd9606ec230f6b2d1f25fd9e808a2f2af600143f7efe7e5865505b7aa" + "sha256": "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c", + "url": "https://static.crates.io/crates/clap/2.34.0/download" } }, "targets": [ { "Library": { - "crate_name": "ferris_says", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "clap", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ferris_says", + "version": "2.34.0" + }, + "ferris-says 0.2.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "smallvec 0.4.5", + "target": "smallvec" + }, + { + "id": "textwrap 0.13.4", + "target": "textwrap" + }, + { + "id": "unicode-width 0.1.10", + "target": "unicode_width" + } ], - "deps": { - "common": [ - { - "id": "smallvec 0.4.5", - "target": "smallvec" - }, - { - "id": "textwrap 0.13.4", - "target": "textwrap" - }, - { - "id": "unicode-width 0.1.10", - "target": "unicode_width" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.2.1" + "edition": "2015" }, + "library_target_name": "ferris_says", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "getrandom 0.1.16": { - "name": "getrandom", - "version": "0.1.16", - "package_url": "https://github.com/rust-random/getrandom", + "name": "ferris-says", + "package_url": "https://github.com/mgattozzi/ferris-says", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.1.16/download", - "sha256": "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" + "sha256": "9515ec2dd9606ec230f6b2d1f25fd9e808a2f2af600143f7efe7e5865505b7aa", + "url": "https://static.crates.io/crates/ferris-says/0.2.1/download" } }, "targets": [ { "Library": { - "crate_name": "getrandom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "ferris_says", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "getrandom", + "version": "0.2.1" + }, + "getrandom 0.1.16": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, "deps": { "common": [ { @@ -440,305 +381,203 @@ ] } }, - "edition": "2018", - "version": "0.1.16" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "getrandom", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "getrandom", + "package_url": "https://github.com/rust-random/getrandom", + "repository": { + "Http": { + "sha256": "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce", + "url": "https://static.crates.io/crates/getrandom/0.1.16/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "getrandom", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "0.1.16" }, "hermit-abi 0.1.19": { + "common_attrs": { + "deps": [ + { + "id": "libc 0.2.139", + "target": "libc" + } + ], + "edition": "2018" + }, + "library_target_name": "hermit_abi", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "hermit-abi", - "version": "0.1.19", "package_url": "https://github.com/hermitcore/libhermit-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/hermit-abi/0.1.19/download", - "sha256": "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" + "sha256": "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", + "url": "https://static.crates.io/crates/hermit-abi/0.1.19/download" } }, "targets": [ { "Library": { "crate_name": "hermit_abi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hermit_abi", + "version": "0.1.19" + }, + "libc 0.2.139": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "libc 0.2.139", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "libc 0.2.139", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.19" + "edition": "2015" }, - "license": "MIT/Apache-2.0", + "library_target_name": "libc", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "libc 0.2.139": { "name": "libc", - "version": "0.2.139", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.139/download", - "sha256": "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" + "sha256": "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79", + "url": "https://static.crates.io/crates/libc/0.2.139/download" } }, "targets": [ { "Library": { "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "libc", + "version": "0.2.139" + }, + "num_printer 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.139", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.2.139" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "clap 2.34.0", + "target": "clap" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "num_printer 0.1.0": { "name": "num_printer", - "version": "0.1.0", - "package_url": null, "repository": null, "targets": [], - "library_target_name": null, + "version": "0.1.0" + }, + "ppv-lite86 0.2.17": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "simd", + "std" ], - "deps": { - "common": [ - { - "id": "clap 2.34.0", - "target": "clap" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.0" + "edition": "2018" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "ppv-lite86 0.2.17": { + "library_target_name": "ppv_lite86", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "ppv-lite86", - "version": "0.2.17", "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download", - "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de", + "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download" } }, "targets": [ { "Library": { "crate_name": "ppv_lite86", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ppv_lite86", + "version": "0.2.17" + }, + "printer 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "ferris-says 0.2.1", + "target": "ferris_says" + } ], - "crate_features": { - "common": [ - "simd", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.17" + "edition": "2018" }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "printer 0.1.0": { + "library_target_name": "printer", "name": "printer", - "version": "0.1.0", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "printer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "printer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "ferris-says 0.2.1", - "target": "ferris_says" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.0" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.1.0" }, "rand 0.7.3": { - "name": "rand", - "version": "0.7.3", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand/0.7.3/download", - "sha256": "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand", "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "getrandom", + "getrandom_package", + "libc", + "std" ], - "crate_features": { - "common": [ - "alloc", - "default", - "getrandom", - "getrandom_package", - "libc", - "std" - ], - "selects": {} - }, "deps": { "common": [ { + "alias": "getrandom_package", "id": "getrandom 0.1.16", - "target": "getrandom", - "alias": "getrandom_package" + "target": "getrandom" }, { "id": "rand_core 0.5.1", @@ -784,878 +623,591 @@ ] } }, - "edition": "2018", - "version": "0.7.3" + "edition": "2018" }, + "library_target_name": "rand", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "rand_chacha 0.2.2": { - "name": "rand_chacha", - "version": "0.2.2", + "name": "rand", "package_url": "https://github.com/rust-random/rand", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_chacha/0.2.2/download", - "sha256": "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" + "sha256": "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03", + "url": "https://static.crates.io/crates/rand/0.7.3/download" } }, "targets": [ { "Library": { - "crate_name": "rand_chacha", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "rand", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rand_chacha", + "version": "0.7.3" + }, + "rand_chacha 0.2.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "ppv-lite86 0.2.17", - "target": "ppv_lite86" - }, - { - "id": "rand_core 0.5.1", - "target": "rand_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.2" + "deps": [ + { + "id": "ppv-lite86 0.2.17", + "target": "ppv_lite86" + }, + { + "id": "rand_core 0.5.1", + "target": "rand_core" + } + ], + "edition": "2018" }, + "library_target_name": "rand_chacha", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "rand_core 0.5.1": { - "name": "rand_core", - "version": "0.5.1", + "name": "rand_chacha", "package_url": "https://github.com/rust-random/rand", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_core/0.5.1/download", - "sha256": "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" + "sha256": "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402", + "url": "https://static.crates.io/crates/rand_chacha/0.2.2/download" } }, "targets": [ { "Library": { - "crate_name": "rand_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "rand_chacha", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rand_core", + "version": "0.2.2" + }, + "rand_core 0.5.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "getrandom", + "std" ], - "crate_features": { - "common": [ - "alloc", - "getrandom", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "getrandom 0.1.16", - "target": "getrandom" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.5.1" + "deps": [ + { + "id": "getrandom 0.1.16", + "target": "getrandom" + } + ], + "edition": "2018" }, + "library_target_name": "rand_core", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "rand_hc 0.2.0": { - "name": "rand_hc", - "version": "0.2.0", + "name": "rand_core", "package_url": "https://github.com/rust-random/rand", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_hc/0.2.0/download", - "sha256": "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" + "sha256": "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19", + "url": "https://static.crates.io/crates/rand_core/0.5.1/download" } }, "targets": [ { "Library": { - "crate_name": "rand_hc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "rand_core", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rand_hc", + "version": "0.5.1" + }, + "rand_hc 0.2.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "rand_core 0.5.1", + "target": "rand_core" + } ], - "deps": { - "common": [ - { - "id": "rand_core 0.5.1", - "target": "rand_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.0" + "edition": "2018" }, + "library_target_name": "rand_hc", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "rand_hc", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "sha256": "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c", + "url": "https://static.crates.io/crates/rand_hc/0.2.0/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand_hc", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.2.0" }, "rng 0.1.0": { + "common_attrs": { + "deps": [ + { + "id": "rand 0.7.3", + "target": "rand" + } + ], + "edition": "2018" + }, + "library_target_name": "rng", "name": "rng", - "version": "0.1.0", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "rng", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rng", + "version": "0.1.0" + }, + "smallvec 0.4.5": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "deps": { - "common": [ - { - "id": "rand 0.7.3", - "target": "rand" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.0" + "edition": "2015" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "smallvec 0.4.5": { + "library_target_name": "smallvec", + "license": "MPL-2.0", + "license_ids": [ + "MPL-2.0" + ], "name": "smallvec", - "version": "0.4.5", "package_url": "https://github.com/servo/rust-smallvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/smallvec/0.4.5/download", - "sha256": "f90c5e5fe535e48807ab94fc611d323935f39d4660c52b26b96446a7b33aef10" + "sha256": "f90c5e5fe535e48807ab94fc611d323935f39d4660c52b26b96446a7b33aef10", + "url": "https://static.crates.io/crates/smallvec/0.4.5/download" } }, "targets": [ { "Library": { "crate_name": "smallvec", - "crate_root": "lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "lib.rs" } } ], - "library_target_name": "smallvec", + "version": "0.4.5" + }, + "smawk 0.3.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.5" + "edition": "2018" }, - "license": "MPL-2.0", + "library_target_name": "smawk", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "MPL-2.0" + "MIT" ], - "license_file": null - }, - "smawk 0.3.1": { "name": "smawk", - "version": "0.3.1", "package_url": "https://github.com/mgeisler/smawk", "repository": { "Http": { - "url": "https://static.crates.io/crates/smawk/0.3.1/download", - "sha256": "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" + "sha256": "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043", + "url": "https://static.crates.io/crates/smawk/0.3.1/download" } }, "targets": [ { "Library": { "crate_name": "smawk", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "smawk", + "version": "0.3.1" + }, + "strsim 0.8.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.3.1" + "edition": "2015" }, + "library_target_name": "strsim", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "strsim 0.8.0": { "name": "strsim", - "version": "0.8.0", "package_url": "https://github.com/dguo/strsim-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/strsim/0.8.0/download", - "sha256": "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + "sha256": "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a", + "url": "https://static.crates.io/crates/strsim/0.8.0/download" } }, "targets": [ { "Library": { "crate_name": "strsim", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "strsim", + "version": "0.8.0" + }, + "textwrap 0.11.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "unicode-width 0.1.10", + "target": "unicode_width" + } ], - "edition": "2015", - "version": "0.8.0" + "edition": "2015" }, + "library_target_name": "textwrap", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "textwrap 0.11.0": { "name": "textwrap", - "version": "0.11.0", "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.11.0/download", - "sha256": "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" + "sha256": "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060", + "url": "https://static.crates.io/crates/textwrap/0.11.0/download" } }, "targets": [ { "Library": { "crate_name": "textwrap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "textwrap", + "version": "0.11.0" + }, + "textwrap 0.13.4": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "smawk", + "unicode-width" ], - "deps": { - "common": [ - { - "id": "unicode-width 0.1.10", - "target": "unicode_width" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.11.0" + "deps": [ + { + "id": "smawk 0.3.1", + "target": "smawk" + }, + { + "id": "unicode-width 0.1.10", + "target": "unicode_width" + } + ], + "edition": "2018" }, + "library_target_name": "textwrap", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "textwrap 0.13.4": { "name": "textwrap", - "version": "0.13.4", "package_url": "https://github.com/mgeisler/textwrap", "repository": { "Http": { - "url": "https://static.crates.io/crates/textwrap/0.13.4/download", - "sha256": "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835" + "sha256": "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835", + "url": "https://static.crates.io/crates/textwrap/0.13.4/download" } }, "targets": [ { "Library": { "crate_name": "textwrap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "textwrap", + "version": "0.13.4" + }, + "unicode-width 0.1.10": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "crate_features": { - "common": [ - "default", - "smawk", - "unicode-width" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "smawk 0.3.1", - "target": "smawk" - }, - { - "id": "unicode-width 0.1.10", - "target": "unicode_width" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.13.4" + "edition": "2015" }, - "license": "MIT", + "library_target_name": "unicode_width", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "unicode-width 0.1.10": { "name": "unicode-width", - "version": "0.1.10", "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.1.10/download", - "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b", + "url": "https://static.crates.io/crates/unicode-width/0.1.10/download" } }, "targets": [ { "Library": { "crate_name": "unicode_width", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_width", + "version": "0.1.10" + }, + "vec_map 0.8.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.1.10" + "edition": "2015" }, + "library_target_name": "vec_map", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "vec_map 0.8.2": { "name": "vec_map", - "version": "0.8.2", "package_url": "https://github.com/contain-rs/vec-map", "repository": { "Http": { - "url": "https://static.crates.io/crates/vec_map/0.8.2/download", - "sha256": "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + "sha256": "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191", + "url": "https://static.crates.io/crates/vec_map/0.8.2/download" } }, "targets": [ { "Library": { "crate_name": "vec_map", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "vec_map", + "version": "0.8.2" + }, + "wasi 0.9.0+wasi-snapshot-preview1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2015", - "version": "0.8.2" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "wasi", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "wasi 0.9.0+wasi-snapshot-preview1": { "name": "wasi", - "version": "0.9.0+wasi-snapshot-preview1", "package_url": "https://github.com/bytecodealliance/wasi", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasi/0.9.0+wasi-snapshot-preview1/download", - "sha256": "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + "sha256": "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519", + "url": "https://static.crates.io/crates/wasi/0.9.0+wasi-snapshot-preview1/download" } }, "targets": [ { "Library": { "crate_name": "wasi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasi", + "version": "0.9.0+wasi-snapshot-preview1" + }, + "winapi 0.3.9": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "consoleapi", + "errhandlingapi", + "fileapi", + "handleapi", + "minwinbase", + "minwindef", + "processenv", + "winbase" ], - "crate_features": { + "deps": { "common": [ - "default", - "std" + { + "id": "winapi 0.3.9", + "target": "build_script_build" + } ], - "selects": {} + "selects": { + "i686-pc-windows-gnu": [ + { + "id": "winapi-i686-pc-windows-gnu 0.4.0", + "target": "winapi_i686_pc_windows_gnu" + } + ], + "x86_64-pc-windows-gnu": [ + { + "id": "winapi-x86_64-pc-windows-gnu 0.4.0", + "target": "winapi_x86_64_pc_windows_gnu" + } + ] + } }, - "edition": "2018", - "version": "0.9.0+wasi-snapshot-preview1" + "edition": "2015" }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "library_target_name": "winapi", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi 0.3.9": { "name": "winapi", - "version": "0.3.9", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi/0.3.9/download", - "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" + "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", + "url": "https://static.crates.io/crates/winapi/0.3.9/download" } }, "targets": [ { "Library": { "crate_name": "winapi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi", + "version": "0.3.9" + }, + "winapi-i686-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "minwinbase", - "minwindef", - "processenv", - "winbase" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "winapi 0.3.9", - "target": "build_script_build" - } - ], - "selects": { - "i686-pc-windows-gnu": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "winapi_i686_pc_windows_gnu" - } - ], - "x86_64-pc-windows-gnu": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "winapi_x86_64_pc_windows_gnu" - } - ] + "deps": [ + { + "id": "winapi-i686-pc-windows-gnu 0.4.0", + "target": "build_script_build" } - }, - "edition": "2015", - "version": "0.3.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi_i686_pc_windows_gnu", "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi-i686-pc-windows-gnu 0.4.0": { "name": "winapi-i686-pc-windows-gnu", - "version": "0.4.0", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download", - "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", + "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { "crate_name": "winapi_i686_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_i686_pc_windows_gnu", + "version": "0.4.0" + }, + "winapi-x86_64-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "winapi-x86_64-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi_x86_64_pc_windows_gnu", "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null - }, - "winapi-x86_64-pc-windows-gnu 0.4.0": { "name": "winapi-x86_64-pc-windows-gnu", - "version": "0.4.0", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", - "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", + "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { "crate_name": "winapi_x86_64_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_x86_64_pc_windows_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null + "version": "0.4.0" } }, - "binary_crates": [], - "workspace_members": { - "num_printer 0.1.0": "num_printer", - "printer 0.1.0": "printer", - "rng 0.1.0": "rng" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(not(target_os = \"emscripten\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(target_os = \"emscripten\")": [], - "cfg(target_os = \"hermit\")": [], - "cfg(target_os = \"wasi\")": [ - "wasm32-wasip1" - ], - "cfg(target_os = \"windows\")": [ - "x86_64-pc-windows-msvc" - ], - "cfg(unix)": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "i686-pc-windows-gnu": [], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-gnu": [], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "clap 2.34.0", "ferris-says 0.2.1", "rand 0.7.3" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "num_printer 0.1.0": "num_printer", + "printer 0.1.0": "printer", + "rng 0.1.0": "rng" + } } diff --git a/crate_universe/tests/integration/complicated_dependencies/cargo-bazel-lock.json b/crate_universe/tests/integration/complicated_dependencies/cargo-bazel-lock.json index 07746460d0..f9ba455ae0 100644 --- a/crate_universe/tests/integration/complicated_dependencies/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/complicated_dependencies/cargo-bazel-lock.json @@ -1,1091 +1,760 @@ { - "checksum": "eaeb37c4f69186c85546528cb895a75fb9a24272fd8bd4ad56eb473462a55c80", + "checksum": "6037df7c07a0bc6809da062d100eb61387278e902efdebd0781677cffb2f2419", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "bitflags 2.11.1": { + "common_attrs": { + "edition": "2021" + }, + "library_target_name": "bitflags", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "bitflags", - "version": "2.11.1", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.11.1/download", - "sha256": "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" + "sha256": "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3", + "url": "https://static.crates.io/crates/bitflags/2.11.1/download" } }, "targets": [ { "Library": { "crate_name": "bitflags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bitflags", + "version": "2.11.1" + }, + "cc 1.2.62": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "find-msvc-tools 0.1.9", + "target": "find_msvc_tools" + }, + { + "id": "shlex 1.3.0", + "target": "shlex" + } ], - "edition": "2021", - "version": "2.11.1" + "edition": "2018" }, + "library_target_name": "cc", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cc 1.2.62": { "name": "cc", - "version": "1.2.62", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.62/download", - "sha256": "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98" + "sha256": "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98", + "url": "https://static.crates.io/crates/cc/1.2.62/download" } }, "targets": [ { "Library": { "crate_name": "cc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cc", + "version": "1.2.62" + }, + "cfg-if 1.0.4": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "find-msvc-tools 0.1.9", - "target": "find_msvc_tools" - }, - { - "id": "shlex 1.3.0", - "target": "shlex" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.2.62" + "edition": "2018" }, + "library_target_name": "cfg_if", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cfg-if 1.0.4": { "name": "cfg-if", - "version": "1.0.4", "package_url": "https://github.com/rust-lang/cfg-if", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.4/download", - "sha256": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + "sha256": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801", + "url": "https://static.crates.io/crates/cfg-if/1.0.4/download" } }, "targets": [ { "Library": { "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cfg_if", + "version": "1.0.4" + }, + "direct-cargo-bazel-deps 0.0.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "openssl 0.10.80", + "target": "openssl" + } ], - "edition": "2018", - "version": "1.0.4" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "direct-cargo-bazel-deps 0.0.1": { + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "openssl 0.10.80", - "target": "openssl" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.0.1" }, "find-msvc-tools 0.1.9": { + "common_attrs": { + "edition": "2018" + }, + "library_target_name": "find_msvc_tools", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "find-msvc-tools", - "version": "0.1.9", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/find-msvc-tools/0.1.9/download", - "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582", + "url": "https://static.crates.io/crates/find-msvc-tools/0.1.9/download" } }, "targets": [ { "Library": { "crate_name": "find_msvc_tools", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "find_msvc_tools", + "version": "0.1.9" + }, + "foreign-types 0.3.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "foreign-types-shared 0.1.1", + "target": "foreign_types_shared" + } ], - "edition": "2018", - "version": "0.1.9" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "foreign_types", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "foreign-types 0.3.2": { "name": "foreign-types", - "version": "0.3.2", "package_url": "https://github.com/sfackler/foreign-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/foreign-types/0.3.2/download", - "sha256": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" + "sha256": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1", + "url": "https://static.crates.io/crates/foreign-types/0.3.2/download" } }, "targets": [ { "Library": { "crate_name": "foreign_types", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "foreign_types", + "version": "0.3.2" + }, + "foreign-types-shared 0.1.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "foreign-types-shared 0.1.1", - "target": "foreign_types_shared" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.3.2" + "edition": "2015" }, + "library_target_name": "foreign_types_shared", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "foreign-types-shared 0.1.1": { "name": "foreign-types-shared", - "version": "0.1.1", "package_url": "https://github.com/sfackler/foreign-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/foreign-types-shared/0.1.1/download", - "sha256": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + "sha256": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b", + "url": "https://static.crates.io/crates/foreign-types-shared/0.1.1/download" } }, "targets": [ { "Library": { "crate_name": "foreign_types_shared", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "foreign_types_shared", + "version": "0.1.1" + }, + "libc 0.2.186": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" + ], + "deps": [ + { + "id": "libc 0.2.186", + "target": "build_script_build" + } ], - "edition": "2015", - "version": "0.1.1" + "edition": "2021" }, - "license": "MIT/Apache-2.0", + "library_target_name": "libc", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "libc 0.2.186": { "name": "libc", - "version": "0.2.186", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.186/download", - "sha256": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + "sha256": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66", + "url": "https://static.crates.io/crates/libc/0.2.186/download" } }, "targets": [ { "Library": { "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "libc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.186", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.186" - }, + "version": "0.2.186" + }, + "openssl 0.10.80": { "build_script_attrs": { - "compile_data_glob": [ - "**" + "link_deps": [ + { + "alias": "ffi", + "id": "openssl-sys 0.9.116", + "target": "openssl_sys" + } + ] + }, + "common_attrs": { + "crate_features": [ + "default" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "bitflags 2.11.1", + "target": "bitflags" + }, + { + "id": "cfg-if 1.0.4", + "target": "cfg_if" + }, + { + "id": "foreign-types 0.3.2", + "target": "foreign_types" + }, + { + "id": "libc 0.2.186", + "target": "libc" + }, + { + "id": "openssl 0.10.80", + "target": "build_script_build" + }, + { + "alias": "ffi", + "id": "openssl-sys 0.9.116", + "target": "openssl_sys" + } ], - "data_glob": [ - "**" + "edition": "2021", + "proc_macro_deps": [ + { + "id": "openssl-macros 0.1.1", + "target": "openssl_macros" + } ] }, - "license": "MIT OR Apache-2.0", + "library_target_name": "openssl", + "license": "Apache-2.0", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": "LICENSE-APACHE" - }, - "openssl 0.10.80": { "name": "openssl", - "version": "0.10.80", "package_url": "https://github.com/rust-openssl/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl/0.10.80/download", - "sha256": "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967" + "sha256": "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967", + "url": "https://static.crates.io/crates/openssl/0.10.80/download" } }, "targets": [ { "Library": { "crate_name": "openssl", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "openssl", + "version": "0.10.80" + }, + "openssl-macros 0.1.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bitflags 2.11.1", - "target": "bitflags" - }, - { - "id": "cfg-if 1.0.4", - "target": "cfg_if" - }, - { - "id": "foreign-types 0.3.2", - "target": "foreign_types" - }, - { - "id": "libc 0.2.186", - "target": "libc" - }, - { - "id": "openssl 0.10.80", - "target": "build_script_build" - }, - { - "id": "openssl-sys 0.9.116", - "target": "openssl_sys", - "alias": "ffi" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "openssl-macros 0.1.1", - "target": "openssl_macros" - } - ], - "selects": {} - }, - "version": "0.10.80" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + } ], - "link_deps": { - "common": [ - { - "id": "openssl-sys 0.9.116", - "target": "openssl_sys", - "alias": "ffi" - } - ], - "selects": {} - } + "edition": "2018" }, - "license": "Apache-2.0", + "library_target_name": "openssl_macros", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "Apache-2.0" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" - }, - "openssl-macros 0.1.1": { "name": "openssl-macros", - "version": "0.1.1", - "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-macros/0.1.1/download", - "sha256": "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" + "sha256": "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c", + "url": "https://static.crates.io/crates/openssl-macros/0.1.1/download" } }, "targets": [ { "ProcMacro": { "crate_name": "openssl_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "openssl_macros", + "version": "0.1.1" + }, + "openssl-sys 0.9.116": { + "build_script_attrs": { + "build_script_env": { + "OPENSSL_DIR": "$(execpath @openssl//:install)", + "OPENSSL_NO_VENDOR": "1", + "OPENSSL_STATIC": "1" + }, + "data": [ + "@openssl//:install" + ], + "deps": [ + { + "id": "cc 1.2.62", + "target": "cc" + }, + { + "id": "pkg-config 0.3.33", + "target": "pkg_config" + }, + { + "id": "vcpkg 0.2.15", + "target": "vcpkg" + } + ], + "links": "openssl" + }, "common_attrs": { - "compile_data_glob": [ - "**" + "compile_data": [ + "@openssl//:install" ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "syn 2.0.117", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.1" + "deps": [ + { + "id": "libc 0.2.186", + "target": "libc" + }, + { + "id": "openssl-sys 0.9.116", + "target": "build_script_main" + } + ], + "edition": "2021" }, - "license": "MIT/Apache-2.0", + "library_target_name": "openssl_sys", + "license": "MIT", + "license_file": "LICENSE-MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "openssl-sys 0.9.116": { "name": "openssl-sys", - "version": "0.9.116", "package_url": "https://github.com/rust-openssl/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-sys/0.9.116/download", - "sha256": "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4" + "sha256": "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4", + "url": "https://static.crates.io/crates/openssl-sys/0.9.116/download" } }, "targets": [ { "Library": { "crate_name": "openssl_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_main", - "crate_root": "build/main.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build/main.rs" } } ], - "library_target_name": "openssl_sys", + "version": "0.9.116" + }, + "pkg-config 0.3.33": { "common_attrs": { - "compile_data": { - "common": [ - "@openssl//:install" - ], - "selects": {} - }, - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.186", - "target": "libc" - }, - { - "id": "openssl-sys 0.9.116", - "target": "build_script_main" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.9.116" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data": { - "common": [ - "@openssl//:install" - ], - "selects": {} - }, - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.62", - "target": "cc" - }, - { - "id": "pkg-config 0.3.33", - "target": "pkg_config" - }, - { - "id": "vcpkg 0.2.15", - "target": "vcpkg" - } - ], - "selects": {} - }, - "build_script_env": { - "common": { - "OPENSSL_DIR": "$(execpath @openssl//:install)", - "OPENSSL_NO_VENDOR": "1", - "OPENSSL_STATIC": "1" - }, - "selects": {} - }, - "links": "openssl" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "pkg_config", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE-MIT" - }, - "pkg-config 0.3.33": { "name": "pkg-config", - "version": "0.3.33", "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.33/download", - "sha256": "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" + "sha256": "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e", + "url": "https://static.crates.io/crates/pkg-config/0.3.33/download" } }, "targets": [ { "Library": { "crate_name": "pkg_config", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pkg_config", + "version": "0.3.33" + }, + "proc-macro2 1.0.106": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "edition": "2018", - "version": "0.3.33" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.24", + "target": "unicode_ident" + } + ], + "edition": "2021" }, + "library_target_name": "proc_macro2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.106": { "name": "proc-macro2", - "version": "1.0.106", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download", - "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" + "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934", + "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "proc_macro2", + "version": "1.0.106" + }, + "quote 1.0.45": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.24", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.106" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "quote", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.45": { "name": "quote", - "version": "1.0.45", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.45/download", - "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" + "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924", + "url": "https://static.crates.io/crates/quote/1.0.45/download" } }, "targets": [ { "Library": { "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "quote", + "version": "1.0.45" + }, + "shlex 1.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.45" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "shlex", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "shlex 1.3.0": { "name": "shlex", - "version": "1.3.0", "package_url": "https://github.com/comex/rust-shlex", "repository": { "Http": { - "url": "https://static.crates.io/crates/shlex/1.3.0/download", - "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64", + "url": "https://static.crates.io/crates/shlex/1.3.0/download" } }, "targets": [ { "Library": { "crate_name": "shlex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "shlex", + "version": "1.3.0" + }, + "syn 2.0.117": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "clone-impls", + "default", + "derive", + "full", + "parsing", + "printing", + "proc-macro" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.3.0" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "unicode-ident 1.0.24", + "target": "unicode_ident" + } + ], + "edition": "2021" }, + "library_target_name": "syn", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "syn 2.0.117": { "name": "syn", - "version": "2.0.117", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.117/download", - "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" + "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99", + "url": "https://static.crates.io/crates/syn/2.0.117/download" } }, "targets": [ { "Library": { "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "syn", + "version": "2.0.117" + }, + "unicode-ident 1.0.24": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "clone-impls", - "default", - "derive", - "full", - "parsing", - "printing", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "unicode-ident 1.0.24", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.117" + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "unicode_ident", + "license": "(MIT OR Apache-2.0) AND Unicode-3.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "MIT" + "MIT", + "Unicode-3.0" ], - "license_file": "LICENSE-APACHE" - }, - "unicode-ident 1.0.24": { "name": "unicode-ident", - "version": "1.0.24", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.24/download", - "sha256": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + "sha256": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75", + "url": "https://static.crates.io/crates/unicode-ident/1.0.24/download" } }, "targets": [ { "Library": { "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_ident", + "version": "1.0.24" + }, + "vcpkg 0.2.15": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "1.0.24" + "edition": "2015" }, - "license": "(MIT OR Apache-2.0) AND Unicode-3.0", + "library_target_name": "vcpkg", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "MIT", - "Unicode-3.0" + "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "vcpkg 0.2.15": { "name": "vcpkg", - "version": "0.2.15", "package_url": "https://github.com/mcgoo/vcpkg-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/vcpkg/0.2.15/download", - "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426", + "url": "https://static.crates.io/crates/vcpkg/0.2.15/download" } }, "targets": [ { "Library": { "crate_name": "vcpkg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "vcpkg", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.2.15" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.2.15" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "openssl 0.10.80" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/ext_annotations/cargo-bazel-lock.json b/crate_universe/tests/integration/ext_annotations/cargo-bazel-lock.json index 91febb4b0a..2aeb161cc7 100644 --- a/crate_universe/tests/integration/ext_annotations/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/ext_annotations/cargo-bazel-lock.json @@ -1,1299 +1,909 @@ { - "checksum": "676b31fe0b99f6a38059a9be5242e51924a62225884d768ff2bb7044c5bc5f9d", + "checksum": "4a10d92a48ac3422e941e34fb3d4e3ffa4dc306ae920838480942a00f26f10fc", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(any())": [], + "cfg(windows)": [ + "x86_64-pc-windows-msvc" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "cc 1.2.59": { + "common_attrs": { + "deps": [ + { + "id": "find-msvc-tools 0.1.9", + "target": "find_msvc_tools" + }, + { + "id": "shlex 1.3.0", + "target": "shlex" + } + ], + "edition": "2018" + }, + "library_target_name": "cc", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "cc", - "version": "1.2.59", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.59/download", - "sha256": "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283" + "sha256": "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283", + "url": "https://static.crates.io/crates/cc/1.2.59/download" } }, "targets": [ { "Library": { "crate_name": "cc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cc", + "version": "1.2.59" + }, + "codespan-reporting 0.13.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "unicode-width 0.2.2", + "target": "unicode_width" + } ], - "deps": { - "common": [ - { - "id": "find-msvc-tools 0.1.9", - "target": "find_msvc_tools" - }, - { - "id": "shlex 1.3.0", - "target": "shlex" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.2.59" + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "codespan_reporting", + "license": "Apache-2.0", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": "LICENSE-APACHE" - }, - "codespan-reporting 0.13.1": { "name": "codespan-reporting", - "version": "0.13.1", "package_url": "https://github.com/brendanzab/codespan", "repository": { "Http": { - "url": "https://static.crates.io/crates/codespan-reporting/0.13.1/download", - "sha256": "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" + "sha256": "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681", + "url": "https://static.crates.io/crates/codespan-reporting/0.13.1/download" } }, "targets": [ { "Library": { "crate_name": "codespan_reporting", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "codespan_reporting", + "version": "0.13.1" + }, + "cxx 1.0.194": { + "additive_build_file_content": "load(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\ncc_library(\n name = \"cxx_cc\",\n srcs = [\"src/cxx.cc\"],\n hdrs = [\"include/cxx.h\"],\n include_prefix = \"rust\",\n includes = [\"include\"],\n linkstatic = True,\n strip_include_prefix = \"include\",\n visibility = [\"//visibility:public\"],\n)\n", "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "std" + ], + "deps": [ + { + "id": "foldhash 0.2.0", + "target": "foldhash" + }, + { + "id": "link-cplusplus 1.0.12", + "target": "link_cplusplus" + } ], - "deps": { - "common": [ - { - "id": "unicode-width 0.2.2", - "target": "unicode_width" - } - ], - "selects": {} - }, "edition": "2021", - "version": "0.13.1" + "extra_deps": [ + ":cxx_cc" + ], + "proc_macro_deps": [ + { + "id": "cxxbridge-macro 1.0.194", + "target": "cxxbridge_macro" + } + ] }, - "license": "Apache-2.0", + "extra_aliased_targets": { + "cxx_cc": "cxx_cc" + }, + "library_target_name": "cxx", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "Apache-2.0" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" - }, - "cxx 1.0.194": { "name": "cxx", - "version": "1.0.194", "package_url": "https://github.com/dtolnay/cxx", "repository": { "Http": { - "url": "https://static.crates.io/crates/cxx/1.0.194/download", - "sha256": "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e" + "sha256": "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e", + "url": "https://static.crates.io/crates/cxx/1.0.194/download" } }, "targets": [ { "Library": { "crate_name": "cxx", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cxx", + "version": "1.0.194" + }, + "cxx-build 1.0.194": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "cc 1.2.59", + "target": "cc" + }, + { + "id": "codespan-reporting 0.13.1", + "target": "codespan_reporting" + }, + { + "id": "indexmap 2.13.1", + "target": "indexmap" + }, + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "scratch 1.0.9", + "target": "scratch" + }, + { + "id": "syn 2.0.117", + "target": "syn" + } ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "foldhash 0.2.0", - "target": "foldhash" - }, - { - "id": "link-cplusplus 1.0.12", - "target": "link_cplusplus" - } - ], - "selects": {} - }, - "extra_deps": { - "common": [ - ":cxx_cc" - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "cxxbridge-macro 1.0.194", - "target": "cxxbridge_macro" - } - ], - "selects": {} - }, - "version": "1.0.194" + "edition": "2021" }, + "library_target_name": "cxx_build", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE", - "additive_build_file_content": "load(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\ncc_library(\n name = \"cxx_cc\",\n srcs = [\"src/cxx.cc\"],\n hdrs = [\"include/cxx.h\"],\n include_prefix = \"rust\",\n includes = [\"include\"],\n linkstatic = True,\n strip_include_prefix = \"include\",\n visibility = [\"//visibility:public\"],\n)\n", - "extra_aliased_targets": { - "cxx_cc": "cxx_cc" - } - }, - "cxx-build 1.0.194": { "name": "cxx-build", - "version": "1.0.194", "package_url": "https://github.com/dtolnay/cxx", "repository": { "Http": { - "url": "https://static.crates.io/crates/cxx-build/1.0.194/download", - "sha256": "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e" + "sha256": "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e", + "url": "https://static.crates.io/crates/cxx-build/1.0.194/download" } }, "targets": [ { "Library": { "crate_name": "cxx_build", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cxx_build", + "version": "1.0.194" + }, + "cxxbridge-flags 1.0.194": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "deps": { - "common": [ - { - "id": "cc 1.2.59", - "target": "cc" - }, - { - "id": "codespan-reporting 0.13.1", - "target": "codespan_reporting" - }, - { - "id": "indexmap 2.13.1", - "target": "indexmap" - }, - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "scratch 1.0.9", - "target": "scratch" - }, - { - "id": "syn 2.0.117", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.194" + "edition": "2021" }, + "library_target_name": "cxxbridge_flags", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cxxbridge-flags 1.0.194": { "name": "cxxbridge-flags", - "version": "1.0.194", "package_url": "https://github.com/dtolnay/cxx", "repository": { "Http": { - "url": "https://static.crates.io/crates/cxxbridge-flags/1.0.194/download", - "sha256": "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a" + "sha256": "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a", + "url": "https://static.crates.io/crates/cxxbridge-flags/1.0.194/download" } }, "targets": [ { "Library": { "crate_name": "cxxbridge_flags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cxxbridge_flags", + "version": "1.0.194" + }, + "cxxbridge-macro 1.0.194": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "indexmap 2.13.1", + "target": "indexmap" + }, + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + } ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.194" + "edition": "2021" }, + "library_target_name": "cxxbridge_macro", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cxxbridge-macro 1.0.194": { "name": "cxxbridge-macro", - "version": "1.0.194", "package_url": "https://github.com/dtolnay/cxx", "repository": { "Http": { - "url": "https://static.crates.io/crates/cxxbridge-macro/1.0.194/download", - "sha256": "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf" + "sha256": "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf", + "url": "https://static.crates.io/crates/cxxbridge-macro/1.0.194/download" } }, "targets": [ { "ProcMacro": { "crate_name": "cxxbridge_macro", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cxxbridge_macro", + "version": "1.0.194" + }, + "direct-cargo-bazel-deps 0.0.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "cxx 1.0.194", + "target": "cxx" + } ], - "deps": { - "common": [ - { - "id": "indexmap 2.13.1", - "target": "indexmap" - }, - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "syn 2.0.117", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.194" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "direct-cargo-bazel-deps 0.0.1": { + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cxx 1.0.194", - "target": "cxx" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.0.1" }, "equivalent 1.0.2": { + "common_attrs": { + "edition": "2015" + }, + "library_target_name": "equivalent", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "equivalent", - "version": "1.0.2", "package_url": "https://github.com/indexmap-rs/equivalent", "repository": { "Http": { - "url": "https://static.crates.io/crates/equivalent/1.0.2/download", - "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f", + "url": "https://static.crates.io/crates/equivalent/1.0.2/download" } }, "targets": [ { "Library": { "crate_name": "equivalent", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "equivalent", + "version": "1.0.2" + }, + "find-msvc-tools 0.1.9": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.0.2" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "find_msvc_tools", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "find-msvc-tools 0.1.9": { "name": "find-msvc-tools", - "version": "0.1.9", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/find-msvc-tools/0.1.9/download", - "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582", + "url": "https://static.crates.io/crates/find-msvc-tools/0.1.9/download" } }, "targets": [ { "Library": { "crate_name": "find_msvc_tools", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "find_msvc_tools", + "version": "0.1.9" + }, + "foldhash 0.2.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "edition": "2018", - "version": "0.1.9" + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "foldhash", + "license": "Zlib", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "MIT" + "Zlib" ], - "license_file": "LICENSE-APACHE" - }, - "foldhash 0.2.0": { "name": "foldhash", - "version": "0.2.0", "package_url": "https://github.com/orlp/foldhash", "repository": { "Http": { - "url": "https://static.crates.io/crates/foldhash/0.2.0/download", - "sha256": "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + "sha256": "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb", + "url": "https://static.crates.io/crates/foldhash/0.2.0/download" } }, "targets": [ { "Library": { "crate_name": "foldhash", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "foldhash", + "version": "0.2.0" + }, + "hashbrown 0.16.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.0" + "edition": "2021" }, - "license": "Zlib", + "library_target_name": "hashbrown", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "Zlib" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" - }, - "hashbrown 0.16.1": { "name": "hashbrown", - "version": "0.16.1", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.16.1/download", - "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100", + "url": "https://static.crates.io/crates/hashbrown/0.16.1/download" } }, "targets": [ { "Library": { "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hashbrown", + "version": "0.16.1" + }, + "indexmap 2.13.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2021", - "version": "0.16.1" + "deps": [ + { + "id": "equivalent 1.0.2", + "target": "equivalent" + }, + { + "id": "hashbrown 0.16.1", + "target": "hashbrown" + } + ], + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "indexmap", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 2.13.1": { "name": "indexmap", - "version": "2.13.1", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.13.1/download", - "sha256": "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff" + "sha256": "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff", + "url": "https://static.crates.io/crates/indexmap/2.13.1/download" } }, "targets": [ { "Library": { "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "indexmap", + "version": "2.13.1" + }, + "link-cplusplus 1.0.12": { + "build_script_attrs": { + "deps": [ + { + "id": "cc 1.2.59", + "target": "cc" + } + ], + "links": "cplusplus" + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "equivalent 1.0.2", - "target": "equivalent" - }, - { - "id": "hashbrown 0.16.1", - "target": "hashbrown" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.13.1" + "deps": [ + { + "id": "link-cplusplus 1.0.12", + "target": "build_script_build" + } + ], + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "link_cplusplus", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "link-cplusplus 1.0.12": { "name": "link-cplusplus", - "version": "1.0.12", "package_url": "https://github.com/dtolnay/link-cplusplus", "repository": { "Http": { - "url": "https://static.crates.io/crates/link-cplusplus/1.0.12/download", - "sha256": "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82" + "sha256": "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82", + "url": "https://static.crates.io/crates/link-cplusplus/1.0.12/download" } }, "targets": [ { "Library": { "crate_name": "link_cplusplus", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "link_cplusplus", + "version": "1.0.12" + }, + "proc-macro2 1.0.106": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "link-cplusplus 1.0.12", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.12" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.11", + "target": "unicode_ident" + } ], - "deps": { - "common": [ - { - "id": "cc 1.2.59", - "target": "cc" - } - ], - "selects": {} - }, - "links": "cplusplus" + "edition": "2021" }, + "library_target_name": "proc_macro2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.106": { "name": "proc-macro2", - "version": "1.0.106", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download", - "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" + "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934", + "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "proc_macro2", + "version": "1.0.106" + }, + "quote 1.0.45": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.11", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.106" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "quote", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.45": { "name": "quote", - "version": "1.0.45", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.45/download", - "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" + "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924", + "url": "https://static.crates.io/crates/quote/1.0.45/download" } }, "targets": [ { "Library": { "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "quote", + "version": "1.0.45" + }, + "scratch 1.0.9": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.45" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "scratch 1.0.9", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "scratch", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "scratch 1.0.9": { "name": "scratch", - "version": "1.0.9", "package_url": "https://github.com/dtolnay/scratch", "repository": { "Http": { - "url": "https://static.crates.io/crates/scratch/1.0.9/download", - "sha256": "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2" + "sha256": "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2", + "url": "https://static.crates.io/crates/scratch/1.0.9/download" } }, "targets": [ { "Library": { "crate_name": "scratch", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "scratch", + "version": "1.0.9" + }, + "serde 1.0.228": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "scratch 1.0.9", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "1.0.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "serde 1.0.228", + "target": "build_script_build" + }, + { + "id": "serde_core 1.0.228", + "target": "serde_core" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "serde", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde 1.0.228": { "name": "serde", - "version": "1.0.228", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde/1.0.228/download", - "sha256": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" + "sha256": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e", + "url": "https://static.crates.io/crates/serde/1.0.228/download" } }, "targets": [ { "Library": { "crate_name": "serde", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde", + "version": "1.0.228" + }, + "serde_core 1.0.228": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "serde_core 1.0.228", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "serde 1.0.228", - "target": "build_script_build" - }, - { - "id": "serde_core 1.0.228", - "target": "serde_core" - } - ], - "selects": {} - }, "edition": "2021", - "version": "1.0.228" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "proc_macro_deps": { + "common": [], + "selects": { + "cfg(any())": [ + { + "id": "serde_derive 1.0.228", + "target": "serde_derive" + } + ] + } + } }, + "library_target_name": "serde_core", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_core 1.0.228": { "name": "serde_core", - "version": "1.0.228", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_core/1.0.228/download", - "sha256": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" + "sha256": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad", + "url": "https://static.crates.io/crates/serde_core/1.0.228/download" } }, "targets": [ { "Library": { "crate_name": "serde_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde_core", + "version": "1.0.228" + }, + "serde_derive 1.0.228": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "serde_core 1.0.228", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "serde_derive 1.0.228", - "target": "serde_derive" - } - ] + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" } - }, - "version": "1.0.228" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "serde_derive", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_derive 1.0.228": { "name": "serde_derive", - "version": "1.0.228", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.228/download", - "sha256": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" + "sha256": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79", + "url": "https://static.crates.io/crates/serde_derive/1.0.228/download" } }, "targets": [ { "ProcMacro": { "crate_name": "serde_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "serde_derive", + "version": "1.0.228" + }, + "shlex 1.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "syn 2.0.117", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.228" + "edition": "2015" }, + "library_target_name": "shlex", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "shlex 1.3.0": { "name": "shlex", - "version": "1.3.0", "package_url": "https://github.com/comex/rust-shlex", "repository": { "Http": { - "url": "https://static.crates.io/crates/shlex/1.3.0/download", - "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64", + "url": "https://static.crates.io/crates/shlex/1.3.0/download" } }, "targets": [ { "Library": { "crate_name": "shlex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "shlex", + "version": "1.3.0" + }, + "syn 2.0.117": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "clone-impls", + "default", + "derive", + "full", + "parsing", + "printing", + "proc-macro" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.3.0" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "unicode-ident 1.0.11", + "target": "unicode_ident" + } + ], + "edition": "2021" }, + "library_target_name": "syn", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "syn 2.0.117": { "name": "syn", - "version": "2.0.117", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.117/download", - "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" + "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99", + "url": "https://static.crates.io/crates/syn/2.0.117/download" } }, "targets": [ { "Library": { "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "syn", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "clone-impls", - "default", - "derive", - "full", - "parsing", - "printing", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "unicode-ident 1.0.11", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.117" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "2.0.117" }, "termcolor 1.4.1": { - "name": "termcolor", - "version": "1.4.1", - "package_url": "https://github.com/BurntSushi/termcolor", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/termcolor/1.4.1/download", - "sha256": "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" - } - }, - "targets": [ - { - "Library": { - "crate_name": "termcolor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "termcolor", "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -1305,124 +915,94 @@ ] } }, - "edition": "2018", - "version": "1.4.1" + "edition": "2018" }, + "library_target_name": "termcolor", "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" - }, - "unicode-ident 1.0.11": { - "name": "unicode-ident", - "version": "1.0.11", - "package_url": "https://github.com/dtolnay/unicode-ident", + "name": "termcolor", + "package_url": "https://github.com/BurntSushi/termcolor", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.11/download", - "sha256": "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + "sha256": "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755", + "url": "https://static.crates.io/crates/termcolor/1.4.1/download" } }, "targets": [ { "Library": { - "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "termcolor", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_ident", + "version": "1.4.1" + }, + "unicode-ident 1.0.11": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.11" + "edition": "2018" }, + "library_target_name": "unicode_ident", "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT", "Unicode-DFS-2016" ], - "license_file": "LICENSE-APACHE" - }, - "unicode-width 0.2.2": { - "name": "unicode-width", - "version": "0.2.2", - "package_url": "https://github.com/unicode-rs/unicode-width", + "name": "unicode-ident", + "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.2.2/download", - "sha256": "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + "sha256": "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c", + "url": "https://static.crates.io/crates/unicode-ident/1.0.11/download" } }, "targets": [ { "Library": { - "crate_name": "unicode_width", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unicode_ident", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_width", + "version": "1.0.11" + }, + "unicode-width 0.2.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.2.2" + "edition": "2021" }, + "library_target_name": "unicode_width", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi-util 0.1.11": { - "name": "winapi-util", - "version": "0.1.11", - "package_url": "https://github.com/BurntSushi/winapi-util", + "name": "unicode-width", + "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.11/download", - "sha256": "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" + "sha256": "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254", + "url": "https://static.crates.io/crates/unicode-width/0.2.2/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unicode_width", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "winapi_util", + "version": "0.2.2" + }, + "winapi-util 0.1.11": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -1434,138 +1014,103 @@ ] } }, - "edition": "2021", - "version": "0.1.11" + "edition": "2021" }, + "library_target_name": "winapi_util", "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" - }, - "windows-link 0.2.1": { - "name": "windows-link", - "version": "0.2.1", - "package_url": "https://github.com/microsoft/windows-rs", + "name": "winapi-util", + "package_url": "https://github.com/BurntSushi/winapi-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-link/0.2.1/download", - "sha256": "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + "sha256": "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22", + "url": "https://static.crates.io/crates/winapi-util/0.1.11/download" } }, "targets": [ { "Library": { - "crate_name": "windows_link", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi_util", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_link", + "version": "0.1.11" + }, + "windows-link 0.2.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.2.1" + "edition": "2021" }, + "library_target_name": "windows_link", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.61.2": { - "name": "windows-sys", - "version": "0.61.2", + "name": "windows-link", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.61.2/download", - "sha256": "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" + "sha256": "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5", + "url": "https://static.crates.io/crates/windows-link/0.2.1/download" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "windows_link", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_sys", + "version": "0.2.1" + }, + "windows-sys 0.61.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "windows-link 0.2.1", + "target": "windows_link" + } ], - "deps": { - "common": [ - { - "id": "windows-link 0.2.1", - "target": "windows_link" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.61.2" + "edition": "2021" }, + "library_target_name": "windows_sys", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "name": "windows-sys", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "sha256": "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc", + "url": "https://static.crates.io/crates/windows-sys/0.61.2/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_sys", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.61.2" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(any())": [], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "cxx 1.0.194" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/crate_universe/tests/integration/ext_annotations/cxxbridge-cmd.cargo-bazel-lock.json b/crate_universe/tests/integration/ext_annotations/cxxbridge-cmd.cargo-bazel-lock.json index 1fb1a0aea8..dfc1f9a6b3 100644 --- a/crate_universe/tests/integration/ext_annotations/cxxbridge-cmd.cargo-bazel-lock.json +++ b/crate_universe/tests/integration/ext_annotations/cxxbridge-cmd.cargo-bazel-lock.json @@ -1,502 +1,377 @@ { - "checksum": "36ad94ac3e69b08f634b3efb6329313e021452196eeb86abf7a8bea292a39dbd", + "checksum": "470e1d3e33d75d1aeda18cff8acee217bde78ba8fece82fa268e68e1081af7f9", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(any())": [], + "cfg(windows)": [ + "x86_64-pc-windows-msvc" + ], + "i686-pc-windows-gnu": [], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-gnu": [], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "anstyle 1.0.1": { + "common_attrs": { + "crate_features": [ + "default", + "std" + ], + "edition": "2021" + }, + "library_target_name": "anstyle", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "anstyle", - "version": "1.0.1", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle/1.0.1/download", - "sha256": "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" + "sha256": "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd", + "url": "https://static.crates.io/crates/anstyle/1.0.1/download" } }, "targets": [ { "Library": { "crate_name": "anstyle", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "anstyle", + "version": "1.0.1" + }, + "clap 4.3.21": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "error-context", + "help", + "std", + "suggestions", + "usage" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.1" + "deps": [ + { + "id": "clap_builder 4.3.21", + "target": "clap_builder" + } + ], + "edition": "2021" }, + "library_target_name": "clap", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap 4.3.21": { "name": "clap", - "version": "4.3.21", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.3.21/download", - "sha256": "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" + "sha256": "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd", + "url": "https://static.crates.io/crates/clap/4.3.21/download" } }, "targets": [ { "Library": { "crate_name": "clap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap", + "version": "4.3.21" + }, + "clap_builder 4.3.21": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "error-context", + "help", + "std", + "suggestions", + "usage" ], - "crate_features": { - "common": [ - "error-context", - "help", - "std", - "suggestions", - "usage" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "clap_builder 4.3.21", - "target": "clap_builder" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "4.3.21" + "deps": [ + { + "id": "anstyle 1.0.1", + "target": "anstyle" + }, + { + "id": "clap_lex 0.5.0", + "target": "clap_lex" + }, + { + "id": "strsim 0.10.0", + "target": "strsim" + } + ], + "edition": "2021" }, + "library_target_name": "clap_builder", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap_builder 4.3.21": { "name": "clap_builder", - "version": "4.3.21", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.3.21/download", - "sha256": "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" + "sha256": "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa", + "url": "https://static.crates.io/crates/clap_builder/4.3.21/download" } }, "targets": [ { "Library": { "crate_name": "clap_builder", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap_builder", + "version": "4.3.21" + }, + "clap_lex 0.5.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "error-context", - "help", - "std", - "suggestions", - "usage" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anstyle 1.0.1", - "target": "anstyle" - }, - { - "id": "clap_lex 0.5.0", - "target": "clap_lex" - }, - { - "id": "strsim 0.10.0", - "target": "strsim" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "4.3.21" + "edition": "2021" }, + "library_target_name": "clap_lex", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "clap_lex 0.5.0": { "name": "clap_lex", - "version": "0.5.0", "package_url": "https://github.com/clap-rs/clap/tree/master/clap_lex", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.5.0/download", - "sha256": "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" + "sha256": "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b", + "url": "https://static.crates.io/crates/clap_lex/0.5.0/download" } }, "targets": [ { "Library": { "crate_name": "clap_lex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "clap_lex", + "version": "0.5.0" + }, + "codespan-reporting 0.13.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std", + "termcolor" ], - "edition": "2021", - "version": "0.5.0" + "deps": [ + { + "id": "termcolor 1.2.0", + "target": "termcolor" + }, + { + "id": "unicode-width 0.1.10", + "target": "unicode_width" + } + ], + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "codespan_reporting", + "license": "Apache-2.0", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": "LICENSE-APACHE" - }, - "codespan-reporting 0.13.1": { "name": "codespan-reporting", - "version": "0.13.1", "package_url": "https://github.com/brendanzab/codespan", "repository": { "Http": { - "url": "https://static.crates.io/crates/codespan-reporting/0.13.1/download", - "sha256": "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" + "sha256": "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681", + "url": "https://static.crates.io/crates/codespan-reporting/0.13.1/download" } }, "targets": [ { "Library": { "crate_name": "codespan_reporting", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "codespan_reporting", + "version": "0.13.1" + }, + "cxxbridge-cmd 1.0.194": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "clap 4.3.21", + "target": "clap" + }, + { + "id": "codespan-reporting 0.13.1", + "target": "codespan_reporting" + }, + { + "id": "indexmap 2.13.1", + "target": "indexmap" + }, + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + } ], - "crate_features": { - "common": [ - "default", - "std", - "termcolor" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "termcolor 1.2.0", - "target": "termcolor" - }, - { - "id": "unicode-width 0.1.10", - "target": "unicode_width" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.13.1" + "edition": "2021" }, - "license": "Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ - "Apache-2.0" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" - }, - "cxxbridge-cmd 1.0.194": { "name": "cxxbridge-cmd", - "version": "1.0.194", "package_url": "https://github.com/dtolnay/cxx", "repository": null, "targets": [], - "library_target_name": null, + "version": "1.0.194" + }, + "equivalent 1.0.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "clap 4.3.21", - "target": "clap" - }, - { - "id": "codespan-reporting 0.13.1", - "target": "codespan_reporting" - }, - { - "id": "indexmap 2.13.1", - "target": "indexmap" - }, - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "syn 2.0.117", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.194" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "equivalent", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null - }, - "equivalent 1.0.2": { "name": "equivalent", - "version": "1.0.2", "package_url": "https://github.com/indexmap-rs/equivalent", "repository": { "Http": { - "url": "https://static.crates.io/crates/equivalent/1.0.2/download", - "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f", + "url": "https://static.crates.io/crates/equivalent/1.0.2/download" } }, "targets": [ { "Library": { "crate_name": "equivalent", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "equivalent", + "version": "1.0.2" + }, + "hashbrown 0.16.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.0.2" + "edition": "2021" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "hashbrown", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "hashbrown 0.16.1": { "name": "hashbrown", - "version": "0.16.1", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.16.1/download", - "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100", + "url": "https://static.crates.io/crates/hashbrown/0.16.1/download" } }, "targets": [ { "Library": { "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hashbrown", + "version": "0.16.1" + }, + "indexmap 2.13.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2021", - "version": "0.16.1" + "deps": [ + { + "id": "equivalent 1.0.2", + "target": "equivalent" + }, + { + "id": "hashbrown 0.16.1", + "target": "hashbrown" + } + ], + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "indexmap", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 2.13.1": { "name": "indexmap", - "version": "2.13.1", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.13.1/download", - "sha256": "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff" + "sha256": "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff", + "url": "https://static.crates.io/crates/indexmap/2.13.1/download" } }, "targets": [ { "Library": { "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "indexmap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "equivalent 1.0.2", - "target": "equivalent" - }, - { - "id": "hashbrown 0.16.1", - "target": "hashbrown" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.13.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "2.13.1" }, "proc-macro2 1.0.106": { - "name": "proc-macro2", - "version": "1.0.106", - "package_url": "https://github.com/dtolnay/proc-macro2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download", - "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" - } - }, - "targets": [ - { - "Library": { - "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro2", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [ "span-locations" @@ -519,81 +394,52 @@ ] } }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.11", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.106" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.11", + "target": "unicode_ident" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "proc_macro2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.45": { - "name": "quote", - "version": "1.0.45", - "package_url": "https://github.com/dtolnay/quote", + "name": "proc-macro2", + "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.45/download", - "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" + "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934", + "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download" } }, "targets": [ { "Library": { - "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "proc_macro2", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "quote", + "version": "1.0.106" + }, + "quote 1.0.45": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [], "selects": { @@ -614,165 +460,104 @@ ] } }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.45" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "quote", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde 1.0.228": { - "name": "serde", - "version": "1.0.228", - "package_url": "https://github.com/serde-rs/serde", + "name": "quote", + "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde/1.0.228/download", - "sha256": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" + "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924", + "url": "https://static.crates.io/crates/quote/1.0.45/download" } }, "targets": [ { "Library": { - "crate_name": "serde", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "quote", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde", + "version": "1.0.45" + }, + "serde 1.0.228": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "serde 1.0.228", - "target": "build_script_build" - }, - { - "id": "serde_core 1.0.228", - "target": "serde_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.228" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "serde 1.0.228", + "target": "build_script_build" + }, + { + "id": "serde_core 1.0.228", + "target": "serde_core" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "serde", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_core 1.0.228": { - "name": "serde_core", - "version": "1.0.228", + "name": "serde", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_core/1.0.228/download", - "sha256": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" + "sha256": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e", + "url": "https://static.crates.io/crates/serde/1.0.228/download" } }, "targets": [ { "Library": { - "crate_name": "serde_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "serde", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde_core", + "version": "1.0.228" + }, + "serde_core 1.0.228": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "serde_core 1.0.228", + "target": "build_script_build" + } ], - "deps": { - "common": [ - { - "id": "serde_core 1.0.228", - "target": "build_script_build" - } - ], - "selects": {} - }, "edition": "2021", "proc_macro_deps": { "common": [], @@ -784,150 +569,112 @@ } ] } - }, - "version": "1.0.228" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + } }, + "library_target_name": "serde_core", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_derive 1.0.228": { - "name": "serde_derive", - "version": "1.0.228", + "name": "serde_core", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.228/download", - "sha256": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" + "sha256": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad", + "url": "https://static.crates.io/crates/serde_core/1.0.228/download" } }, "targets": [ { - "ProcMacro": { - "crate_name": "serde_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "Library": { + "crate_name": "serde_core", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "serde_derive", + "version": "1.0.228" + }, + "serde_derive 1.0.228": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + } ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "syn 2.0.117", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.228" + "edition": "2021" }, + "library_target_name": "serde_derive", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "strsim 0.10.0": { - "name": "strsim", - "version": "0.10.0", - "package_url": "https://github.com/dguo/strsim-rs", + "name": "serde_derive", + "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/strsim/0.10.0/download", - "sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + "sha256": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79", + "url": "https://static.crates.io/crates/serde_derive/1.0.228/download" } }, "targets": [ { - "Library": { - "crate_name": "strsim", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "ProcMacro": { + "crate_name": "serde_derive", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "strsim", + "version": "1.0.228" + }, + "strsim 0.10.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.10.0" + "edition": "2015" }, + "library_target_name": "strsim", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "syn 2.0.117": { - "name": "syn", - "version": "2.0.117", - "package_url": "https://github.com/dtolnay/syn", + "name": "strsim", + "package_url": "https://github.com/dguo/strsim-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.117/download", - "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" + "sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623", + "url": "https://static.crates.io/crates/strsim/0.10.0/download" } }, "targets": [ { "Library": { - "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "strsim", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "syn", + "version": "0.10.0" + }, + "syn 2.0.117": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [ "clone-impls", @@ -958,62 +705,49 @@ ] } }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.106", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.45", - "target": "quote" - }, - { - "id": "unicode-ident 1.0.11", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.117" + "deps": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "unicode-ident 1.0.11", + "target": "unicode_ident" + } + ], + "edition": "2021" }, + "library_target_name": "syn", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "termcolor 1.2.0": { - "name": "termcolor", - "version": "1.2.0", - "package_url": "https://github.com/BurntSushi/termcolor", + "name": "syn", + "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/termcolor/1.2.0/download", - "sha256": "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" + "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99", + "url": "https://static.crates.io/crates/syn/2.0.117/download" } }, "targets": [ { "Library": { - "crate_name": "termcolor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "syn", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "termcolor", + "version": "2.0.117" + }, + "termcolor 1.2.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -1025,157 +759,110 @@ ] } }, - "edition": "2018", - "version": "1.2.0" + "edition": "2018" }, + "library_target_name": "termcolor", "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" - }, - "unicode-ident 1.0.11": { - "name": "unicode-ident", - "version": "1.0.11", - "package_url": "https://github.com/dtolnay/unicode-ident", + "name": "termcolor", + "package_url": "https://github.com/BurntSushi/termcolor", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.11/download", - "sha256": "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + "sha256": "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6", + "url": "https://static.crates.io/crates/termcolor/1.2.0/download" } }, "targets": [ { "Library": { - "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "termcolor", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_ident", + "version": "1.2.0" + }, + "unicode-ident 1.0.11": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.11" + "edition": "2018" }, + "library_target_name": "unicode_ident", "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT", "Unicode-DFS-2016" ], - "license_file": "LICENSE-APACHE" - }, - "unicode-width 0.1.10": { - "name": "unicode-width", - "version": "0.1.10", - "package_url": "https://github.com/unicode-rs/unicode-width", + "name": "unicode-ident", + "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-width/0.1.10/download", - "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + "sha256": "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c", + "url": "https://static.crates.io/crates/unicode-ident/1.0.11/download" } }, "targets": [ { "Library": { - "crate_name": "unicode_width", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unicode_ident", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_width", + "version": "1.0.11" + }, + "unicode-width 0.1.10": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.1.10" + "edition": "2015" }, + "library_target_name": "unicode_width", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi 0.3.9": { - "name": "winapi", - "version": "0.3.9", - "package_url": "https://github.com/retep998/winapi-rs", + "name": "unicode-width", + "package_url": "https://github.com/unicode-rs/unicode-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi/0.3.9/download", - "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" + "sha256": "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b", + "url": "https://static.crates.io/crates/unicode-width/0.1.10/download" } }, "targets": [ { "Library": { - "crate_name": "winapi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unicode_width", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "winapi", + "version": "0.1.10" + }, + "winapi 0.3.9": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "consoleapi", + "errhandlingapi", + "fileapi", + "minwindef", + "processenv", + "std", + "winbase", + "wincon", + "winerror", + "winnt" ], - "crate_features": { - "common": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "std", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "selects": {} - }, "deps": { "common": [ { @@ -1198,127 +885,82 @@ ] } }, - "edition": "2015", - "version": "0.3.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi-i686-pc-windows-gnu 0.4.0": { - "name": "winapi-i686-pc-windows-gnu", - "version": "0.4.0", + "name": "winapi", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download", - "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", + "url": "https://static.crates.io/crates/winapi/0.3.9/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_i686_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_i686_pc_windows_gnu", + "version": "0.3.9" + }, + "winapi-i686-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "winapi-i686-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi_i686_pc_windows_gnu", "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null - }, - "winapi-util 0.1.5": { - "name": "winapi-util", - "version": "0.1.5", - "package_url": "https://github.com/BurntSushi/winapi-util", + "name": "winapi-i686-pc-windows-gnu", + "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.5/download", - "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" + "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", + "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi_i686_pc_windows_gnu", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_util", + "version": "0.4.0" + }, + "winapi-util 0.1.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -1330,121 +972,75 @@ ] } }, - "edition": "2018", - "version": "0.1.5" + "edition": "2018" }, + "library_target_name": "winapi_util", "license": "Unlicense/MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" + "name": "winapi-util", + "package_url": "https://github.com/BurntSushi/winapi-util", + "repository": { + "Http": { + "sha256": "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", + "url": "https://static.crates.io/crates/winapi-util/0.1.5/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "winapi_util", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.1.5" }, "winapi-x86_64-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, + "common_attrs": { + "deps": [ + { + "id": "winapi-x86_64-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } + ], + "edition": "2015" + }, + "library_target_name": "winapi_x86_64_pc_windows_gnu", + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "winapi-x86_64-pc-windows-gnu", - "version": "0.4.0", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", - "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", + "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { "crate_name": "winapi_x86_64_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_x86_64_pc_windows_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null + "version": "0.4.0" } }, - "binary_crates": [], - "workspace_members": { - "cxxbridge-cmd 1.0.194": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(any())": [], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "i686-pc-windows-gnu": [], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-gnu": [], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "clap 4.3.21", "codespan-reporting 0.13.1", @@ -1454,5 +1050,7 @@ "syn 2.0.117" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "cxxbridge-cmd 1.0.194": "" + } } diff --git a/crate_universe/tests/integration/multi_package/cargo-bazel-lock.json b/crate_universe/tests/integration/multi_package/cargo-bazel-lock.json index 33d2986cc7..1ac680eab6 100644 --- a/crate_universe/tests/integration/multi_package/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/multi_package/cargo-bazel-lock.json @@ -1,434 +1,430 @@ { - "checksum": "2adc9be14f0715289ffeef3797dde88bfce2401b02855a4bd10e07fda9d2d4c5", + "checksum": "cdb325e177633450379988731d32339dd209c31ec45b8797fb63cd110f492ff0", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-pc-windows-gnullvm": [], + "aarch64-pc-windows-msvc": [], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "aarch64-uwp-windows-msvc": [], + "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))": [], + "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ + "x86_64-pc-windows-msvc" + ], + "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [], + "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))": [], + "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ + "wasm32-unknown-unknown" + ], + "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ + "wasm32-unknown-unknown" + ], + "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [], + "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [], + "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(any(target_arch = \"aarch64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\", all(any(target_arch = \"aarch64\", target_arch = \"arm\"), any(target_os = \"android\", target_os = \"fuchsia\", target_os = \"linux\"))))": [ + "aarch64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ + "aarch64-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))": [], + "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(docsrs)": [], + "cfg(not(target_arch = \"wasm32\"))": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(not(windows))": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasip1", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(not(windows_raw_dylib))": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasip1", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(target_arch = \"wasm32\")": [ + "wasm32-unknown-unknown", + "wasm32-wasip1" + ], + "cfg(target_env = \"msvc\")": [ + "x86_64-pc-windows-msvc" + ], + "cfg(target_feature = \"atomics\")": [], + "cfg(target_os = \"wasi\")": [ + "wasm32-wasip1" + ], + "cfg(target_os = \"windows\")": [ + "x86_64-pc-windows-msvc" + ], + "cfg(unix)": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(windows)": [ + "x86_64-pc-windows-msvc" + ], + "i686-pc-windows-gnu": [], + "i686-pc-windows-gnullvm": [], + "i686-pc-windows-msvc": [], + "i686-uwp-windows-gnu": [], + "i686-uwp-windows-msvc": [], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-gnu": [], + "x86_64-pc-windows-gnullvm": [], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ], + "x86_64-uwp-windows-gnu": [], + "x86_64-uwp-windows-msvc": [] + }, "crates": { "aho-corasick 0.7.20": { + "common_attrs": { + "crate_features": [ + "default", + "std" + ], + "deps": [ + { + "id": "memchr 2.5.0", + "target": "memchr" + } + ], + "edition": "2018" + }, + "library_target_name": "aho_corasick", + "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", + "license_ids": [ + "MIT", + "Unlicense" + ], "name": "aho-corasick", - "version": "0.7.20", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/0.7.20/download", - "sha256": "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" + "sha256": "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac", + "url": "https://static.crates.io/crates/aho-corasick/0.7.20/download" } }, "targets": [ { "Library": { "crate_name": "aho_corasick", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "aho_corasick", + "version": "0.7.20" + }, + "anyhow 1.0.69": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.5.0", - "target": "memchr" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.20" + "deps": [ + { + "id": "anyhow 1.0.69", + "target": "build_script_build" + } + ], + "edition": "2018" }, - "license": "Unlicense OR MIT", + "library_target_name": "anyhow", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "MIT", - "Unlicense" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE-MIT" - }, - "anyhow 1.0.69": { "name": "anyhow", - "version": "1.0.69", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.69/download", - "sha256": "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" + "sha256": "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800", + "url": "https://static.crates.io/crates/anyhow/1.0.69/download" } }, "targets": [ { "Library": { "crate_name": "anyhow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "anyhow", + "version": "1.0.69" + }, + "assert-json-diff 2.0.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anyhow 1.0.69", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.69" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "serde 1.0.152", + "target": "serde" + }, + { + "id": "serde_json 1.0.93", + "target": "serde_json" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "assert_json_diff", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "assert-json-diff 2.0.2": { "name": "assert-json-diff", - "version": "2.0.2", "package_url": "https://github.com/davidpdrsn/assert-json-diff.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/assert-json-diff/2.0.2/download", - "sha256": "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" + "sha256": "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12", + "url": "https://static.crates.io/crates/assert-json-diff/2.0.2/download" } }, "targets": [ { "Library": { "crate_name": "assert_json_diff", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "assert_json_diff", + "version": "2.0.2" + }, + "async-channel 1.8.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "concurrent-queue 2.1.0", + "target": "concurrent_queue" + }, + { + "id": "event-listener 2.5.3", + "target": "event_listener" + }, + { + "id": "futures-core 0.3.26", + "target": "futures_core" + } ], - "deps": { - "common": [ - { - "id": "serde 1.0.152", - "target": "serde" - }, - { - "id": "serde_json 1.0.93", - "target": "serde_json" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.0.2" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "async_channel", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "async-channel 1.8.0": { "name": "async-channel", - "version": "1.8.0", "package_url": "https://github.com/smol-rs/async-channel", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-channel/1.8.0/download", - "sha256": "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" + "sha256": "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833", + "url": "https://static.crates.io/crates/async-channel/1.8.0/download" } }, "targets": [ { "Library": { "crate_name": "async_channel", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "async_channel", + "version": "1.8.0" + }, + "async-executor 1.5.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "async-lock 2.7.0", + "target": "async_lock" + }, + { + "id": "async-task 4.3.0", + "target": "async_task" + }, + { + "id": "concurrent-queue 2.1.0", + "target": "concurrent_queue" + }, + { + "id": "fastrand 1.9.0", + "target": "fastrand" + }, + { + "id": "futures-lite 1.12.0", + "target": "futures_lite" + }, + { + "id": "slab 0.4.8", + "target": "slab" + } ], - "deps": { - "common": [ - { - "id": "concurrent-queue 2.1.0", - "target": "concurrent_queue" - }, - { - "id": "event-listener 2.5.3", - "target": "event_listener" - }, - { - "id": "futures-core 0.3.26", - "target": "futures_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.8.0" + "edition": "2018" }, + "library_target_name": "async_executor", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "async-executor 1.5.0": { "name": "async-executor", - "version": "1.5.0", "package_url": "https://github.com/smol-rs/async-executor", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-executor/1.5.0/download", - "sha256": "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b" + "sha256": "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b", + "url": "https://static.crates.io/crates/async-executor/1.5.0/download" } }, "targets": [ { "Library": { "crate_name": "async_executor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "async_executor", + "version": "1.5.0" + }, + "async-global-executor 2.3.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "async-io", + "default" ], - "deps": { - "common": [ - { - "id": "async-lock 2.7.0", - "target": "async_lock" - }, - { - "id": "async-task 4.3.0", - "target": "async_task" - }, - { - "id": "concurrent-queue 2.1.0", - "target": "concurrent_queue" - }, - { - "id": "fastrand 1.9.0", - "target": "fastrand" - }, - { - "id": "futures-lite 1.12.0", - "target": "futures_lite" - }, - { - "id": "slab 0.4.8", - "target": "slab" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.5.0" + "deps": [ + { + "id": "async-channel 1.8.0", + "target": "async_channel" + }, + { + "id": "async-executor 1.5.0", + "target": "async_executor" + }, + { + "id": "async-io 1.12.0", + "target": "async_io" + }, + { + "id": "async-lock 2.7.0", + "target": "async_lock" + }, + { + "id": "blocking 1.3.0", + "target": "blocking" + }, + { + "id": "futures-lite 1.12.0", + "target": "futures_lite" + }, + { + "id": "once_cell 1.17.1", + "target": "once_cell" + } + ], + "edition": "2021" }, + "library_target_name": "async_global_executor", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "async-global-executor 2.3.1": { "name": "async-global-executor", - "version": "2.3.1", "package_url": "https://github.com/Keruspe/async-global-executor", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-global-executor/2.3.1/download", - "sha256": "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" + "sha256": "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776", + "url": "https://static.crates.io/crates/async-global-executor/2.3.1/download" } }, "targets": [ { "Library": { "crate_name": "async_global_executor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "async_global_executor", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "async-io", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "async-channel 1.8.0", - "target": "async_channel" - }, - { - "id": "async-executor 1.5.0", - "target": "async_executor" - }, - { - "id": "async-io 1.12.0", - "target": "async_io" - }, - { - "id": "async-lock 2.7.0", - "target": "async_lock" - }, - { - "id": "blocking 1.3.0", - "target": "blocking" - }, - { - "id": "futures-lite 1.12.0", - "target": "futures_lite" - }, - { - "id": "once_cell 1.17.1", - "target": "once_cell" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.3.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "2.3.1" }, "async-io 1.12.0": { - "name": "async-io", - "version": "1.12.0", - "package_url": "https://github.com/smol-rs/async-io", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/async-io/1.12.0/download", - "sha256": "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794" - } - }, - "targets": [ - { - "Library": { - "crate_name": "async_io", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" } - } - ], - "library_target_name": "async_io", + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ { @@ -487,172 +483,118 @@ ] } }, - "edition": "2018", - "version": "1.12.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2018" }, + "library_target_name": "async_io", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "async-lock 2.7.0": { - "name": "async-lock", - "version": "2.7.0", - "package_url": "https://github.com/smol-rs/async-lock", + "name": "async-io", + "package_url": "https://github.com/smol-rs/async-io", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-lock/2.7.0/download", - "sha256": "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" + "sha256": "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794", + "url": "https://static.crates.io/crates/async-io/1.12.0/download" } }, "targets": [ { "Library": { - "crate_name": "async_lock", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "async_io", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "async_lock", + "version": "1.12.0" + }, + "async-lock 2.7.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "event-listener 2.5.3", + "target": "event_listener" + } ], - "deps": { - "common": [ - { - "id": "event-listener 2.5.3", - "target": "event_listener" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.7.0" + "edition": "2018" }, + "library_target_name": "async_lock", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "async-object-pool 0.1.4": { - "name": "async-object-pool", - "version": "0.1.4", - "package_url": "https://github.com/alexliesenfeld/async-object-pool", + "name": "async-lock", + "package_url": "https://github.com/smol-rs/async-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-object-pool/0.1.4/download", - "sha256": "aeb901c30ebc2fc4ab46395bbfbdba9542c16559d853645d75190c3056caf3bc" + "sha256": "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7", + "url": "https://static.crates.io/crates/async-lock/2.7.0/download" } }, "targets": [ { "Library": { - "crate_name": "async_object_pool", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "async_lock", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "async_object_pool", + "version": "2.7.0" + }, + "async-object-pool 0.1.4": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "async-std 1.12.0", + "target": "async_std" + } ], - "deps": { - "common": [ - { - "id": "async-std 1.12.0", - "target": "async_std" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.4" + "edition": "2018" }, + "library_target_name": "async_object_pool", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "async-process 1.6.0": { - "name": "async-process", - "version": "1.6.0", - "package_url": "https://github.com/smol-rs/async-process", + "name": "async-object-pool", + "package_url": "https://github.com/alexliesenfeld/async-object-pool", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-process/1.6.0/download", - "sha256": "6381ead98388605d0d9ff86371043b5aa922a3905824244de40dc263a14fcba4" + "sha256": "aeb901c30ebc2fc4ab46395bbfbdba9542c16559d853645d75190c3056caf3bc", + "url": "https://static.crates.io/crates/async-object-pool/0.1.4/download" } - }, - "targets": [ - { - "Library": { - "crate_name": "async_process", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, + }, + "targets": [ { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "Library": { + "crate_name": "async_object_pool", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "async_process", + "version": "0.1.4" + }, + "async-process 1.6.0": { + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ { @@ -703,93 +645,66 @@ ] } }, - "edition": "2018", - "version": "1.6.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2018" }, + "library_target_name": "async_process", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "async-std 1.12.0": { - "name": "async-std", - "version": "1.12.0", - "package_url": "https://github.com/async-rs/async-std", + "name": "async-process", + "package_url": "https://github.com/smol-rs/async-process", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-std/1.12.0/download", - "sha256": "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" + "sha256": "6381ead98388605d0d9ff86371043b5aa922a3905824244de40dc263a14fcba4", + "url": "https://static.crates.io/crates/async-process/1.6.0/download" } }, "targets": [ { "Library": { - "crate_name": "async_std", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "async_process", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "async_std", + "version": "1.6.0" + }, + "async-std 1.12.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "async-channel", + "async-global-executor", + "async-io", + "async-lock", + "async-process", + "crossbeam-utils", + "default", + "futures-channel", + "futures-core", + "futures-io", + "futures-lite", + "gloo-timers", + "kv-log-macro", + "log", + "memchr", + "once_cell", + "pin-project-lite", + "pin-utils", + "slab", + "std", + "unstable", + "wasm-bindgen-futures" ], - "crate_features": { - "common": [ - "alloc", - "async-channel", - "async-global-executor", - "async-io", - "async-lock", - "async-process", - "crossbeam-utils", - "default", - "futures-channel", - "futures-core", - "futures-io", - "futures-lite", - "gloo-timers", - "kv-log-macro", - "log", - "memchr", - "once_cell", - "pin-project-lite", - "pin-utils", - "slab", - "std", - "unstable", - "wasm-bindgen-futures" - ], - "selects": {} - }, "deps": { "common": [ { @@ -978,900 +893,643 @@ ] } }, - "edition": "2018", - "version": "1.12.0" + "edition": "2018" }, + "library_target_name": "async_std", "license": "Apache-2.0/MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "async-std", + "package_url": "https://github.com/async-rs/async-std", + "repository": { + "Http": { + "sha256": "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d", + "url": "https://static.crates.io/crates/async-std/1.12.0/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "async_std", + "crate_root": "src/lib.rs" + } + } + ], + "version": "1.12.0" }, "async-task 4.3.0": { + "common_attrs": { + "crate_features": [ + "default", + "std" + ], + "edition": "2018" + }, + "library_target_name": "async_task", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "async-task", - "version": "4.3.0", "package_url": "https://github.com/smol-rs/async-task", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-task/4.3.0/download", - "sha256": "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" + "sha256": "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524", + "url": "https://static.crates.io/crates/async-task/4.3.0/download" } }, "targets": [ { "Library": { "crate_name": "async_task", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "async_task", + "version": "4.3.0" + }, + "async-trait 0.1.64": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "async-trait 0.1.64", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "4.3.0" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "async_trait", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "async-trait 0.1.64": { "name": "async-trait", - "version": "0.1.64", "package_url": "https://github.com/dtolnay/async-trait", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-trait/0.1.64/download", - "sha256": "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" + "sha256": "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2", + "url": "https://static.crates.io/crates/async-trait/0.1.64/download" } }, "targets": [ { "ProcMacro": { "crate_name": "async_trait", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "async_trait", + "version": "0.1.64" + }, + "atomic-waker 1.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "async-trait 0.1.64", - "target": "build_script_build" - }, - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.64" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "atomic_waker", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "atomic-waker 1.1.0": { "name": "atomic-waker", - "version": "1.1.0", "package_url": "https://github.com/smol-rs/atomic-waker", "repository": { "Http": { - "url": "https://static.crates.io/crates/atomic-waker/1.1.0/download", - "sha256": "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599" + "sha256": "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599", + "url": "https://static.crates.io/crates/atomic-waker/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "atomic_waker", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "atomic_waker", + "version": "1.1.0" + }, + "autocfg 1.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.1.0" + "edition": "2015" }, + "library_target_name": "autocfg", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "autocfg 1.1.0": { "name": "autocfg", - "version": "1.1.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.1.0/download", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", + "url": "https://static.crates.io/crates/autocfg/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "autocfg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "autocfg", + "version": "1.1.0" + }, + "base64 0.13.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2015", - "version": "1.1.0" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "base64", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "base64 0.13.1": { "name": "base64", - "version": "0.13.1", "package_url": "https://github.com/marshallpierce/rust-base64", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64/0.13.1/download", - "sha256": "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + "sha256": "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8", + "url": "https://static.crates.io/crates/base64/0.13.1/download" } }, "targets": [ { "Library": { "crate_name": "base64", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "base64", + "version": "0.13.1" + }, + "base64 0.21.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.13.1" + "edition": "2021" }, - "license": "MIT/Apache-2.0", + "library_target_name": "base64", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "base64 0.21.0": { "name": "base64", - "version": "0.21.0", "package_url": "https://github.com/marshallpierce/rust-base64", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64/0.21.0/download", - "sha256": "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" + "sha256": "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a", + "url": "https://static.crates.io/crates/base64/0.21.0/download" } }, "targets": [ { "Library": { "crate_name": "base64", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "base64", + "version": "0.21.0" + }, + "block-buffer 0.9.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "generic-array 0.14.6", + "target": "generic_array" + } ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.21.0" + "edition": "2018" }, + "library_target_name": "block_buffer", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "block-buffer 0.9.0": { "name": "block-buffer", - "version": "0.9.0", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/block-buffer/0.9.0/download", - "sha256": "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" + "sha256": "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4", + "url": "https://static.crates.io/crates/block-buffer/0.9.0/download" } }, "targets": [ { "Library": { "crate_name": "block_buffer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "block_buffer", + "version": "0.9.0" + }, + "blocking 1.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "async-channel 1.8.0", + "target": "async_channel" + }, + { + "id": "async-lock 2.7.0", + "target": "async_lock" + }, + { + "id": "async-task 4.3.0", + "target": "async_task" + }, + { + "id": "atomic-waker 1.1.0", + "target": "atomic_waker" + }, + { + "id": "fastrand 1.9.0", + "target": "fastrand" + }, + { + "id": "futures-lite 1.12.0", + "target": "futures_lite" + } ], - "deps": { - "common": [ - { - "id": "generic-array 0.14.6", - "target": "generic_array" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.9.0" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "blocking", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "blocking 1.3.0": { "name": "blocking", - "version": "1.3.0", "package_url": "https://github.com/smol-rs/blocking", "repository": { "Http": { - "url": "https://static.crates.io/crates/blocking/1.3.0/download", - "sha256": "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8" + "sha256": "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8", + "url": "https://static.crates.io/crates/blocking/1.3.0/download" } }, "targets": [ { "Library": { "crate_name": "blocking", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "blocking", + "version": "1.3.0" + }, + "bumpalo 3.12.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "deps": { - "common": [ - { - "id": "async-channel 1.8.0", - "target": "async_channel" - }, - { - "id": "async-lock 2.7.0", - "target": "async_lock" - }, - { - "id": "async-task 4.3.0", - "target": "async_task" - }, - { - "id": "atomic-waker 1.1.0", - "target": "atomic_waker" - }, - { - "id": "fastrand 1.9.0", - "target": "fastrand" - }, - { - "id": "futures-lite 1.12.0", - "target": "futures_lite" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.3.0" + "edition": "2021" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "bumpalo", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "bumpalo 3.12.0": { "name": "bumpalo", - "version": "3.12.0", "package_url": "https://github.com/fitzgen/bumpalo", "repository": { "Http": { - "url": "https://static.crates.io/crates/bumpalo/3.12.0/download", - "sha256": "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" + "sha256": "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535", + "url": "https://static.crates.io/crates/bumpalo/3.12.0/download" } }, "targets": [ { "Library": { "crate_name": "bumpalo", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bumpalo", + "version": "3.12.0" + }, + "bytes 1.4.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "3.12.0" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "bytes", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "bytes 1.4.0": { "name": "bytes", - "version": "1.4.0", "package_url": "https://github.com/tokio-rs/bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytes/1.4.0/download", - "sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" + "sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be", + "url": "https://static.crates.io/crates/bytes/1.4.0/download" } }, "targets": [ { "Library": { "crate_name": "bytes", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bytes", + "version": "1.4.0" + }, + "castaway 0.2.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "edition": "2018", - "version": "1.4.0" + "proc_macro_deps": [ + { + "id": "rustversion 1.0.11", + "target": "rustversion" + } + ] }, + "library_target_name": "castaway", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "castaway 0.2.2": { "name": "castaway", - "version": "0.2.2", "package_url": "https://github.com/sagebind/castaway", "repository": { "Http": { - "url": "https://static.crates.io/crates/castaway/0.2.2/download", - "sha256": "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc" + "sha256": "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc", + "url": "https://static.crates.io/crates/castaway/0.2.2/download" } }, "targets": [ { "Library": { "crate_name": "castaway", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "castaway", + "version": "0.2.2" + }, + "cc 1.2.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "shlex 1.3.0", + "target": "shlex" + } ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "rustversion 1.0.11", - "target": "rustversion" - } - ], - "selects": {} - }, - "version": "0.2.2" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "cc", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "cc 1.2.2": { "name": "cc", - "version": "1.2.2", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.2/download", - "sha256": "f34d93e62b03caf570cccc334cbc6c2fceca82f39211051345108adcba3eebdc" + "sha256": "f34d93e62b03caf570cccc334cbc6c2fceca82f39211051345108adcba3eebdc", + "url": "https://static.crates.io/crates/cc/1.2.2/download" } }, "targets": [ { "Library": { "crate_name": "cc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cc", + "version": "1.2.2" + }, + "cfg-if 1.0.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "shlex 1.3.0", - "target": "shlex" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.2.2" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "cfg_if", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cfg-if 1.0.0": { "name": "cfg-if", - "version": "1.0.0", "package_url": "https://github.com/alexcrichton/cfg-if", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.0/download", - "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", + "url": "https://static.crates.io/crates/cfg-if/1.0.0/download" } }, "targets": [ { "Library": { "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cfg_if", + "version": "1.0.0" + }, + "concurrent-queue 2.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2018", - "version": "1.0.0" + "deps": [ + { + "id": "crossbeam-utils 0.8.15", + "target": "crossbeam_utils" + } + ], + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "concurrent_queue", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "concurrent-queue 2.1.0": { "name": "concurrent-queue", - "version": "2.1.0", "package_url": "https://github.com/smol-rs/concurrent-queue", "repository": { "Http": { - "url": "https://static.crates.io/crates/concurrent-queue/2.1.0/download", - "sha256": "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" + "sha256": "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e", + "url": "https://static.crates.io/crates/concurrent-queue/2.1.0/download" } }, "targets": [ { "Library": { "crate_name": "concurrent_queue", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "concurrent_queue", + "version": "2.1.0" + }, + "crossbeam-utils 0.8.15": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "crossbeam-utils 0.8.15", - "target": "crossbeam_utils" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.1.0" + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "crossbeam-utils 0.8.15", + "target": "build_script_build" + } + ], + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "crossbeam_utils", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "crossbeam-utils 0.8.15": { "name": "crossbeam-utils", - "version": "0.8.15", "package_url": "https://github.com/crossbeam-rs/crossbeam", "repository": { "Http": { - "url": "https://static.crates.io/crates/crossbeam-utils/0.8.15/download", - "sha256": "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" + "sha256": "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b", + "url": "https://static.crates.io/crates/crossbeam-utils/0.8.15/download" } }, "targets": [ { "Library": { "crate_name": "crossbeam_utils", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "crossbeam_utils", + "version": "0.8.15" + }, + "ctor 0.1.26": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "crossbeam-utils 0.8.15", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.8.15" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "ctor", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "ctor 0.1.26": { "name": "ctor", - "version": "0.1.26", "package_url": "https://github.com/mmastrac/rust-ctor", "repository": { "Http": { - "url": "https://static.crates.io/crates/ctor/0.1.26/download", - "sha256": "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" + "sha256": "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096", + "url": "https://static.crates.io/crates/ctor/0.1.26/download" } }, "targets": [ { "ProcMacro": { "crate_name": "ctor", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ctor", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.26" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.1.26" }, "curl 0.4.44": { - "name": "curl", - "version": "0.4.44", - "package_url": "https://github.com/alexcrichton/curl-rust", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/curl/0.4.44/download", - "sha256": "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" - } - }, - "targets": [ - { - "Library": { - "crate_name": "curl", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "build_script_attrs": { + "link_deps": [ + { + "id": "curl-sys 0.4.60+curl-7.88.1", + "target": "curl_sys" } - } - ], - "library_target_name": "curl", + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "http2", + "rustls", + "static-curl" ], - "crate_features": { - "common": [ - "http2", - "rustls", - "static-curl" - ], - "selects": {} - }, "deps": { "common": [ { @@ -1904,74 +1562,47 @@ ] } }, - "edition": "2018", - "version": "0.4.44" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "link_deps": { - "common": [ - { - "id": "curl-sys 0.4.60+curl-7.88.1", - "target": "curl_sys" - } - ], - "selects": {} - } + "edition": "2018" }, + "library_target_name": "curl", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "curl-sys 0.4.60+curl-7.88.1": { - "name": "curl-sys", - "version": "0.4.60+curl-7.88.1", + "name": "curl", "package_url": "https://github.com/alexcrichton/curl-rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/curl-sys/0.4.60+curl-7.88.1/download", - "sha256": "717abe2cb465a5da6ce06617388a3980c9a2844196734bec8ccb8e575250f13f" + "sha256": "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22", + "url": "https://static.crates.io/crates/curl/0.4.44/download" } }, "targets": [ { "Library": { - "crate_name": "curl_sys", - "crate_root": "lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "curl", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "curl_sys", + "version": "0.4.44" + }, + "curl-sys 0.4.60+curl-7.88.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "http2", + "libnghttp2-sys", + "rustls", + "rustls-ffi", + "static-curl" ], - "crate_features": { - "common": [ - "http2", - "libnghttp2-sys", - "rustls", - "rustls-ffi", - "static-curl" - ], - "selects": {} - }, "deps": { "common": [ { @@ -2000,200 +1631,145 @@ ] } }, - "extra_deps": { - "common": [ - "@m_pkgs__curl//:curl" - ], - "selects": {} - }, "edition": "2018", - "version": "0.4.60+curl-7.88.1" + "extra_deps": [ + "@m_pkgs__curl//:curl" + ] }, + "library_target_name": "curl_sys", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "digest 0.9.0": { - "name": "digest", - "version": "0.9.0", - "package_url": "https://github.com/RustCrypto/traits", + "name": "curl-sys", + "package_url": "https://github.com/alexcrichton/curl-rust", "repository": { "Http": { - "url": "https://static.crates.io/crates/digest/0.9.0/download", - "sha256": "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" + "sha256": "717abe2cb465a5da6ce06617388a3980c9a2844196734bec8ccb8e575250f13f", + "url": "https://static.crates.io/crates/curl-sys/0.4.60+curl-7.88.1/download" } }, "targets": [ { "Library": { - "crate_name": "digest", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "curl_sys", + "crate_root": "lib.rs" } } ], - "library_target_name": "digest", + "version": "0.4.60+curl-7.88.1" + }, + "digest 0.9.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "std" ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "generic-array 0.14.6", - "target": "generic_array" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.9.0" + "deps": [ + { + "id": "generic-array 0.14.6", + "target": "generic_array" + } + ], + "edition": "2018" }, + "library_target_name": "digest", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "encoding_rs 0.8.32": { - "name": "encoding_rs", - "version": "0.8.32", - "package_url": "https://github.com/hsivonen/encoding_rs", + "name": "digest", + "package_url": "https://github.com/RustCrypto/traits", "repository": { "Http": { - "url": "https://static.crates.io/crates/encoding_rs/0.8.32/download", - "sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" + "sha256": "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066", + "url": "https://static.crates.io/crates/digest/0.9.0/download" } }, "targets": [ { "Library": { - "crate_name": "encoding_rs", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "digest", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "encoding_rs", + "version": "0.9.0" + }, + "encoding_rs 0.8.32": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default" ], - "crate_features": { - "common": [ - "alloc", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.8.32" + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + } + ], + "edition": "2018" }, + "library_target_name": "encoding_rs", "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "BSD-3-Clause", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "event-listener 2.5.3": { - "name": "event-listener", - "version": "2.5.3", - "package_url": "https://github.com/smol-rs/event-listener", + "name": "encoding_rs", + "package_url": "https://github.com/hsivonen/encoding_rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/event-listener/2.5.3/download", - "sha256": "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + "sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394", + "url": "https://static.crates.io/crates/encoding_rs/0.8.32/download" } }, "targets": [ { "Library": { - "crate_name": "event_listener", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "encoding_rs", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "event_listener", + "version": "0.8.32" + }, + "event-listener 2.5.3": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "2.5.3" + "edition": "2018" }, + "library_target_name": "event_listener", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "fastrand 1.9.0": { - "name": "fastrand", - "version": "1.9.0", - "package_url": "https://github.com/smol-rs/fastrand", + "name": "event-listener", + "package_url": "https://github.com/smol-rs/event-listener", "repository": { "Http": { - "url": "https://static.crates.io/crates/fastrand/1.9.0/download", - "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" + "sha256": "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0", + "url": "https://static.crates.io/crates/event-listener/2.5.3/download" } }, "targets": [ { "Library": { - "crate_name": "fastrand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "event_listener", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "fastrand", + "version": "2.5.3" + }, + "fastrand 1.9.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -2205,347 +1781,234 @@ ] } }, - "edition": "2018", - "version": "1.9.0" + "edition": "2018" }, + "library_target_name": "fastrand", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "fastrand", + "package_url": "https://github.com/smol-rs/fastrand", + "repository": { + "Http": { + "sha256": "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be", + "url": "https://static.crates.io/crates/fastrand/1.9.0/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "fastrand", + "crate_root": "src/lib.rs" + } + } + ], + "version": "1.9.0" }, "fnv 1.0.7": { + "common_attrs": { + "crate_features": [ + "default", + "std" + ], + "edition": "2015" + }, + "library_target_name": "fnv", + "license": "Apache-2.0 / MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "fnv", - "version": "1.0.7", "package_url": "https://github.com/servo/rust-fnv", "repository": { "Http": { - "url": "https://static.crates.io/crates/fnv/1.0.7/download", - "sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + "sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1", + "url": "https://static.crates.io/crates/fnv/1.0.7/download" } }, "targets": [ { "Library": { "crate_name": "fnv", - "crate_root": "lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "lib.rs" } } ], - "library_target_name": "fnv", + "version": "1.0.7" + }, + "form_urlencoded 1.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "percent-encoding 2.2.0", + "target": "percent_encoding" + } ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.0.7" + "edition": "2018" }, - "license": "Apache-2.0 / MIT", + "library_target_name": "form_urlencoded", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "form_urlencoded 1.1.0": { "name": "form_urlencoded", - "version": "1.1.0", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/form_urlencoded/1.1.0/download", - "sha256": "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" + "sha256": "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8", + "url": "https://static.crates.io/crates/form_urlencoded/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "form_urlencoded", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "form_urlencoded", + "version": "1.1.0" + }, + "futures-channel 0.3.26": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "std" ], - "deps": { - "common": [ - { - "id": "percent-encoding 2.2.0", - "target": "percent_encoding" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.1.0" + "deps": [ + { + "id": "futures-channel 0.3.26", + "target": "build_script_build" + }, + { + "id": "futures-core 0.3.26", + "target": "futures_core" + } + ], + "edition": "2018" }, + "library_target_name": "futures_channel", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-channel 0.3.26": { "name": "futures-channel", - "version": "0.3.26", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-channel/0.3.26/download", - "sha256": "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" + "sha256": "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5", + "url": "https://static.crates.io/crates/futures-channel/0.3.26/download" } }, "targets": [ { "Library": { "crate_name": "futures_channel", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "futures_channel", + "version": "0.3.26" + }, + "futures-core 0.3.26": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-channel 0.3.26", - "target": "build_script_build" - }, - { - "id": "futures-core 0.3.26", - "target": "futures_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.26" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "futures-core 0.3.26", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "futures_core", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-core 0.3.26": { "name": "futures-core", - "version": "0.3.26", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-core/0.3.26/download", - "sha256": "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" + "sha256": "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608", + "url": "https://static.crates.io/crates/futures-core/0.3.26/download" } }, "targets": [ { "Library": { "crate_name": "futures_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "futures_core", + "version": "0.3.26" + }, + "futures-io 0.3.26": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.26", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.26" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_features": [ + "default", + "std" ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "futures_io", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-io 0.3.26": { "name": "futures-io", - "version": "0.3.26", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-io/0.3.26/download", - "sha256": "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" + "sha256": "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531", + "url": "https://static.crates.io/crates/futures-io/0.3.26/download" } }, "targets": [ { "Library": { "crate_name": "futures_io", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "futures_io", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.26" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.3.26" }, "futures-lite 1.12.0": { - "name": "futures-lite", - "version": "1.12.0", - "package_url": "https://github.com/smol-rs/futures-lite", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-lite/1.12.0/download", - "sha256": "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_lite", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_lite", "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [], "selects": { @@ -2757,432 +2220,298 @@ ] } }, - "edition": "2018", - "version": "1.12.0" + "edition": "2018" }, + "library_target_name": "futures_lite", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-macro 0.3.26": { - "name": "futures-macro", - "version": "0.3.26", - "package_url": "https://github.com/rust-lang/futures-rs", + "name": "futures-lite", + "package_url": "https://github.com/smol-rs/futures-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-macro/0.3.26/download", - "sha256": "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" + "sha256": "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48", + "url": "https://static.crates.io/crates/futures-lite/1.12.0/download" } }, "targets": [ { - "ProcMacro": { - "crate_name": "futures_macro", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "Library": { + "crate_name": "futures_lite", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "futures_macro", + "version": "1.12.0" + }, + "futures-macro 0.3.26": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.26" + "edition": "2018" }, + "library_target_name": "futures_macro", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-sink 0.3.26": { - "name": "futures-sink", - "version": "0.3.26", + "name": "futures-macro", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-sink/0.3.26/download", - "sha256": "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" + "sha256": "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70", + "url": "https://static.crates.io/crates/futures-macro/0.3.26/download" } }, "targets": [ { - "Library": { - "crate_name": "futures_sink", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "ProcMacro": { + "crate_name": "futures_macro", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "futures_sink", + "version": "0.3.26" + }, + "futures-sink 0.3.26": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "std" ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.26" + "edition": "2018" }, + "library_target_name": "futures_sink", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-task 0.3.26": { - "name": "futures-task", - "version": "0.3.26", + "name": "futures-sink", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-task/0.3.26/download", - "sha256": "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" + "sha256": "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364", + "url": "https://static.crates.io/crates/futures-sink/0.3.26/download" } }, "targets": [ { "Library": { - "crate_name": "futures_task", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "futures_sink", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "futures_task", + "version": "0.3.26" + }, + "futures-task 0.3.26": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-task 0.3.26", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.26" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "deps": [ + { + "id": "futures-task 0.3.26", + "target": "build_script_build" + } + ], + "edition": "2018" }, + "library_target_name": "futures_task", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "futures-util 0.3.26": { - "name": "futures-util", - "version": "0.3.26", + "name": "futures-task", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-util/0.3.26/download", - "sha256": "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" + "sha256": "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366", + "url": "https://static.crates.io/crates/futures-task/0.3.26/download" } }, "targets": [ { "Library": { - "crate_name": "futures_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "futures_task", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "futures_util", - "common_attrs": { - "compile_data_glob": [ - "**" + "version": "0.3.26" + }, + "futures-util 0.3.26": { + "build_script_attrs": {}, + "common_attrs": { + "crate_features": [ + "alloc", + "async-await", + "async-await-macro", + "default", + "futures-io", + "futures-macro", + "io", + "memchr", + "slab", + "std" + ], + "deps": [ + { + "id": "futures-core 0.3.26", + "target": "futures_core" + }, + { + "id": "futures-io 0.3.26", + "target": "futures_io" + }, + { + "id": "futures-task 0.3.26", + "target": "futures_task" + }, + { + "id": "futures-util 0.3.26", + "target": "build_script_build" + }, + { + "id": "memchr 2.5.0", + "target": "memchr" + }, + { + "id": "pin-project-lite 0.2.9", + "target": "pin_project_lite" + }, + { + "id": "pin-utils 0.1.0", + "target": "pin_utils" + }, + { + "id": "slab 0.4.8", + "target": "slab" + } ], - "crate_features": { - "common": [ - "alloc", - "async-await", - "async-await-macro", - "default", - "futures-io", - "futures-macro", - "io", - "memchr", - "slab", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.26", - "target": "futures_core" - }, - { - "id": "futures-io 0.3.26", - "target": "futures_io" - }, - { - "id": "futures-task 0.3.26", - "target": "futures_task" - }, - { - "id": "futures-util 0.3.26", - "target": "build_script_build" - }, - { - "id": "memchr 2.5.0", - "target": "memchr" - }, - { - "id": "pin-project-lite 0.2.9", - "target": "pin_project_lite" - }, - { - "id": "pin-utils 0.1.0", - "target": "pin_utils" - }, - { - "id": "slab 0.4.8", - "target": "slab" - } - ], - "selects": {} - }, "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "futures-macro 0.3.26", - "target": "futures_macro" - } - ], - "selects": {} - }, - "version": "0.3.26" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "proc_macro_deps": [ + { + "id": "futures-macro 0.3.26", + "target": "futures_macro" + } ] }, + "library_target_name": "futures_util", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "generic-array 0.14.6": { - "name": "generic-array", - "version": "0.14.6", - "package_url": "https://github.com/fizyk20/generic-array.git", + "name": "futures-util", + "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/generic-array/0.14.6/download", - "sha256": "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" + "sha256": "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1", + "url": "https://static.crates.io/crates/futures-util/0.3.26/download" } }, "targets": [ { "Library": { - "crate_name": "generic_array", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "futures_util", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "generic_array", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "generic-array 0.14.6", - "target": "build_script_build" - }, - { - "id": "typenum 1.16.0", - "target": "typenum" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.14.6" - }, + "version": "0.3.26" + }, + "generic-array 0.14.6": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "version_check 0.9.4", + "target": "version_check" + } + ] + }, + "common_attrs": { + "deps": [ + { + "id": "generic-array 0.14.6", + "target": "build_script_build" + }, + { + "id": "typenum 1.16.0", + "target": "typenum" + } ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check" - } - ], - "selects": {} - } + "edition": "2015" }, + "library_target_name": "generic_array", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "getrandom 0.2.15": { - "name": "getrandom", - "version": "0.2.15", - "package_url": "https://github.com/rust-random/getrandom", + "name": "generic-array", + "package_url": "https://github.com/fizyk20/generic-array.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.15/download", - "sha256": "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" + "sha256": "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9", + "url": "https://static.crates.io/crates/generic-array/0.14.6/download" } }, "targets": [ { "Library": { - "crate_name": "getrandom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "generic_array", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "getrandom", + "version": "0.14.6" + }, + "getrandom 0.2.15": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ { @@ -3205,694 +2534,531 @@ ] } }, - "edition": "2018", - "version": "0.2.15" + "edition": "2018" }, + "library_target_name": "getrandom", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "getrandom", + "package_url": "https://github.com/rust-random/getrandom", + "repository": { + "Http": { + "sha256": "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7", + "url": "https://static.crates.io/crates/getrandom/0.2.15/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "getrandom", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.2.15" }, "gloo-timers 0.2.6": { + "common_attrs": { + "crate_features": [ + "default", + "futures", + "futures-channel", + "futures-core" + ], + "deps": [ + { + "id": "futures-channel 0.3.26", + "target": "futures_channel" + }, + { + "id": "futures-core 0.3.26", + "target": "futures_core" + }, + { + "id": "js-sys 0.3.61", + "target": "js_sys" + }, + { + "id": "wasm-bindgen 0.2.84", + "target": "wasm_bindgen" + } + ], + "edition": "2018" + }, + "library_target_name": "gloo_timers", + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "gloo-timers", - "version": "0.2.6", "package_url": "https://github.com/rustwasm/gloo/tree/master/crates/timers", "repository": { "Http": { - "url": "https://static.crates.io/crates/gloo-timers/0.2.6/download", - "sha256": "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" + "sha256": "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c", + "url": "https://static.crates.io/crates/gloo-timers/0.2.6/download" } }, "targets": [ { "Library": { "crate_name": "gloo_timers", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "gloo_timers", + "version": "0.2.6" + }, + "h2 0.3.16": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "fnv 1.0.7", + "target": "fnv" + }, + { + "id": "futures-core 0.3.26", + "target": "futures_core" + }, + { + "id": "futures-sink 0.3.26", + "target": "futures_sink" + }, + { + "id": "futures-util 0.3.26", + "target": "futures_util" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "indexmap 1.9.2", + "target": "indexmap" + }, + { + "id": "slab 0.4.8", + "target": "slab" + }, + { + "id": "tokio 1.26.0", + "target": "tokio" + }, + { + "id": "tokio-util 0.7.7", + "target": "tokio_util" + }, + { + "id": "tracing 0.1.37", + "target": "tracing" + } ], - "crate_features": { - "common": [ - "default", - "futures", - "futures-channel", - "futures-core" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-channel 0.3.26", - "target": "futures_channel" - }, - { - "id": "futures-core 0.3.26", - "target": "futures_core" - }, - { - "id": "js-sys 0.3.61", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.84", - "target": "wasm_bindgen" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.6" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "h2", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": null - }, - "h2 0.3.16": { "name": "h2", - "version": "0.3.16", "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/h2/0.3.16/download", - "sha256": "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" + "sha256": "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d", + "url": "https://static.crates.io/crates/h2/0.3.16/download" } }, "targets": [ { "Library": { "crate_name": "h2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } - } - ], - "library_target_name": "h2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bytes 1.4.0", - "target": "bytes" - }, - { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "futures-core 0.3.26", - "target": "futures_core" - }, - { - "id": "futures-sink 0.3.26", - "target": "futures_sink" - }, - { - "id": "futures-util 0.3.26", - "target": "futures_util" - }, - { - "id": "http 0.2.9", - "target": "http" - }, - { - "id": "indexmap 1.9.2", - "target": "indexmap" - }, - { - "id": "slab 0.4.8", - "target": "slab" - }, - { - "id": "tokio 1.26.0", - "target": "tokio" - }, - { - "id": "tokio-util 0.7.7", - "target": "tokio_util" - }, - { - "id": "tracing 0.1.37", - "target": "tracing" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.16" + } + ], + "version": "0.3.16" + }, + "hashbrown 0.12.3": { + "common_attrs": { + "crate_features": [ + "raw" + ], + "edition": "2021" }, - "license": "MIT", + "library_target_name": "hashbrown", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "hashbrown 0.12.3": { "name": "hashbrown", - "version": "0.12.3", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.12.3/download", - "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", + "url": "https://static.crates.io/crates/hashbrown/0.12.3/download" } }, "targets": [ { "Library": { "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hashbrown", + "version": "0.12.3" + }, + "hermit-abi 0.2.6": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "libc 0.2.167", + "target": "libc" + } ], - "crate_features": { - "common": [ - "raw" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.12.3" + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "hermit_abi", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "hermit-abi 0.2.6": { "name": "hermit-abi", - "version": "0.2.6", "package_url": "https://github.com/hermitcore/rusty-hermit", "repository": { "Http": { - "url": "https://static.crates.io/crates/hermit-abi/0.2.6/download", - "sha256": "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" + "sha256": "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7", + "url": "https://static.crates.io/crates/hermit-abi/0.2.6/download" } }, "targets": [ { "Library": { "crate_name": "hermit_abi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hermit_abi", + "version": "0.2.6" + }, + "hex-literal 0.3.4": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.6" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "hex_literal", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "hex-literal 0.3.4": { "name": "hex-literal", - "version": "0.3.4", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/hex-literal/0.3.4/download", - "sha256": "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" + "sha256": "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0", + "url": "https://static.crates.io/crates/hex-literal/0.3.4/download" } }, "targets": [ { "ProcMacro": { "crate_name": "hex_literal", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hex_literal", + "version": "0.3.4" + }, + "http 0.2.9": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "fnv 1.0.7", + "target": "fnv" + }, + { + "id": "itoa 1.0.5", + "target": "itoa" + } ], - "edition": "2018", - "version": "0.3.4" + "edition": "2018" }, + "library_target_name": "http", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "http 0.2.9": { "name": "http", - "version": "0.2.9", "package_url": "https://github.com/hyperium/http", "repository": { "Http": { - "url": "https://static.crates.io/crates/http/0.2.9/download", - "sha256": "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" + "sha256": "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482", + "url": "https://static.crates.io/crates/http/0.2.9/download" } }, "targets": [ { "Library": { "crate_name": "http", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "http", + "version": "0.2.9" + }, + "http-body 0.4.5": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "pin-project-lite 0.2.9", + "target": "pin_project_lite" + } ], - "deps": { - "common": [ - { - "id": "bytes 1.4.0", - "target": "bytes" - }, - { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "itoa 1.0.5", - "target": "itoa" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.9" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "http_body", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "http-body 0.4.5": { "name": "http-body", - "version": "0.4.5", "package_url": "https://github.com/hyperium/http-body", "repository": { "Http": { - "url": "https://static.crates.io/crates/http-body/0.4.5/download", - "sha256": "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" + "sha256": "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1", + "url": "https://static.crates.io/crates/http-body/0.4.5/download" } }, "targets": [ { "Library": { "crate_name": "http_body", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "http_body", + "version": "0.4.5" + }, + "httparse 1.8.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "deps": { - "common": [ - { - "id": "bytes 1.4.0", - "target": "bytes" - }, - { - "id": "http 0.2.9", - "target": "http" - }, - { - "id": "pin-project-lite 0.2.9", - "target": "pin_project_lite" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.5" + "deps": [ + { + "id": "httparse 1.8.0", + "target": "build_script_build" + } + ], + "edition": "2018" }, - "license": "MIT", + "library_target_name": "httparse", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "httparse 1.8.0": { "name": "httparse", - "version": "1.8.0", "package_url": "https://github.com/seanmonstar/httparse", "repository": { "Http": { - "url": "https://static.crates.io/crates/httparse/1.8.0/download", - "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904", + "url": "https://static.crates.io/crates/httparse/1.8.0/download" } }, "targets": [ { "Library": { "crate_name": "httparse", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "httparse", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "httparse 1.8.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.8.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.8.0" }, "httpdate 1.0.2": { - "name": "httpdate", - "version": "1.0.2", - "package_url": "https://github.com/pyfisch/httpdate", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/httpdate/1.0.2/download", - "sha256": "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" - } - }, - "targets": [ - { - "Library": { - "crate_name": "httpdate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "httpdate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.2" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "httpmock 0.6.7": { - "name": "httpmock", - "version": "0.6.7", - "package_url": "https://github.com/alexliesenfeld/httpmock", - "repository": { - "Git": { - "remote": "https://github.com/alexliesenfeld/httpmock.git", - "commitish": { - "Rev": "9ecf35255ee154986bc36d06473f1fa088586ad9" - }, - "shallow_since": "1673473097 +0100" - } - }, - "targets": [ - { - "Library": { - "crate_name": "httpmock", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "httpmock", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "rustls" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "assert-json-diff 2.0.2", - "target": "assert_json_diff" - }, - { - "id": "async-object-pool 0.1.4", - "target": "async_object_pool" - }, - { - "id": "base64 0.13.1", - "target": "base64" - }, - { - "id": "crossbeam-utils 0.8.15", - "target": "crossbeam_utils" - }, - { - "id": "form_urlencoded 1.1.0", - "target": "form_urlencoded" - }, - { - "id": "futures-util 0.3.26", - "target": "futures_util" - }, - { - "id": "hyper 0.14.24", - "target": "hyper" - }, - { - "id": "isahc 1.7.0", - "target": "isahc" - }, - { - "id": "lazy_static 1.4.0", - "target": "lazy_static" - }, - { - "id": "levenshtein 1.0.5", - "target": "levenshtein" - }, - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "regex 1.7.1", - "target": "regex" - }, - { - "id": "serde 1.0.152", - "target": "serde" - }, - { - "id": "serde_json 1.0.93", - "target": "serde_json" - }, - { - "id": "serde_regex 1.1.0", - "target": "serde_regex" - }, - { - "id": "similar 2.2.1", - "target": "similar" - }, - { - "id": "tokio 1.26.0", - "target": "tokio" - }, - { - "id": "url 2.3.1", - "target": "url" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "async-trait 0.1.64", - "target": "async_trait" - } - ], - "selects": {} - }, - "version": "0.6.7" + "common_attrs": { + "edition": "2018" }, - "license": "MIT", + "library_target_name": "httpdate", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "hyper 0.14.24": { - "name": "hyper", - "version": "0.14.24", - "package_url": "https://github.com/hyperium/hyper", + "name": "httpdate", + "package_url": "https://github.com/pyfisch/httpdate", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/0.14.24/download", - "sha256": "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" + "sha256": "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421", + "url": "https://static.crates.io/crates/httpdate/1.0.2/download" } }, "targets": [ { "Library": { - "crate_name": "hyper", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "httpdate", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hyper", + "version": "1.0.2" + }, + "httpmock 0.6.7": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "rustls" + ], + "deps": [ + { + "id": "assert-json-diff 2.0.2", + "target": "assert_json_diff" + }, + { + "id": "async-object-pool 0.1.4", + "target": "async_object_pool" + }, + { + "id": "base64 0.13.1", + "target": "base64" + }, + { + "id": "crossbeam-utils 0.8.15", + "target": "crossbeam_utils" + }, + { + "id": "form_urlencoded 1.1.0", + "target": "form_urlencoded" + }, + { + "id": "futures-util 0.3.26", + "target": "futures_util" + }, + { + "id": "hyper 0.14.24", + "target": "hyper" + }, + { + "id": "isahc 1.7.0", + "target": "isahc" + }, + { + "id": "lazy_static 1.4.0", + "target": "lazy_static" + }, + { + "id": "levenshtein 1.0.5", + "target": "levenshtein" + }, + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "regex 1.7.1", + "target": "regex" + }, + { + "id": "serde 1.0.152", + "target": "serde" + }, + { + "id": "serde_json 1.0.93", + "target": "serde_json" + }, + { + "id": "serde_regex 1.1.0", + "target": "serde_regex" + }, + { + "id": "similar 2.2.1", + "target": "similar" + }, + { + "id": "tokio 1.26.0", + "target": "tokio" + }, + { + "id": "url 2.3.1", + "target": "url" + } ], + "edition": "2018", + "proc_macro_deps": [ + { + "id": "async-trait 0.1.64", + "target": "async_trait" + } + ] + }, + "library_target_name": "httpmock", + "license": "MIT", + "license_file": "LICENSE", + "license_ids": [ + "MIT" + ], + "name": "httpmock", + "package_url": "https://github.com/alexliesenfeld/httpmock", + "repository": { + "Git": { + "commitish": { + "Rev": "9ecf35255ee154986bc36d06473f1fa088586ad9" + }, + "remote": "https://github.com/alexliesenfeld/httpmock.git", + "shallow_since": "1673473097 +0100" + } + }, + "targets": [ + { + "Library": { + "crate_name": "httpmock", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.6.7" + }, + "hyper 0.14.24": { + "common_attrs": { "crate_features": { "common": [ "default", @@ -4030,324 +3196,372 @@ ] } }, - "edition": "2018", - "version": "0.14.24" + "edition": "2018" }, + "library_target_name": "hyper", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "name": "hyper", + "package_url": "https://github.com/hyperium/hyper", + "repository": { + "Http": { + "sha256": "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c", + "url": "https://static.crates.io/crates/hyper/0.14.24/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "hyper", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.14.24" }, "hyper-rustls 0.23.2": { + "common_attrs": { + "deps": [ + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "hyper 0.14.24", + "target": "hyper" + }, + { + "id": "rustls 0.20.8", + "target": "rustls" + }, + { + "id": "tokio 1.26.0", + "target": "tokio" + }, + { + "id": "tokio-rustls 0.23.4", + "target": "tokio_rustls" + } + ], + "edition": "2018" + }, + "library_target_name": "hyper_rustls", + "license": "Apache-2.0/ISC/MIT", + "license_file": "LICENSE", + "license_ids": [ + "Apache-2.0", + "ISC", + "MIT" + ], "name": "hyper-rustls", - "version": "0.23.2", "package_url": "https://github.com/ctz/hyper-rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-rustls/0.23.2/download", - "sha256": "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" + "sha256": "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c", + "url": "https://static.crates.io/crates/hyper-rustls/0.23.2/download" } }, "targets": [ { "Library": { "crate_name": "hyper_rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hyper_rustls", + "version": "0.23.2" + }, + "idna 0.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "unicode-bidi 0.3.10", + "target": "unicode_bidi" + }, + { + "id": "unicode-normalization 0.1.22", + "target": "unicode_normalization" + } ], - "deps": { - "common": [ - { - "id": "http 0.2.9", - "target": "http" - }, - { - "id": "hyper 0.14.24", - "target": "hyper" - }, - { - "id": "rustls 0.20.8", - "target": "rustls" - }, - { - "id": "tokio 1.26.0", - "target": "tokio" - }, - { - "id": "tokio-rustls 0.23.4", - "target": "tokio_rustls" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.23.2" + "edition": "2018" }, - "license": "Apache-2.0/ISC/MIT", + "library_target_name": "idna", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "ISC", "MIT" ], - "license_file": "LICENSE" - }, - "idna 0.3.0": { "name": "idna", - "version": "0.3.0", "package_url": "https://github.com/servo/rust-url/", "repository": { "Http": { - "url": "https://static.crates.io/crates/idna/0.3.0/download", - "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" + "sha256": "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6", + "url": "https://static.crates.io/crates/idna/0.3.0/download" } }, "targets": [ { "Library": { "crate_name": "idna", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "idna", + "version": "0.3.0" + }, + "indexmap 1.9.2": { + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "std" ], - "deps": { - "common": [ - { - "id": "unicode-bidi 0.3.10", - "target": "unicode_bidi" - }, - { - "id": "unicode-normalization 0.1.22", - "target": "unicode_normalization" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.0" + "deps": [ + { + "id": "hashbrown 0.12.3", + "target": "hashbrown" + }, + { + "id": "indexmap 1.9.2", + "target": "build_script_build" + } + ], + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "indexmap", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 1.9.2": { "name": "indexmap", - "version": "1.9.2", "package_url": "https://github.com/bluss/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/1.9.2/download", - "sha256": "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" + "sha256": "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399", + "url": "https://static.crates.io/crates/indexmap/1.9.2/download" } }, "targets": [ { "Library": { "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "indexmap", + "version": "1.9.2" + }, + "instant 0.1.12": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "hashbrown 0.12.3", - "target": "hashbrown" - }, - { - "id": "indexmap 1.9.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.9.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + } ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "instant", + "license": "BSD-3-Clause", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "MIT" + "BSD-3-Clause" ], - "license_file": "LICENSE-APACHE" - }, - "instant 0.1.12": { "name": "instant", - "version": "0.1.12", "package_url": "https://github.com/sebcrozet/instant", "repository": { "Http": { - "url": "https://static.crates.io/crates/instant/0.1.12/download", - "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" + "sha256": "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c", + "url": "https://static.crates.io/crates/instant/0.1.12/download" } }, "targets": [ { "Library": { "crate_name": "instant", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "instant", + "version": "0.1.12" + }, + "ipnet 2.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.12" + "edition": "2018" }, - "license": "BSD-3-Clause", + "library_target_name": "ipnet", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "BSD-3-Clause" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" - }, - "ipnet 2.7.1": { "name": "ipnet", - "version": "2.7.1", "package_url": "https://github.com/krisprice/ipnet", "repository": { "Http": { - "url": "https://static.crates.io/crates/ipnet/2.7.1/download", - "sha256": "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" + "sha256": "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146", + "url": "https://static.crates.io/crates/ipnet/2.7.1/download" } }, "targets": [ { "Library": { "crate_name": "ipnet", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ipnet", + "version": "2.7.1" + }, + "isahc 1.7.0": { + "build_script_attrs": { + "link_deps": [ + { + "id": "curl-sys 0.4.60+curl-7.88.1", + "target": "curl_sys" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "encoding_rs", + "http2", + "json", + "mime", + "rustls-tls", + "serde", + "serde_json", + "static-curl", + "text-decoding" + ], + "deps": [ + { + "id": "async-channel 1.8.0", + "target": "async_channel" + }, + { + "id": "castaway 0.2.2", + "target": "castaway" + }, + { + "id": "crossbeam-utils 0.8.15", + "target": "crossbeam_utils" + }, + { + "id": "curl 0.4.44", + "target": "curl" + }, + { + "id": "curl-sys 0.4.60+curl-7.88.1", + "target": "curl_sys" + }, + { + "id": "encoding_rs 0.8.32", + "target": "encoding_rs" + }, + { + "id": "event-listener 2.5.3", + "target": "event_listener" + }, + { + "id": "futures-io 0.3.26", + "target": "futures_io" + }, + { + "id": "futures-lite 1.12.0", + "target": "futures_lite" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "isahc 1.7.0", + "target": "build_script_build" + }, + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "mime 0.3.16", + "target": "mime" + }, + { + "id": "once_cell 1.17.1", + "target": "once_cell" + }, + { + "id": "polling 2.5.2", + "target": "polling" + }, + { + "id": "serde 1.0.152", + "target": "serde" + }, + { + "id": "serde_json 1.0.93", + "target": "serde_json" + }, + { + "id": "sluice 0.5.5", + "target": "sluice" + }, + { + "id": "tracing 0.1.37", + "target": "tracing" + }, + { + "id": "tracing-futures 0.2.5", + "target": "tracing_futures" + }, + { + "id": "url 2.3.1", + "target": "url" + }, + { + "id": "waker-fn 1.1.0", + "target": "waker_fn" + } ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2018", - "version": "2.7.1" + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "isahc", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "isahc 1.7.0": { "name": "isahc", - "version": "1.7.0", "package_url": "https://github.com/sagebind/isahc", "repository": { "Git": { - "remote": "https://github.com/sagebind/isahc.git", "commitish": { "Rev": "096aff7b13f4ff5bb474fdc27bc30b297a2968f6" }, + "remote": "https://github.com/sagebind/isahc.git", "shallow_since": "1667787880 -0600" } }, @@ -4355,621 +3569,282 @@ { "Library": { "crate_name": "isahc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "isahc", + "version": "1.7.0" + }, + "itoa 1.0.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "encoding_rs", - "http2", - "json", - "mime", - "rustls-tls", - "serde", - "serde_json", - "static-curl", - "text-decoding" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "async-channel 1.8.0", - "target": "async_channel" - }, - { - "id": "castaway 0.2.2", - "target": "castaway" - }, - { - "id": "crossbeam-utils 0.8.15", - "target": "crossbeam_utils" - }, - { - "id": "curl 0.4.44", - "target": "curl" - }, - { - "id": "curl-sys 0.4.60+curl-7.88.1", - "target": "curl_sys" - }, - { - "id": "encoding_rs 0.8.32", - "target": "encoding_rs" - }, - { - "id": "event-listener 2.5.3", - "target": "event_listener" - }, - { - "id": "futures-io 0.3.26", - "target": "futures_io" - }, - { - "id": "futures-lite 1.12.0", - "target": "futures_lite" - }, - { - "id": "http 0.2.9", - "target": "http" - }, - { - "id": "isahc 1.7.0", - "target": "build_script_build" - }, - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "mime 0.3.16", - "target": "mime" - }, - { - "id": "once_cell 1.17.1", - "target": "once_cell" - }, - { - "id": "polling 2.5.2", - "target": "polling" - }, - { - "id": "serde 1.0.152", - "target": "serde" - }, - { - "id": "serde_json 1.0.93", - "target": "serde_json" - }, - { - "id": "sluice 0.5.5", - "target": "sluice" - }, - { - "id": "tracing 0.1.37", - "target": "tracing" - }, - { - "id": "tracing-futures 0.2.5", - "target": "tracing_futures" - }, - { - "id": "url 2.3.1", - "target": "url" - }, - { - "id": "waker-fn 1.1.0", - "target": "waker_fn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.7.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "link_deps": { - "common": [ - { - "id": "curl-sys 0.4.60+curl-7.88.1", - "target": "curl_sys" - } - ], - "selects": {} - } + "edition": "2018" }, - "license": "MIT", + "library_target_name": "itoa", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "itoa 1.0.5": { "name": "itoa", - "version": "1.0.5", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.5/download", - "sha256": "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" + "sha256": "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440", + "url": "https://static.crates.io/crates/itoa/1.0.5/download" } }, "targets": [ { "Library": { "crate_name": "itoa", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "itoa", + "version": "1.0.5" + }, + "js-sys 0.3.61": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "wasm-bindgen 0.2.84", + "target": "wasm_bindgen" + } ], - "edition": "2018", - "version": "1.0.5" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "js_sys", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "js-sys 0.3.61": { "name": "js-sys", - "version": "0.3.61", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.61/download", - "sha256": "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" + "sha256": "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730", + "url": "https://static.crates.io/crates/js-sys/0.3.61/download" } }, "targets": [ { "Library": { "crate_name": "js_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "js_sys", + "version": "0.3.61" + }, + "kv-log-macro 1.0.7": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "log 0.4.17", + "target": "log" + } ], - "deps": { - "common": [ - { - "id": "wasm-bindgen 0.2.84", - "target": "wasm_bindgen" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.61" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "kv_log_macro", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "kv-log-macro 1.0.7": { "name": "kv-log-macro", - "version": "1.0.7", "package_url": "https://github.com/yoshuawuyts/kv-log-macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/kv-log-macro/1.0.7/download", - "sha256": "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" + "sha256": "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f", + "url": "https://static.crates.io/crates/kv-log-macro/1.0.7/download" } }, "targets": [ { "Library": { "crate_name": "kv_log_macro", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "kv_log_macro", + "version": "1.0.7" + }, + "lazy_static 1.4.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "log 0.4.17", - "target": "log" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.7" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "lazy_static", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "lazy_static 1.4.0": { "name": "lazy_static", - "version": "1.4.0", "package_url": "https://github.com/rust-lang-nursery/lazy-static.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/lazy_static/1.4.0/download", - "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", + "url": "https://static.crates.io/crates/lazy_static/1.4.0/download" } }, "targets": [ { "Library": { "crate_name": "lazy_static", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "lazy_static", + "version": "1.4.0" + }, + "levenshtein 1.0.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.4.0" + "edition": "2015" }, - "license": "MIT/Apache-2.0", + "library_target_name": "levenshtein", + "license": "MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "levenshtein 1.0.5": { "name": "levenshtein", - "version": "1.0.5", "package_url": "https://github.com/wooorm/levenshtein-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/levenshtein/1.0.5/download", - "sha256": "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760" + "sha256": "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760", + "url": "https://static.crates.io/crates/levenshtein/1.0.5/download" } }, "targets": [ { "Library": { "crate_name": "levenshtein", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "levenshtein", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.0.5" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": null + "version": "1.0.5" }, "libc 0.2.167": { - "name": "libc", - "version": "0.2.167", - "package_url": "https://github.com/rust-lang/libc", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libc/0.2.167/download", - "sha256": "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libc", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.167" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "libc 0.2.167", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "libc", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "libnghttp2-sys 0.1.7+1.45.0": { - "name": "libnghttp2-sys", - "version": "0.1.7+1.45.0", - "package_url": "https://github.com/alexcrichton/nghttp2-rs", + "name": "libc", + "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libnghttp2-sys/0.1.7+1.45.0/download", - "sha256": "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f" + "sha256": "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc", + "url": "https://static.crates.io/crates/libc/0.2.167/download" } }, "targets": [ { "Library": { - "crate_name": "libnghttp2_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "libc", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "libnghttp2_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], + "version": "0.2.167" + }, + "libnghttp2-sys 0.1.7+1.45.0": { + "build_script_attrs": { "data_glob": [ + "**", "nghttp2/**" ], - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "libc" - }, - { - "id": "libnghttp2-sys 0.1.7+1.45.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.1.7+1.45.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "cc 1.2.2", + "target": "cc" + } ], + "links": "nghttp2" + }, + "common_attrs": { "data_glob": [ - "**", "nghttp2/**" ], - "deps": { - "common": [ - { - "id": "cc 1.2.2", - "target": "cc" - } - ], - "selects": {} - }, - "links": "nghttp2" + "deps": [ + { + "id": "libc 0.2.167", + "target": "libc" + }, + { + "id": "libnghttp2-sys 0.1.7+1.45.0", + "target": "build_script_build" + } + ], + "edition": "2015" }, + "library_target_name": "libnghttp2_sys", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "libz-sys 1.1.8": { - "name": "libz-sys", - "version": "1.1.8", - "package_url": "https://github.com/rust-lang/libz-sys", + "name": "libnghttp2-sys", + "package_url": "https://github.com/alexcrichton/nghttp2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/libz-sys/1.1.8/download", - "sha256": "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" + "sha256": "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f", + "url": "https://static.crates.io/crates/libnghttp2-sys/0.1.7+1.45.0/download" } }, "targets": [ { "Library": { - "crate_name": "libz_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "libnghttp2_sys", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "libz_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "libc" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "libc" - }, - { - "id": "libz-sys 1.1.8", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.1.8" - }, + "version": "0.1.7+1.45.0" + }, + "libz-sys 1.1.8": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], "deps": { "common": [ { @@ -4992,317 +3867,237 @@ }, "links": "z" }, + "common_attrs": { + "crate_features": [ + "libc" + ], + "deps": [ + { + "id": "libc 0.2.167", + "target": "libc" + }, + { + "id": "libz-sys 1.1.8", + "target": "build_script_build" + } + ], + "edition": "2018" + }, + "library_target_name": "libz_sys", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "log 0.4.17": { - "name": "log", - "version": "0.4.17", - "package_url": "https://github.com/rust-lang/log", + "name": "libz-sys", + "package_url": "https://github.com/rust-lang/libz-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.17/download", - "sha256": "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" + "sha256": "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf", + "url": "https://static.crates.io/crates/libz-sys/1.1.8/download" } }, "targets": [ { "Library": { - "crate_name": "log", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "libz_sys", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "log", + "version": "1.1.8" + }, + "log 0.4.17": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "kv_unstable", - "value-bag" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "log 0.4.17", - "target": "build_script_build" - }, - { - "id": "value-bag 1.0.0-alpha.9", - "target": "value_bag" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.17" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "kv_unstable", + "value-bag" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "log 0.4.17", + "target": "build_script_build" + }, + { + "id": "value-bag 1.0.0-alpha.9", + "target": "value_bag" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "log", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "md-5 0.9.1": { - "name": "md-5", - "version": "0.9.1", - "package_url": "https://github.com/RustCrypto/hashes", + "name": "log", + "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/md-5/0.9.1/download", - "sha256": "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15" + "sha256": "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e", + "url": "https://static.crates.io/crates/log/0.4.17/download" } }, "targets": [ { "Library": { - "crate_name": "md5", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "log", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "md5", + "version": "0.4.17" + }, + "md-5 0.9.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "block-buffer 0.9.0", - "target": "block_buffer" - }, - { - "id": "digest 0.9.0", - "target": "digest" - }, - { - "id": "opaque-debug 0.3.0", - "target": "opaque_debug" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.9.1" + "deps": [ + { + "id": "block-buffer 0.9.0", + "target": "block_buffer" + }, + { + "id": "digest 0.9.0", + "target": "digest" + }, + { + "id": "opaque-debug 0.3.0", + "target": "opaque_debug" + } + ], + "edition": "2018" }, + "library_target_name": "md5", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "memchr 2.5.0": { - "name": "memchr", - "version": "2.5.0", - "package_url": "https://github.com/BurntSushi/memchr", + "name": "md-5", + "package_url": "https://github.com/RustCrypto/hashes", "repository": { "Http": { - "url": "https://static.crates.io/crates/memchr/2.5.0/download", - "sha256": "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + "sha256": "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15", + "url": "https://static.crates.io/crates/md-5/0.9.1/download" } }, "targets": [ { "Library": { - "crate_name": "memchr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "md5", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "memchr", + "version": "0.9.1" + }, + "memchr 2.5.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.5.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.5.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "memchr 2.5.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "memchr", "license": "Unlicense/MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" - }, - "mime 0.3.16": { - "name": "mime", - "version": "0.3.16", - "package_url": "https://github.com/hyperium/mime", + "name": "memchr", + "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/mime/0.3.16/download", - "sha256": "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" + "sha256": "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", + "url": "https://static.crates.io/crates/memchr/2.5.0/download" } }, "targets": [ { "Library": { - "crate_name": "mime", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "memchr", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "mime", + "version": "2.5.0" + }, + "mime 0.3.16": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.3.16" + "edition": "2015" }, + "library_target_name": "mime", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "mio 0.8.6": { - "name": "mio", - "version": "0.8.6", - "package_url": "https://github.com/tokio-rs/mio", + "name": "mime", + "package_url": "https://github.com/hyperium/mime", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/0.8.6/download", - "sha256": "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" + "sha256": "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d", + "url": "https://static.crates.io/crates/mime/0.3.16/download" } }, "targets": [ { "Library": { - "crate_name": "mio", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "mime", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "mio", + "version": "0.3.16" + }, + "mio 0.8.6": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "net", + "os-ext", + "os-poll" ], - "crate_features": { - "common": [ - "default", - "net", - "os-ext", - "os-poll" - ], - "selects": {} - }, "deps": { "common": [ { @@ -5335,44 +4130,34 @@ ] } }, - "edition": "2018", - "version": "0.8.6" + "edition": "2018" }, + "library_target_name": "mio", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "num_cpus 1.15.0": { - "name": "num_cpus", - "version": "1.15.0", - "package_url": "https://github.com/seanmonstar/num_cpus", + "name": "mio", + "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_cpus/1.15.0/download", - "sha256": "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" + "sha256": "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9", + "url": "https://static.crates.io/crates/mio/0.8.6/download" } }, "targets": [ { "Library": { - "crate_name": "num_cpus", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "mio", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "num_cpus", + "version": "0.8.6" + }, + "num_cpus 1.15.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -5390,723 +4175,515 @@ ] } }, - "edition": "2015", - "version": "1.15.0" + "edition": "2015" + }, + "library_target_name": "num_cpus", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "name": "num_cpus", + "package_url": "https://github.com/seanmonstar/num_cpus", + "repository": { + "Http": { + "sha256": "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b", + "url": "https://static.crates.io/crates/num_cpus/1.15.0/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "num_cpus", + "crate_root": "src/lib.rs" + } + } + ], + "version": "1.15.0" + }, + "num_enum 0.5.11": { + "common_attrs": { + "crate_features": [ + "default", + "std" + ], + "edition": "2018", + "proc_macro_deps": [ + { + "id": "num_enum_derive 0.5.11", + "target": "num_enum_derive" + } + ] }, - "license": "MIT OR Apache-2.0", + "library_target_name": "num_enum", + "license": "BSD-3-Clause OR MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", + "BSD-3-Clause", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "num_enum 0.5.11": { "name": "num_enum", - "version": "0.5.11", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum/0.5.11/download", - "sha256": "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" + "sha256": "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9", + "url": "https://static.crates.io/crates/num_enum/0.5.11/download" } }, "targets": [ { "Library": { "crate_name": "num_enum", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "num_enum", + "version": "0.5.11" + }, + "num_enum_derive 0.5.11": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "proc-macro-crate", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "num_enum_derive 0.5.11", - "target": "num_enum_derive" - } - ], - "selects": {} - }, - "version": "0.5.11" + "deps": [ + { + "id": "proc-macro-crate 1.3.1", + "target": "proc_macro_crate" + }, + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } + ], + "edition": "2018" }, + "library_target_name": "num_enum_derive", "license": "BSD-3-Clause OR MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "BSD-3-Clause", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "num_enum_derive 0.5.11": { "name": "num_enum_derive", - "version": "0.5.11", "package_url": "https://github.com/illicitonion/num_enum", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_enum_derive/0.5.11/download", - "sha256": "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" + "sha256": "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799", + "url": "https://static.crates.io/crates/num_enum_derive/0.5.11/download" } }, "targets": [ { "ProcMacro": { "crate_name": "num_enum_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "num_enum_derive", + "version": "0.5.11" + }, + "once_cell 1.17.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "race", + "std" ], - "crate_features": { - "common": [ - "proc-macro-crate", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro-crate 1.3.1", - "target": "proc_macro_crate" - }, - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.5.11" + "edition": "2021" }, - "license": "BSD-3-Clause OR MIT OR Apache-2.0", + "library_target_name": "once_cell", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "BSD-3-Clause", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "once_cell 1.17.1": { "name": "once_cell", - "version": "1.17.1", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.17.1/download", - "sha256": "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" + "sha256": "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3", + "url": "https://static.crates.io/crates/once_cell/1.17.1/download" } }, "targets": [ { "Library": { "crate_name": "once_cell", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "once_cell", + "version": "1.17.1" + }, + "opaque-debug 0.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "race", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.17.1" + "edition": "2018" }, + "library_target_name": "opaque_debug", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "opaque-debug 0.3.0": { "name": "opaque-debug", - "version": "0.3.0", "package_url": "https://github.com/RustCrypto/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/opaque-debug/0.3.0/download", - "sha256": "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" + "sha256": "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5", + "url": "https://static.crates.io/crates/opaque-debug/0.3.0/download" } }, "targets": [ { "Library": { "crate_name": "opaque_debug", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "opaque_debug", + "version": "0.3.0" + }, + "parking 2.0.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.3.0" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "parking", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "parking 2.0.0": { "name": "parking", - "version": "2.0.0", "package_url": "https://github.com/stjepang/parking", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking/2.0.0/download", - "sha256": "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" + "sha256": "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72", + "url": "https://static.crates.io/crates/parking/2.0.0/download" } }, "targets": [ { "Library": { "crate_name": "parking", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "parking", + "version": "2.0.0" + }, + "percent-encoding 2.2.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default" ], - "edition": "2018", - "version": "2.0.0" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "percent_encoding", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "percent-encoding 2.2.0": { "name": "percent-encoding", - "version": "2.2.0", "package_url": "https://github.com/servo/rust-url/", "repository": { "Http": { - "url": "https://static.crates.io/crates/percent-encoding/2.2.0/download", - "sha256": "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" + "sha256": "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e", + "url": "https://static.crates.io/crates/percent-encoding/2.2.0/download" } }, "targets": [ { "Library": { "crate_name": "percent_encoding", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "percent_encoding", + "version": "2.2.0" + }, + "pin-project 1.0.12": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default" - ], - "selects": {} - }, "edition": "2018", - "version": "2.2.0" + "proc_macro_deps": [ + { + "id": "pin-project-internal 1.0.12", + "target": "pin_project_internal" + } + ] }, - "license": "MIT OR Apache-2.0", + "library_target_name": "pin_project", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "pin-project 1.0.12": { "name": "pin-project", - "version": "1.0.12", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project/1.0.12/download", - "sha256": "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" + "sha256": "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc", + "url": "https://static.crates.io/crates/pin-project/1.0.12/download" } }, "targets": [ { "Library": { "crate_name": "pin_project", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pin_project", + "version": "1.0.12" + }, + "pin-project-internal 1.0.12": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "pin-project-internal 1.0.12", - "target": "pin_project_internal" - } - ], - "selects": {} - }, - "version": "1.0.12" + "edition": "2018" }, + "library_target_name": "pin_project_internal", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "pin-project-internal 1.0.12": { "name": "pin-project-internal", - "version": "1.0.12", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-internal/1.0.12/download", - "sha256": "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" + "sha256": "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55", + "url": "https://static.crates.io/crates/pin-project-internal/1.0.12/download" } }, "targets": [ { "ProcMacro": { "crate_name": "pin_project_internal", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pin_project_internal", + "version": "1.0.12" + }, + "pin-project-lite 0.2.9": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.12" + "edition": "2018" }, + "library_target_name": "pin_project_lite", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "pin-project-lite 0.2.9": { "name": "pin-project-lite", - "version": "0.2.9", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.9/download", - "sha256": "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" + "sha256": "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116", + "url": "https://static.crates.io/crates/pin-project-lite/0.2.9/download" } }, "targets": [ { "Library": { "crate_name": "pin_project_lite", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pin_project_lite", + "version": "0.2.9" + }, + "pin-utils 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.2.9" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "pin_utils", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "pin-utils 0.1.0": { "name": "pin-utils", - "version": "0.1.0", "package_url": "https://github.com/rust-lang-nursery/pin-utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-utils/0.1.0/download", - "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184", + "url": "https://static.crates.io/crates/pin-utils/0.1.0/download" } }, "targets": [ { "Library": { "crate_name": "pin_utils", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pin_utils", + "version": "0.1.0" + }, + "pkg-config 0.3.26": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.1.0" + "edition": "2015" }, + "library_target_name": "pkg_config", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "pkg-config 0.3.26": { "name": "pkg-config", - "version": "0.3.26", "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.26/download", - "sha256": "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" + "sha256": "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160", + "url": "https://static.crates.io/crates/pkg-config/0.3.26/download" } }, "targets": [ { "Library": { "crate_name": "pkg_config", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pkg_config", + "version": "0.3.26" + }, + "pkg_a 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "anyhow 1.0.69", + "target": "anyhow" + }, + { + "id": "reqwest 0.11.14", + "target": "reqwest" + } ], - "edition": "2015", - "version": "0.3.26" + "deps_dev": [ + { + "id": "httpmock 0.6.7", + "target": "httpmock" + } + ], + "edition": "2018" }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "pkg_a 0.1.0": { + "library_target_name": "pkg_a", "name": "pkg_a", - "version": "0.1.0", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "pkg_a", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pkg_a", + "version": "0.1.0" + }, + "pkg_b 0.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "rustls 0.21.12", + "target": "rustls" + } ], - "deps": { - "common": [ - { - "id": "anyhow 1.0.69", - "target": "anyhow" - }, - { - "id": "reqwest 0.11.14", - "target": "reqwest" - } - ], - "selects": {} - }, - "deps_dev": { - "common": [ - { - "id": "httpmock 0.6.7", - "target": "httpmock" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.0" + "edition": "2018" }, - "license": null, - "license_ids": [], - "license_file": null - }, - "pkg_b 0.1.0": { + "library_target_name": "pkg_b", "name": "pkg_b", - "version": "0.1.0", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "pkg_b", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pkg_b", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "rustls 0.21.12", - "target": "rustls" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.0" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.1.0" }, "pkg_c 0.1.0": { - "name": "pkg_c", - "version": "0.1.0", - "package_url": null, - "repository": null, - "targets": [ - { - "Library": { - "crate_name": "pkg_c", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "pkg_c", "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "md-5 0.9.1", + "target": "md5" + } ], - "deps": { - "common": [ - { - "id": "md-5 0.9.1", - "target": "md5" - } - ], - "selects": {} - }, "edition": "2018", - "proc_macro_deps_dev": { - "common": [ - { - "id": "hex-literal 0.3.4", - "target": "hex_literal" - } - ], - "selects": {} - }, - "version": "0.1.0" - }, - "license": null, - "license_ids": [], - "license_file": null - }, - "polling 2.5.2": { - "name": "polling", - "version": "2.5.2", - "package_url": "https://github.com/smol-rs/polling", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/polling/2.5.2/download", - "sha256": "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "polling", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "proc_macro_deps_dev": [ + { + "id": "hex-literal 0.3.4", + "target": "hex_literal" } - }, + ] + }, + "library_target_name": "pkg_c", + "name": "pkg_c", + "repository": null, + "targets": [ { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "Library": { + "crate_name": "pkg_c", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "polling", + "version": "0.1.0" + }, + "polling 2.5.2": { + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { @@ -6141,429 +4718,296 @@ ] } }, - "edition": "2018", - "version": "2.5.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "edition": "2018" }, + "library_target_name": "polling", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "polling", + "package_url": "https://github.com/smol-rs/polling", + "repository": { + "Http": { + "sha256": "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6", + "url": "https://static.crates.io/crates/polling/2.5.2/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "polling", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "2.5.2" }, "proc-macro-crate 1.3.1": { + "common_attrs": { + "deps": [ + { + "id": "once_cell 1.17.1", + "target": "once_cell" + }, + { + "id": "toml_edit 0.19.4", + "target": "toml_edit" + } + ], + "edition": "2021" + }, + "library_target_name": "proc_macro_crate", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "proc-macro-crate", - "version": "1.3.1", "package_url": "https://github.com/bkchr/proc-macro-crate", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-crate/1.3.1/download", - "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" + "sha256": "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919", + "url": "https://static.crates.io/crates/proc-macro-crate/1.3.1/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro_crate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "proc_macro_crate", + "version": "1.3.1" + }, + "proc-macro2 1.0.51": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "deps": { - "common": [ - { - "id": "once_cell 1.17.1", - "target": "once_cell" - }, - { - "id": "toml_edit 0.19.4", - "target": "toml_edit" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.3.1" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.6", + "target": "unicode_ident" + } + ], + "edition": "2018" }, + "library_target_name": "proc_macro2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.51": { "name": "proc-macro2", - "version": "1.0.51", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.51/download", - "sha256": "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" + "sha256": "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6", + "url": "https://static.crates.io/crates/proc-macro2/1.0.51/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "proc_macro2", + "version": "1.0.51" + }, + "quote 1.0.23": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.6", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.51" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "quote", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.23": { "name": "quote", - "version": "1.0.23", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.23/download", - "sha256": "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" + "sha256": "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b", + "url": "https://static.crates.io/crates/quote/1.0.23/download" } }, "targets": [ { "Library": { "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "quote", + "version": "1.0.23" + }, + "regex 1.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.23" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_features": [ + "aho-corasick", + "default", + "memchr", + "perf", + "perf-cache", + "perf-dfa", + "perf-inline", + "perf-literal", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ], + "deps": [ + { + "id": "aho-corasick 0.7.20", + "target": "aho_corasick" + }, + { + "id": "memchr 2.5.0", + "target": "memchr" + }, + { + "id": "regex-syntax 0.6.28", + "target": "regex_syntax" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "regex", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "regex 1.7.1": { "name": "regex", - "version": "1.7.1", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.7.1/download", - "sha256": "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" + "sha256": "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733", + "url": "https://static.crates.io/crates/regex/1.7.1/download" } }, "targets": [ { "Library": { "crate_name": "regex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "regex", + "version": "1.7.1" + }, + "regex-syntax 0.6.28": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" ], - "crate_features": { - "common": [ - "aho-corasick", - "default", - "memchr", - "perf", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "aho-corasick 0.7.20", - "target": "aho_corasick" - }, - { - "id": "memchr 2.5.0", - "target": "memchr" - }, - { - "id": "regex-syntax 0.6.28", - "target": "regex_syntax" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.7.1" + "edition": "2018" }, + "library_target_name": "regex_syntax", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "regex-syntax 0.6.28": { "name": "regex-syntax", - "version": "0.6.28", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.6.28/download", - "sha256": "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" + "sha256": "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848", + "url": "https://static.crates.io/crates/regex-syntax/0.6.28/download" } }, "targets": [ { "Library": { "crate_name": "regex_syntax", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "regex_syntax", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.28" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.6.28" }, "reqwest 0.11.14": { - "name": "reqwest", - "version": "0.11.14", - "package_url": "https://github.com/seanmonstar/reqwest", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/reqwest/0.11.14/download", - "sha256": "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "reqwest", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "reqwest", "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "__rustls", + "__tls", + "blocking", + "hyper-rustls", + "json", + "rustls", + "rustls-pemfile", + "rustls-tls", + "rustls-tls-webpki-roots", + "serde_json", + "tokio-rustls", + "webpki-roots" ], - "crate_features": { - "common": [ - "__rustls", - "__tls", - "blocking", - "hyper-rustls", - "json", - "rustls", - "rustls-pemfile", - "rustls-tls", - "rustls-tls-webpki-roots", - "serde_json", - "tokio-rustls", - "webpki-roots" - ], - "selects": {} - }, "deps": { "common": [ { @@ -6790,66 +5234,50 @@ ] } }, - "edition": "2018", - "version": "0.11.14" + "edition": "2018" }, + "library_target_name": "reqwest", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "ring 0.16.20": { - "name": "ring", - "version": "0.16.20", - "package_url": "https://github.com/briansmith/ring", + "name": "reqwest", + "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/ring/0.16.20/download", - "sha256": "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" + "sha256": "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9", + "url": "https://static.crates.io/crates/reqwest/0.11.14/download" } }, "targets": [ { "Library": { - "crate_name": "ring", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "reqwest", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ring", + "version": "0.11.14" + }, + "ring 0.16.20": { + "build_script_attrs": { + "deps": [ + { + "id": "cc 1.2.2", + "target": "cc" + } + ], + "links": "ring-asm" + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "dev_urandom_fallback", + "once_cell" ], - "crate_features": { - "common": [ - "alloc", - "default", - "dev_urandom_fallback", - "once_cell" - ], - "selects": {} - }, "deps": { "common": [ { @@ -6904,91 +5332,58 @@ "target": "once_cell" } ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "once_cell 1.17.1", - "target": "once_cell" - } - ] - } - }, - "edition": "2018", - "version": "0.16.20" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.2", - "target": "cc" - } - ], - "selects": {} + "x86_64-unknown-nixos-gnu": [ + { + "id": "once_cell 1.17.1", + "target": "once_cell" + } + ] + } }, - "links": "ring-asm" + "edition": "2018" }, - "license": null, - "license_ids": [], - "license_file": "LICENSE" - }, - "ring 0.17.8": { + "library_target_name": "ring", + "license_file": "LICENSE", "name": "ring", - "version": "0.17.8", "package_url": "https://github.com/briansmith/ring", "repository": { "Http": { - "url": "https://static.crates.io/crates/ring/0.17.8/download", - "sha256": "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" + "sha256": "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc", + "url": "https://static.crates.io/crates/ring/0.16.20/download" } }, "targets": [ { "Library": { "crate_name": "ring", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "ring", + "version": "0.16.20" + }, + "ring 0.17.8": { + "build_script_attrs": { + "deps": [ + { + "id": "cc 1.2.2", + "target": "cc" + } + ], + "links": "ring_core_0_17_8" + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "dev_urandom_fallback" ], - "crate_features": { - "common": [ - "alloc", - "default", - "dev_urandom_fallback" - ], - "selects": {} - }, "deps": { "common": [ { @@ -7029,1502 +5424,1023 @@ ] } }, - "edition": "2021", - "version": "0.17.8" + "edition": "2021" + }, + "library_target_name": "ring", + "license_file": "LICENSE", + "name": "ring", + "package_url": "https://github.com/briansmith/ring", + "repository": { + "Http": { + "sha256": "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d", + "url": "https://static.crates.io/crates/ring/0.17.8/download" + } }, + "targets": [ + { + "Library": { + "crate_name": "ring", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "0.17.8" + }, + "rustls 0.20.8": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "link_deps": [ + { + "id": "ring 0.16.20", + "target": "ring" + } + ] + }, + "common_attrs": { + "crate_features": [ + "dangerous_configuration", + "default", + "log", + "logging", + "tls12" ], - "data_glob": [ - "**" + "deps": [ + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "ring 0.16.20", + "target": "ring" + }, + { + "id": "rustls 0.20.8", + "target": "build_script_build" + }, + { + "id": "sct 0.7.0", + "target": "sct" + }, + { + "id": "webpki 0.22.0", + "target": "webpki" + } ], - "deps": { - "common": [ - { - "id": "cc 1.2.2", - "target": "cc" - } - ], - "selects": {} - }, - "links": "ring_core_0_17_8" + "edition": "2018" }, - "license": null, - "license_ids": [], - "license_file": "LICENSE" - }, - "rustls 0.20.8": { + "library_target_name": "rustls", + "license": "Apache-2.0/ISC/MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "ISC", + "MIT" + ], "name": "rustls", - "version": "0.20.8", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.20.8/download", - "sha256": "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" + "sha256": "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f", + "url": "https://static.crates.io/crates/rustls/0.20.8/download" } }, "targets": [ { "Library": { "crate_name": "rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "rustls", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "dangerous_configuration", - "default", - "log", - "logging", - "tls12" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "ring 0.16.20", - "target": "ring" - }, - { - "id": "rustls 0.20.8", - "target": "build_script_build" - }, - { - "id": "sct 0.7.0", - "target": "sct" - }, - { - "id": "webpki 0.22.0", - "target": "webpki" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.20.8" - }, + "version": "0.20.8" + }, + "rustls 0.21.12": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "link_deps": [ + { + "id": "ring 0.17.8", + "target": "ring" + } + ] + }, + "common_attrs": { + "crate_features": [ + "default", + "log", + "logging", + "tls12" ], - "data_glob": [ - "**" + "deps": [ + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "ring 0.17.8", + "target": "ring" + }, + { + "id": "rustls 0.21.12", + "target": "build_script_build" + }, + { + "id": "rustls-webpki 0.101.7", + "target": "webpki" + }, + { + "id": "sct 0.7.0", + "target": "sct" + } ], - "link_deps": { - "common": [ - { - "id": "ring 0.16.20", - "target": "ring" - } - ], - "selects": {} - } + "edition": "2021" }, - "license": "Apache-2.0/ISC/MIT", + "library_target_name": "rustls", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "ISC", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "rustls 0.21.12": { "name": "rustls", - "version": "0.21.12", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.21.12/download", - "sha256": "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" + "sha256": "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e", + "url": "https://static.crates.io/crates/rustls/0.21.12/download" } }, "targets": [ { "Library": { "crate_name": "rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "rustls", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "log", - "logging", - "tls12" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "ring 0.17.8", - "target": "ring" - }, - { - "id": "rustls 0.21.12", - "target": "build_script_build" - }, - { - "id": "rustls-webpki 0.101.7", - "target": "webpki" - }, - { - "id": "sct 0.7.0", - "target": "sct" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.21.12" - }, + "version": "0.21.12" + }, + "rustls-ffi 0.8.2": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "links": "rustls_ffi" + }, + "common_attrs": { + "crate_features": [ + "no_log_capture" ], - "data_glob": [ - "**" + "deps": [ + { + "id": "libc 0.2.167", + "target": "libc" + }, + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "num_enum 0.5.11", + "target": "num_enum" + }, + { + "id": "rustls 0.20.8", + "target": "rustls" + }, + { + "id": "rustls-ffi 0.8.2", + "target": "build_script_build" + }, + { + "id": "rustls-pemfile 0.2.1", + "target": "rustls_pemfile" + }, + { + "id": "sct 0.7.0", + "target": "sct" + }, + { + "id": "webpki 0.22.0", + "target": "webpki" + } ], - "link_deps": { - "common": [ - { - "id": "ring 0.17.8", - "target": "ring" - } - ], - "selects": {} - } + "edition": "2018" }, - "license": "Apache-2.0 OR ISC OR MIT", + "library_target_name": "rustls_ffi", + "license": "Apache-2.0/ISC/MIT", + "license_file": "LICENSE", "license_ids": [ "Apache-2.0", "ISC", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "rustls-ffi 0.8.2": { "name": "rustls-ffi", - "version": "0.8.2", "package_url": "https://github.com/rustls/rustls-ffi", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-ffi/0.8.2/download", - "sha256": "9da52707cca59e6eef8a78f3ad8d04024254a168ed1b41eb4dfa9616eace781a" + "sha256": "9da52707cca59e6eef8a78f3ad8d04024254a168ed1b41eb4dfa9616eace781a", + "url": "https://static.crates.io/crates/rustls-ffi/0.8.2/download" } }, "targets": [ { "Library": { "crate_name": "rustls_ffi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "rustls_ffi", + "version": "0.8.2" + }, + "rustls-pemfile 0.2.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "no_log_capture" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "libc" - }, - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "num_enum 0.5.11", - "target": "num_enum" - }, - { - "id": "rustls 0.20.8", - "target": "rustls" - }, - { - "id": "rustls-ffi 0.8.2", - "target": "build_script_build" - }, - { - "id": "rustls-pemfile 0.2.1", - "target": "rustls_pemfile" - }, - { - "id": "sct 0.7.0", - "target": "sct" - }, - { - "id": "webpki 0.22.0", - "target": "webpki" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.8.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" + "deps": [ + { + "id": "base64 0.13.1", + "target": "base64" + } ], - "links": "rustls_ffi" + "edition": "2018" }, + "library_target_name": "rustls_pemfile", "license": "Apache-2.0/ISC/MIT", + "license_file": "LICENSE", "license_ids": [ "Apache-2.0", "ISC", "MIT" ], - "license_file": "LICENSE" - }, - "rustls-pemfile 0.2.1": { "name": "rustls-pemfile", - "version": "0.2.1", "package_url": "https://github.com/rustls/pemfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pemfile/0.2.1/download", - "sha256": "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" + "sha256": "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9", + "url": "https://static.crates.io/crates/rustls-pemfile/0.2.1/download" } }, "targets": [ { "Library": { "crate_name": "rustls_pemfile", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rustls_pemfile", + "version": "0.2.1" + }, + "rustls-pemfile 1.0.2": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "base64 0.21.0", + "target": "base64" + } ], - "deps": { - "common": [ - { - "id": "base64 0.13.1", - "target": "base64" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.1" + "edition": "2018" }, - "license": "Apache-2.0/ISC/MIT", + "library_target_name": "rustls_pemfile", + "license": "Apache-2.0 OR ISC OR MIT", + "license_file": "LICENSE", "license_ids": [ "Apache-2.0", "ISC", "MIT" ], - "license_file": "LICENSE" - }, - "rustls-pemfile 1.0.2": { "name": "rustls-pemfile", - "version": "1.0.2", "package_url": "https://github.com/rustls/pemfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pemfile/1.0.2/download", - "sha256": "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" + "sha256": "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b", + "url": "https://static.crates.io/crates/rustls-pemfile/1.0.2/download" } }, "targets": [ { "Library": { "crate_name": "rustls_pemfile", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rustls_pemfile", + "version": "1.0.2" + }, + "rustls-webpki 0.101.7": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "std" + ], + "deps": [ + { + "id": "ring 0.17.8", + "target": "ring" + }, + { + "id": "untrusted 0.9.0", + "target": "untrusted" + } ], - "deps": { - "common": [ - { - "id": "base64 0.21.0", - "target": "base64" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.2" + "edition": "2021" }, - "license": "Apache-2.0 OR ISC OR MIT", + "library_target_name": "webpki", + "license": "ISC", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "ISC", - "MIT" + "ISC" ], - "license_file": "LICENSE" - }, - "rustls-webpki 0.101.7": { "name": "rustls-webpki", - "version": "0.101.7", "package_url": "https://github.com/rustls/webpki", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-webpki/0.101.7/download", - "sha256": "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" + "sha256": "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765", + "url": "https://static.crates.io/crates/rustls-webpki/0.101.7/download" } }, "targets": [ { "Library": { "crate_name": "webpki", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "webpki", + "version": "0.101.7" + }, + "rustversion 1.0.11": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "rustversion 1.0.11", + "target": "build_script_build" + } ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "ring 0.17.8", - "target": "ring" - }, - { - "id": "untrusted 0.9.0", - "target": "untrusted" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.101.7" + "edition": "2018" }, - "license": "ISC", + "library_target_name": "rustversion", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "ISC" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE" - }, - "rustversion 1.0.11": { "name": "rustversion", - "version": "1.0.11", "package_url": "https://github.com/dtolnay/rustversion", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustversion/1.0.11/download", - "sha256": "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" + "sha256": "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70", + "url": "https://static.crates.io/crates/rustversion/1.0.11/download" } }, "targets": [ { "ProcMacro": { "crate_name": "rustversion", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build/build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build/build.rs" } } ], - "library_target_name": "rustversion", + "version": "1.0.11" + }, + "ryu 1.0.12": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "rustversion 1.0.11", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.11" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "ryu", + "license": "Apache-2.0 OR BSL-1.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "MIT" + "BSL-1.0" ], - "license_file": "LICENSE-APACHE" - }, - "ryu 1.0.12": { "name": "ryu", - "version": "1.0.12", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.12/download", - "sha256": "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" + "sha256": "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde", + "url": "https://static.crates.io/crates/ryu/1.0.12/download" } }, "targets": [ { "Library": { "crate_name": "ryu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "ryu", + "version": "1.0.12" + }, + "schannel 0.1.21": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "windows-sys 0.42.0", + "target": "windows_sys" + } ], - "edition": "2018", - "version": "1.0.12" + "edition": "2018" }, - "license": "Apache-2.0 OR BSL-1.0", + "library_target_name": "schannel", + "license": "MIT", + "license_file": "LICENSE.md", "license_ids": [ - "Apache-2.0", - "BSL-1.0" + "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "schannel 0.1.21": { "name": "schannel", - "version": "0.1.21", "package_url": "https://github.com/steffengy/schannel-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/schannel/0.1.21/download", - "sha256": "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" + "sha256": "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3", + "url": "https://static.crates.io/crates/schannel/0.1.21/download" } }, "targets": [ { "Library": { "crate_name": "schannel", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "schannel", + "version": "0.1.21" + }, + "sct 0.7.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "ring 0.16.20", + "target": "ring" + }, + { + "id": "untrusted 0.7.1", + "target": "untrusted" + } ], - "deps": { - "common": [ - { - "id": "windows-sys 0.42.0", - "target": "windows_sys" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.21" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "sct", + "license": "Apache-2.0/ISC/MIT", + "license_file": "LICENSE", "license_ids": [ + "Apache-2.0", + "ISC", "MIT" ], - "license_file": "LICENSE.md" - }, - "sct 0.7.0": { "name": "sct", - "version": "0.7.0", "package_url": "https://github.com/ctz/sct.rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/sct/0.7.0/download", - "sha256": "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" + "sha256": "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4", + "url": "https://static.crates.io/crates/sct/0.7.0/download" } }, "targets": [ { "Library": { "crate_name": "sct", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "sct", + "version": "0.7.0" + }, + "serde 1.0.152": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "derive", + "serde_derive", + "std" ], - "deps": { - "common": [ - { - "id": "ring 0.16.20", - "target": "ring" - }, - { - "id": "untrusted 0.7.1", - "target": "untrusted" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.0" + "deps": [ + { + "id": "serde 1.0.152", + "target": "build_script_build" + } + ], + "edition": "2015", + "proc_macro_deps": [ + { + "id": "serde_derive 1.0.152", + "target": "serde_derive" + } + ] }, - "license": "Apache-2.0/ISC/MIT", + "library_target_name": "serde", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "ISC", "MIT" ], - "license_file": "LICENSE" - }, - "serde 1.0.152": { "name": "serde", - "version": "1.0.152", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde/1.0.152/download", - "sha256": "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" + "sha256": "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb", + "url": "https://static.crates.io/crates/serde/1.0.152/download" } }, "targets": [ { "Library": { "crate_name": "serde", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde", + "version": "1.0.152" + }, + "serde_derive 1.0.152": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "derive", - "serde_derive", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde 1.0.152", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "proc_macro_deps": { - "common": [ - { - "id": "serde_derive 1.0.152", - "target": "serde_derive" - } - ], - "selects": {} - }, - "version": "1.0.152" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "serde_derive 1.0.152", + "target": "build_script_build" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "serde_derive", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_derive 1.0.152": { "name": "serde_derive", - "version": "1.0.152", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.152/download", - "sha256": "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" + "sha256": "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e", + "url": "https://static.crates.io/crates/serde_derive/1.0.152/download" } }, "targets": [ { "ProcMacro": { "crate_name": "serde_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "serde_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "serde_derive 1.0.152", - "target": "build_script_build" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "1.0.152" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.0.152" }, "serde_json 1.0.93": { - "name": "serde_json", - "version": "1.0.93", - "package_url": "https://github.com/serde-rs/json", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.93/download", - "sha256": "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde_json", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_json", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "itoa 1.0.5", - "target": "itoa" - }, - { - "id": "ryu 1.0.12", - "target": "ryu" - }, - { - "id": "serde 1.0.152", - "target": "serde" - }, - { - "id": "serde_json 1.0.93", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.93" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "itoa 1.0.5", + "target": "itoa" + }, + { + "id": "ryu 1.0.12", + "target": "ryu" + }, + { + "id": "serde 1.0.152", + "target": "serde" + }, + { + "id": "serde_json 1.0.93", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "serde_json", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "serde_json", + "package_url": "https://github.com/serde-rs/json", + "repository": { + "Http": { + "sha256": "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76", + "url": "https://static.crates.io/crates/serde_json/1.0.93/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "serde_json", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "1.0.93" }, "serde_regex 1.1.0": { + "common_attrs": { + "deps": [ + { + "id": "regex 1.7.1", + "target": "regex" + }, + { + "id": "serde 1.0.152", + "target": "serde" + } + ], + "edition": "2018" + }, + "library_target_name": "serde_regex", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "serde_regex", - "version": "1.1.0", "package_url": "https://github.com/tailhook/serde-regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_regex/1.1.0/download", - "sha256": "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf" + "sha256": "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf", + "url": "https://static.crates.io/crates/serde_regex/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "serde_regex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "serde_regex", + "version": "1.1.0" + }, + "serde_urlencoded 0.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "form_urlencoded 1.1.0", + "target": "form_urlencoded" + }, + { + "id": "itoa 1.0.5", + "target": "itoa" + }, + { + "id": "ryu 1.0.12", + "target": "ryu" + }, + { + "id": "serde 1.0.152", + "target": "serde" + } ], - "deps": { - "common": [ - { - "id": "regex 1.7.1", - "target": "regex" - }, - { - "id": "serde 1.0.152", - "target": "serde" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.1.0" + "edition": "2018" }, + "library_target_name": "serde_urlencoded", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "serde_urlencoded 0.7.1": { "name": "serde_urlencoded", - "version": "0.7.1", "package_url": "https://github.com/nox/serde_urlencoded", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_urlencoded/0.7.1/download", - "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" + "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd", + "url": "https://static.crates.io/crates/serde_urlencoded/0.7.1/download" } }, "targets": [ { "Library": { "crate_name": "serde_urlencoded", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "serde_urlencoded", + "version": "0.7.1" + }, + "shlex 1.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "deps": { - "common": [ - { - "id": "form_urlencoded 1.1.0", - "target": "form_urlencoded" - }, - { - "id": "itoa 1.0.5", - "target": "itoa" - }, - { - "id": "ryu 1.0.12", - "target": "ryu" - }, - { - "id": "serde 1.0.152", - "target": "serde" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.1" + "edition": "2015" }, - "license": "MIT/Apache-2.0", + "library_target_name": "shlex", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "shlex 1.3.0": { "name": "shlex", - "version": "1.3.0", "package_url": "https://github.com/comex/rust-shlex", "repository": { "Http": { - "url": "https://static.crates.io/crates/shlex/1.3.0/download", - "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64", + "url": "https://static.crates.io/crates/shlex/1.3.0/download" } }, "targets": [ { "Library": { "crate_name": "shlex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "shlex", + "version": "1.3.0" + }, + "signal-hook 0.3.15": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "channel", + "iterator" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.3.0" + "deps": [ + { + "id": "libc 0.2.167", + "target": "libc" + }, + { + "id": "signal-hook 0.3.15", + "target": "build_script_build" + }, + { + "id": "signal-hook-registry 1.4.1", + "target": "signal_hook_registry" + } + ], + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "signal_hook", + "license": "Apache-2.0/MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "signal-hook 0.3.15": { "name": "signal-hook", - "version": "0.3.15", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook/0.3.15/download", - "sha256": "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" + "sha256": "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9", + "url": "https://static.crates.io/crates/signal-hook/0.3.15/download" } }, "targets": [ { "Library": { "crate_name": "signal_hook", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "signal_hook", + "version": "0.3.15" + }, + "signal-hook-registry 1.4.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "channel", - "iterator" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "libc" - }, - { - "id": "signal-hook 0.3.15", - "target": "build_script_build" - }, - { - "id": "signal-hook-registry 1.4.1", - "target": "signal_hook_registry" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.15" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "libc 0.2.167", + "target": "libc" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "signal_hook_registry", "license": "Apache-2.0/MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "signal-hook-registry 1.4.1": { "name": "signal-hook-registry", - "version": "1.4.1", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download", - "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" + "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1", + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download" } }, "targets": [ { "Library": { "crate_name": "signal_hook_registry", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "signal_hook_registry", + "version": "1.4.1" + }, + "similar 2.2.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "text" ], - "deps": { - "common": [ - { - "id": "libc 0.2.167", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "1.4.1" + "edition": "2018" }, - "license": "Apache-2.0/MIT", + "library_target_name": "similar", + "license": "Apache-2.0", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": "LICENSE-APACHE" - }, - "similar 2.2.1": { "name": "similar", - "version": "2.2.1", "package_url": "https://github.com/mitsuhiko/similar", "repository": { "Http": { - "url": "https://static.crates.io/crates/similar/2.2.1/download", - "sha256": "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" + "sha256": "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf", + "url": "https://static.crates.io/crates/similar/2.2.1/download" } }, "targets": [ { "Library": { "crate_name": "similar", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "similar", + "version": "2.2.1" + }, + "slab 0.4.8": { + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "text" - ], - "selects": {} - }, - "edition": "2018", - "version": "2.2.1" + "deps": [ + { + "id": "slab 0.4.8", + "target": "build_script_build" + } + ], + "edition": "2018" }, - "license": "Apache-2.0", + "library_target_name": "slab", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0" + "MIT" ], - "license_file": "LICENSE" - }, - "slab 0.4.8": { "name": "slab", - "version": "0.4.8", "package_url": "https://github.com/tokio-rs/slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/slab/0.4.8/download", - "sha256": "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" + "sha256": "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d", + "url": "https://static.crates.io/crates/slab/0.4.8/download" } }, "targets": [ { "Library": { "crate_name": "slab", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "slab", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "slab 0.4.8", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.8" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" + "version": "0.4.8" }, "sluice 0.5.5": { - "name": "sluice", - "version": "0.5.5", - "package_url": "https://github.com/sagebind/sluice", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/sluice/0.5.5/download", - "sha256": "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5" - } - }, - "targets": [ - { - "Library": { - "crate_name": "sluice", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "sluice", "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "async-channel 1.8.0", + "target": "async_channel" + }, + { + "id": "futures-core 0.3.26", + "target": "futures_core" + }, + { + "id": "futures-io 0.3.26", + "target": "futures_io" + } ], - "deps": { - "common": [ - { - "id": "async-channel 1.8.0", - "target": "async_channel" - }, - { - "id": "futures-core 0.3.26", - "target": "futures_core" - }, - { - "id": "futures-io 0.3.26", - "target": "futures_io" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.5.5" + "edition": "2018" }, + "library_target_name": "sluice", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" - ], - "license_file": "LICENSE" - }, - "socket2 0.4.9": { - "name": "socket2", - "version": "0.4.9", - "package_url": "https://github.com/rust-lang/socket2", + ], + "name": "sluice", + "package_url": "https://github.com/sagebind/sluice", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.4.9/download", - "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" + "sha256": "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5", + "url": "https://static.crates.io/crates/sluice/0.5.5/download" } }, "targets": [ { "Library": { - "crate_name": "socket2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "sluice", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "socket2", + "version": "0.5.5" + }, + "socket2 0.4.9": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "all" ], - "crate_features": { - "common": [ - "all" - ], - "selects": {} - }, "deps": { "common": [], "selects": { @@ -8542,335 +6458,240 @@ ] } }, - "edition": "2018", - "version": "0.4.9" + "edition": "2018" }, + "library_target_name": "socket2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "socket2", + "package_url": "https://github.com/rust-lang/socket2", + "repository": { + "Http": { + "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662", + "url": "https://static.crates.io/crates/socket2/0.4.9/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "socket2", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.4.9" }, "spin 0.5.2": { + "common_attrs": { + "edition": "2015" + }, + "library_target_name": "spin", + "license": "MIT", + "license_file": "LICENSE", + "license_ids": [ + "MIT" + ], "name": "spin", - "version": "0.5.2", "package_url": "https://github.com/mvdnes/spin-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/spin/0.5.2/download", - "sha256": "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + "sha256": "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d", + "url": "https://static.crates.io/crates/spin/0.5.2/download" } }, "targets": [ { "Library": { "crate_name": "spin", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "spin", + "version": "0.5.2" + }, + "spin 0.9.8": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "once" ], - "edition": "2015", - "version": "0.5.2" + "edition": "2015" }, + "library_target_name": "spin", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "spin 0.9.8": { "name": "spin", - "version": "0.9.8", "package_url": "https://github.com/mvdnes/spin-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/spin/0.9.8/download", - "sha256": "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" + "sha256": "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67", + "url": "https://static.crates.io/crates/spin/0.9.8/download" } }, "targets": [ { "Library": { "crate_name": "spin", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "spin", - "common_attrs": { - "compile_data_glob": [ - "**" + "version": "0.9.8" + }, + "syn 1.0.109": { + "build_script_attrs": {}, + "common_attrs": { + "crate_features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit", + "visit-mut" + ], + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "build_script_build" + }, + { + "id": "unicode-ident 1.0.6", + "target": "unicode_ident" + } ], - "crate_features": { - "common": [ - "once" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.9.8" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "syn", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "syn 1.0.109": { "name": "syn", - "version": "1.0.109", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/1.0.109/download", - "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" + "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237", + "url": "https://static.crates.io/crates/syn/1.0.109/download" } }, "targets": [ { "Library": { "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "syn", + "version": "1.0.109" + }, + "tinyvec 1.6.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "full", - "parsing", - "printing", - "proc-macro", - "quote", - "visit", - "visit-mut" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.6", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.109" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "default", + "tinyvec_macros" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "tinyvec_macros 0.1.1", + "target": "tinyvec_macros" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "tinyvec", + "license": "Zlib OR Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE.md", "license_ids": [ "Apache-2.0", - "MIT" + "MIT", + "Zlib" ], - "license_file": "LICENSE-APACHE" - }, - "tinyvec 1.6.0": { "name": "tinyvec", - "version": "1.6.0", "package_url": "https://github.com/Lokathor/tinyvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinyvec/1.6.0/download", - "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" + "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50", + "url": "https://static.crates.io/crates/tinyvec/1.6.0/download" } }, "targets": [ { "Library": { "crate_name": "tinyvec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tinyvec", + "version": "1.6.0" + }, + "tinyvec_macros 0.1.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "tinyvec_macros" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "tinyvec_macros 0.1.1", - "target": "tinyvec_macros" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.6.0" + "edition": "2018" }, - "license": "Zlib OR Apache-2.0 OR MIT", + "library_target_name": "tinyvec_macros", + "license": "MIT OR Apache-2.0 OR Zlib", + "license_file": "LICENSE-APACHE.md", "license_ids": [ "Apache-2.0", "MIT", "Zlib" ], - "license_file": "LICENSE-APACHE.md" - }, - "tinyvec_macros 0.1.1": { "name": "tinyvec_macros", - "version": "0.1.1", "package_url": "https://github.com/Soveu/tinyvec_macros", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinyvec_macros/0.1.1/download", - "sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + "sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20", + "url": "https://static.crates.io/crates/tinyvec_macros/0.1.1/download" } }, "targets": [ { "Library": { "crate_name": "tinyvec_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tinyvec_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.1.1" - }, - "license": "MIT OR Apache-2.0 OR Zlib", - "license_ids": [ - "Apache-2.0", - "MIT", - "Zlib" - ], - "license_file": "LICENSE-APACHE.md" + "version": "0.1.1" }, "tokio 1.26.0": { - "name": "tokio", - "version": "1.26.0", - "package_url": "https://github.com/tokio-rs/tokio", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tokio/1.26.0/download", - "sha256": "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tokio", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "build_script_attrs": { + "deps": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" } - } - ], - "library_target_name": "tokio", + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [ "default", @@ -9052,1514 +6873,1087 @@ } }, "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "tokio-macros 1.8.2", - "target": "tokio_macros" - } - ], - "selects": {} - }, - "version": "1.26.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.1.0", - "target": "autocfg" - } - ], - "selects": {} - } + "proc_macro_deps": [ + { + "id": "tokio-macros 1.8.2", + "target": "tokio_macros" + } + ] }, + "library_target_name": "tokio", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" + "name": "tokio", + "package_url": "https://github.com/tokio-rs/tokio", + "repository": { + "Http": { + "sha256": "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64", + "url": "https://static.crates.io/crates/tokio/1.26.0/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "tokio", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "1.26.0" }, "tokio-macros 1.8.2": { + "common_attrs": { + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } + ], + "edition": "2018" + }, + "library_target_name": "tokio_macros", + "license": "MIT", + "license_file": "LICENSE", + "license_ids": [ + "MIT" + ], "name": "tokio-macros", - "version": "1.8.2", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/1.8.2/download", - "sha256": "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" + "sha256": "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8", + "url": "https://static.crates.io/crates/tokio-macros/1.8.2/download" } }, "targets": [ { "ProcMacro": { "crate_name": "tokio_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tokio_macros", + "version": "1.8.2" + }, + "tokio-rustls 0.23.4": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "logging", + "tls12" ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.8.2" + "deps": [ + { + "id": "rustls 0.20.8", + "target": "rustls" + }, + { + "id": "tokio 1.26.0", + "target": "tokio" + }, + { + "id": "webpki 0.22.0", + "target": "webpki" + } + ], + "edition": "2018" }, - "license": "MIT", + "library_target_name": "tokio_rustls", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "tokio-rustls 0.23.4": { "name": "tokio-rustls", - "version": "0.23.4", "package_url": "https://github.com/tokio-rs/tls", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-rustls/0.23.4/download", - "sha256": "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" + "sha256": "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59", + "url": "https://static.crates.io/crates/tokio-rustls/0.23.4/download" } }, "targets": [ { "Library": { "crate_name": "tokio_rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tokio_rustls", + "version": "0.23.4" + }, + "tokio-util 0.7.7": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "logging", - "tls12" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "rustls 0.20.8", - "target": "rustls" - }, - { - "id": "tokio 1.26.0", - "target": "tokio" - }, - { - "id": "webpki 0.22.0", - "target": "webpki" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.23.4" + "crate_features": [ + "codec", + "default", + "tracing" + ], + "deps": [ + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "futures-core 0.3.26", + "target": "futures_core" + }, + { + "id": "futures-sink 0.3.26", + "target": "futures_sink" + }, + { + "id": "pin-project-lite 0.2.9", + "target": "pin_project_lite" + }, + { + "id": "tokio 1.26.0", + "target": "tokio" + }, + { + "id": "tracing 0.1.37", + "target": "tracing" + } + ], + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "tokio_util", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "tokio-util 0.7.7": { "name": "tokio-util", - "version": "0.7.7", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-util/0.7.7/download", - "sha256": "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" + "sha256": "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2", + "url": "https://static.crates.io/crates/tokio-util/0.7.7/download" } }, "targets": [ { "Library": { "crate_name": "tokio_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tokio_util", + "version": "0.7.7" + }, + "toml_datetime 0.6.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "codec", - "default", - "tracing" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bytes 1.4.0", - "target": "bytes" - }, - { - "id": "futures-core 0.3.26", - "target": "futures_core" - }, - { - "id": "futures-sink 0.3.26", - "target": "futures_sink" - }, - { - "id": "pin-project-lite 0.2.9", - "target": "pin_project_lite" - }, - { - "id": "tokio 1.26.0", - "target": "tokio" - }, - { - "id": "tracing 0.1.37", - "target": "tracing" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.7" + "edition": "2021" }, - "license": "MIT", + "library_target_name": "toml_datetime", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "toml_datetime 0.6.1": { "name": "toml_datetime", - "version": "0.6.1", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_datetime/0.6.1/download", - "sha256": "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" + "sha256": "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622", + "url": "https://static.crates.io/crates/toml_datetime/0.6.1/download" } }, "targets": [ { "Library": { "crate_name": "toml_datetime", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "toml_datetime", + "version": "0.6.1" + }, + "toml_edit 0.19.4": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" + ], + "deps": [ + { + "id": "indexmap 1.9.2", + "target": "indexmap" + }, + { + "id": "toml_datetime 0.6.1", + "target": "toml_datetime" + }, + { + "id": "winnow 0.3.3", + "target": "winnow" + } ], - "edition": "2021", - "version": "0.6.1" + "edition": "2021" }, + "library_target_name": "toml_edit", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "toml_edit 0.19.4": { "name": "toml_edit", - "version": "0.19.4", "package_url": "https://github.com/ordian/toml_edit", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.19.4/download", - "sha256": "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825" + "sha256": "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825", + "url": "https://static.crates.io/crates/toml_edit/0.19.4/download" } }, "targets": [ { "Library": { "crate_name": "toml_edit", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "toml_edit", + "version": "0.19.4" + }, + "tower-service 0.3.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "indexmap 1.9.2", - "target": "indexmap" - }, - { - "id": "toml_datetime 0.6.1", - "target": "toml_datetime" - }, - { - "id": "winnow 0.3.3", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.19.4" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "tower_service", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "tower-service 0.3.2": { "name": "tower-service", - "version": "0.3.2", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower-service/0.3.2/download", - "sha256": "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + "sha256": "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52", + "url": "https://static.crates.io/crates/tower-service/0.3.2/download" } }, "targets": [ { "Library": { "crate_name": "tower_service", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tower_service", + "version": "0.3.2" + }, + "tracing 0.1.37": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "attributes", + "default", + "log", + "std", + "tracing-attributes" + ], + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "pin-project-lite 0.2.9", + "target": "pin_project_lite" + }, + { + "id": "tracing-core 0.1.30", + "target": "tracing_core" + } ], "edition": "2018", - "version": "0.3.2" + "proc_macro_deps": [ + { + "id": "tracing-attributes 0.1.23", + "target": "tracing_attributes" + } + ] }, + "library_target_name": "tracing", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "tracing 0.1.37": { "name": "tracing", - "version": "0.1.37", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing/0.1.37/download", - "sha256": "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" + "sha256": "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8", + "url": "https://static.crates.io/crates/tracing/0.1.37/download" } }, "targets": [ { "Library": { "crate_name": "tracing", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tracing", + "version": "0.1.37" + }, + "tracing-attributes 0.1.23": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + } ], - "crate_features": { - "common": [ - "attributes", - "default", - "log", - "std", - "tracing-attributes" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "pin-project-lite 0.2.9", - "target": "pin_project_lite" - }, - { - "id": "tracing-core 0.1.30", - "target": "tracing_core" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "tracing-attributes 0.1.23", - "target": "tracing_attributes" - } - ], - "selects": {} - }, - "version": "0.1.37" + "edition": "2018" }, + "library_target_name": "tracing_attributes", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "tracing-attributes 0.1.23": { "name": "tracing-attributes", - "version": "0.1.23", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing-attributes/0.1.23/download", - "sha256": "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" + "sha256": "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a", + "url": "https://static.crates.io/crates/tracing-attributes/0.1.23/download" } }, "targets": [ { "ProcMacro": { "crate_name": "tracing_attributes", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tracing_attributes", + "version": "0.1.23" + }, + "tracing-core 0.1.30": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "once_cell", + "std" ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.23" + "deps": [ + { + "id": "once_cell 1.17.1", + "target": "once_cell" + } + ], + "edition": "2018" }, + "library_target_name": "tracing_core", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "tracing-core 0.1.30": { "name": "tracing-core", - "version": "0.1.30", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing-core/0.1.30/download", - "sha256": "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" + "sha256": "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a", + "url": "https://static.crates.io/crates/tracing-core/0.1.30/download" } }, "targets": [ { "Library": { "crate_name": "tracing_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tracing_core", + "version": "0.1.30" + }, + "tracing-futures 0.2.5": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "pin-project", + "std", + "std-future" ], - "crate_features": { - "common": [ - "once_cell", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "once_cell 1.17.1", - "target": "once_cell" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.30" + "deps": [ + { + "id": "pin-project 1.0.12", + "target": "pin_project" + }, + { + "id": "tracing 0.1.37", + "target": "tracing" + } + ], + "edition": "2018" }, + "library_target_name": "tracing_futures", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "tracing-futures 0.2.5": { "name": "tracing-futures", - "version": "0.2.5", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing-futures/0.2.5/download", - "sha256": "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" + "sha256": "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2", + "url": "https://static.crates.io/crates/tracing-futures/0.2.5/download" } }, "targets": [ { "Library": { "crate_name": "tracing_futures", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tracing_futures", + "version": "0.2.5" + }, + "try-lock 0.2.4": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "pin-project", - "std", - "std-future" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "pin-project 1.0.12", - "target": "pin_project" - }, - { - "id": "tracing 0.1.37", - "target": "tracing" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.5" + "edition": "2015" }, + "library_target_name": "try_lock", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "try-lock 0.2.4": { "name": "try-lock", - "version": "0.2.4", "package_url": "https://github.com/seanmonstar/try-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/try-lock/0.2.4/download", - "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed", + "url": "https://static.crates.io/crates/try-lock/0.2.4/download" } }, "targets": [ { "Library": { "crate_name": "try_lock", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "try_lock", + "version": "0.2.4" + }, + "typenum 1.16.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "typenum 1.16.0", + "target": "build_script_main" + } ], - "edition": "2015", - "version": "0.2.4" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "typenum", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "typenum 1.16.0": { "name": "typenum", - "version": "1.16.0", "package_url": "https://github.com/paholg/typenum", "repository": { "Http": { - "url": "https://static.crates.io/crates/typenum/1.16.0/download", - "sha256": "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + "sha256": "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba", + "url": "https://static.crates.io/crates/typenum/1.16.0/download" } }, "targets": [ { "Library": { "crate_name": "typenum", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_main", - "crate_root": "build/main.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build/main.rs" } } ], - "library_target_name": "typenum", + "version": "1.16.0" + }, + "unicode-bidi 0.3.10": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "typenum 1.16.0", - "target": "build_script_main" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.16.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "hardcoded-data", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "unicode_bidi", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "unicode-bidi 0.3.10": { "name": "unicode-bidi", - "version": "0.3.10", "package_url": "https://github.com/servo/unicode-bidi", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-bidi/0.3.10/download", - "sha256": "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" + "sha256": "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58", + "url": "https://static.crates.io/crates/unicode-bidi/0.3.10/download" } }, "targets": [ { "Library": { "crate_name": "unicode_bidi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_bidi", + "version": "0.3.10" + }, + "unicode-ident 1.0.6": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "hardcoded-data", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.10" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "unicode_ident", + "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "MIT" + "MIT", + "Unicode-DFS-2016" ], - "license_file": "LICENSE-APACHE" - }, - "unicode-ident 1.0.6": { "name": "unicode-ident", - "version": "1.0.6", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.6/download", - "sha256": "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" + "sha256": "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc", + "url": "https://static.crates.io/crates/unicode-ident/1.0.6/download" } }, "targets": [ { "Library": { "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_ident", + "version": "1.0.6" + }, + "unicode-normalization 0.1.22": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2018", - "version": "1.0.6" + "deps": [ + { + "id": "tinyvec 1.6.0", + "target": "tinyvec" + } + ], + "edition": "2018" }, - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "library_target_name": "unicode_normalization", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", - "MIT", - "Unicode-DFS-2016" + "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "unicode-normalization 0.1.22": { "name": "unicode-normalization", - "version": "0.1.22", "package_url": "https://github.com/unicode-rs/unicode-normalization", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download", - "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" + "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921", + "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download" } }, "targets": [ { "Library": { "crate_name": "unicode_normalization", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_normalization", + "version": "0.1.22" + }, + "untrusted 0.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "tinyvec 1.6.0", - "target": "tinyvec" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.22" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "untrusted", + "license": "ISC", + "license_file": "LICENSE.txt", "license_ids": [ - "Apache-2.0", - "MIT" + "ISC" ], - "license_file": "LICENSE-APACHE" - }, - "untrusted 0.7.1": { "name": "untrusted", - "version": "0.7.1", "package_url": "https://github.com/briansmith/untrusted", "repository": { "Http": { - "url": "https://static.crates.io/crates/untrusted/0.7.1/download", - "sha256": "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + "sha256": "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a", + "url": "https://static.crates.io/crates/untrusted/0.7.1/download" } }, "targets": [ { "Library": { "crate_name": "untrusted", - "crate_root": "src/untrusted.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/untrusted.rs" } } ], - "library_target_name": "untrusted", + "version": "0.7.1" + }, + "untrusted 0.9.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.7.1" + "edition": "2018" }, + "library_target_name": "untrusted", "license": "ISC", + "license_file": "LICENSE.txt", "license_ids": [ "ISC" ], - "license_file": "LICENSE.txt" - }, - "untrusted 0.9.0": { "name": "untrusted", - "version": "0.9.0", "package_url": "https://github.com/briansmith/untrusted", "repository": { "Http": { - "url": "https://static.crates.io/crates/untrusted/0.9.0/download", - "sha256": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + "sha256": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1", + "url": "https://static.crates.io/crates/untrusted/0.9.0/download" } }, "targets": [ { "Library": { "crate_name": "untrusted", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "untrusted", + "version": "0.9.0" + }, + "url 2.3.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "edition": "2018", - "version": "0.9.0" + "deps": [ + { + "id": "form_urlencoded 1.1.0", + "target": "form_urlencoded" + }, + { + "id": "idna 0.3.0", + "target": "idna" + }, + { + "id": "percent-encoding 2.2.0", + "target": "percent_encoding" + } + ], + "edition": "2018" }, - "license": "ISC", + "library_target_name": "url", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "ISC" + "Apache-2.0", + "MIT" ], - "license_file": "LICENSE.txt" - }, - "url 2.3.1": { "name": "url", - "version": "2.3.1", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.3.1/download", - "sha256": "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" + "sha256": "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643", + "url": "https://static.crates.io/crates/url/2.3.1/download" } }, "targets": [ { "Library": { "crate_name": "url", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "url", + "version": "2.3.1" + }, + "value-bag 1.0.0-alpha.9": { + "build_script_attrs": { + "deps": [ + { + "alias": "rustc", + "id": "version_check 0.9.4", + "target": "version_check" + } + ] + }, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "value-bag 1.0.0-alpha.9", + "target": "build_script_build" + } ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "form_urlencoded 1.1.0", - "target": "form_urlencoded" - }, - { - "id": "idna 0.3.0", - "target": "idna" - }, - { - "id": "percent-encoding 2.2.0", - "target": "percent_encoding" - } - ], - "selects": {} - }, "edition": "2018", - "version": "2.3.1" + "proc_macro_deps": [ + { + "id": "ctor 0.1.26", + "target": "ctor" + } + ] }, - "license": "MIT OR Apache-2.0", + "library_target_name": "value_bag", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "value-bag 1.0.0-alpha.9": { "name": "value-bag", - "version": "1.0.0-alpha.9", "package_url": "https://github.com/sval-rs/value-bag", "repository": { "Http": { - "url": "https://static.crates.io/crates/value-bag/1.0.0-alpha.9/download", - "sha256": "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" + "sha256": "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55", + "url": "https://static.crates.io/crates/value-bag/1.0.0-alpha.9/download" } }, "targets": [ { "Library": { "crate_name": "value_bag", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "value_bag", + "version": "1.0.0-alpha.9" + }, + "vcpkg 0.2.15": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "value-bag 1.0.0-alpha.9", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "ctor 0.1.26", - "target": "ctor" - } - ], - "selects": {} - }, - "version": "1.0.0-alpha.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.4", - "target": "version_check", - "alias": "rustc" - } - ], - "selects": {} - } + "edition": "2015" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "vcpkg", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "vcpkg 0.2.15": { "name": "vcpkg", - "version": "0.2.15", "package_url": "https://github.com/mcgoo/vcpkg-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/vcpkg/0.2.15/download", - "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426", + "url": "https://static.crates.io/crates/vcpkg/0.2.15/download" } }, "targets": [ { "Library": { "crate_name": "vcpkg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "vcpkg", + "version": "0.2.15" + }, + "version_check 0.9.4": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.2.15" + "edition": "2015" }, + "library_target_name": "version_check", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "version_check 0.9.4": { "name": "version_check", - "version": "0.9.4", "package_url": "https://github.com/SergioBenitez/version_check", "repository": { "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.4/download", - "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", + "url": "https://static.crates.io/crates/version_check/0.9.4/download" } }, "targets": [ { "Library": { "crate_name": "version_check", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "version_check", + "version": "0.9.4" + }, + "waker-fn 1.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.9.4" + "edition": "2018" }, - "license": "MIT/Apache-2.0", + "library_target_name": "waker_fn", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "waker-fn 1.1.0": { "name": "waker-fn", - "version": "1.1.0", "package_url": "https://github.com/stjepang/waker-fn", "repository": { "Http": { - "url": "https://static.crates.io/crates/waker-fn/1.1.0/download", - "sha256": "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + "sha256": "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca", + "url": "https://static.crates.io/crates/waker-fn/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "waker_fn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "waker_fn", + "version": "1.1.0" + }, + "want 0.3.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "try-lock 0.2.4", + "target": "try_lock" + } ], - "edition": "2018", - "version": "1.1.0" + "edition": "2018" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "want", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "want 0.3.0": { "name": "want", - "version": "0.3.0", "package_url": "https://github.com/seanmonstar/want", "repository": { "Http": { - "url": "https://static.crates.io/crates/want/0.3.0/download", - "sha256": "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" + "sha256": "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0", + "url": "https://static.crates.io/crates/want/0.3.0/download" } }, "targets": [ { "Library": { "crate_name": "want", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "want", + "version": "0.3.0" + }, + "wasi 0.11.0+wasi-snapshot-preview1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "deps": { - "common": [ - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "try-lock 0.2.4", - "target": "try_lock" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.0" + "edition": "2018" }, - "license": "MIT", + "library_target_name": "wasi", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "wasi 0.11.0+wasi-snapshot-preview1": { "name": "wasi", - "version": "0.11.0+wasi-snapshot-preview1", "package_url": "https://github.com/bytecodealliance/wasi", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download", - "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", + "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download" } }, "targets": [ { "Library": { "crate_name": "wasi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.11.0+wasi-snapshot-preview1" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.11.0+wasi-snapshot-preview1" }, "wasm-bindgen 0.2.84": { - "name": "wasm-bindgen", - "version": "0.2.84", - "package_url": "https://github.com/rustwasm/wasm-bindgen", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.84/download", - "sha256": "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_bindgen", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen", + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "spans", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "wasm-bindgen 0.2.84", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "proc_macro_deps": { - "common": [ - { - "id": "wasm-bindgen-macro 0.2.84", - "target": "wasm_bindgen_macro" - } - ], - "selects": {} - }, - "version": "0.2.84" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "spans", + "std" ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + }, + { + "id": "wasm-bindgen 0.2.84", + "target": "build_script_build" + } ], - "data_glob": [ - "**" + "edition": "2018", + "proc_macro_deps": [ + { + "id": "wasm-bindgen-macro 0.2.84", + "target": "wasm_bindgen_macro" + } ] }, + "library_target_name": "wasm_bindgen", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-backend 0.2.84": { - "name": "wasm-bindgen-backend", - "version": "0.2.84", - "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", + "name": "wasm-bindgen", + "package_url": "https://github.com/rustwasm/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.84/download", - "sha256": "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" + "sha256": "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b", + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.84/download" } }, "targets": [ { "Library": { - "crate_name": "wasm_bindgen_backend", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "wasm_bindgen", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "wasm_bindgen_backend", + "version": "0.2.84" + }, + "wasm-bindgen-backend 0.2.84": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "spans" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bumpalo 3.12.0", - "target": "bumpalo" - }, - { - "id": "log 0.4.17", - "target": "log" - }, - { - "id": "once_cell 1.17.1", - "target": "once_cell" - }, - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - }, - { - "id": "wasm-bindgen-shared 0.2.84", - "target": "wasm_bindgen_shared" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.84" + "deps": [ + { + "id": "bumpalo 3.12.0", + "target": "bumpalo" + }, + { + "id": "log 0.4.17", + "target": "log" + }, + { + "id": "once_cell 1.17.1", + "target": "once_cell" + }, + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + }, + { + "id": "wasm-bindgen-shared 0.2.84", + "target": "wasm_bindgen_shared" + } + ], + "edition": "2018" }, + "library_target_name": "wasm_bindgen_backend", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-futures 0.4.34": { - "name": "wasm-bindgen-futures", - "version": "0.4.34", - "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", + "name": "wasm-bindgen-backend", + "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.34/download", - "sha256": "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" + "sha256": "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9", + "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.84/download" } }, "targets": [ { "Library": { - "crate_name": "wasm_bindgen_futures", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "wasm_bindgen_backend", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasm_bindgen_futures", + "version": "0.2.84" + }, + "wasm-bindgen-futures 0.4.34": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ { @@ -10584,245 +7978,175 @@ ] } }, - "edition": "2018", - "version": "0.4.34" + "edition": "2018" }, + "library_target_name": "wasm_bindgen_futures", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "wasm-bindgen-futures", + "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", + "repository": { + "Http": { + "sha256": "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454", + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.34/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasm_bindgen_futures", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.4.34" }, "wasm-bindgen-macro 0.2.84": { + "common_attrs": { + "crate_features": [ + "spans" + ], + "deps": [ + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "wasm-bindgen-macro-support 0.2.84", + "target": "wasm_bindgen_macro_support" + } + ], + "edition": "2018" + }, + "library_target_name": "wasm_bindgen_macro", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "wasm-bindgen-macro", - "version": "0.2.84", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.84/download", - "sha256": "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" + "sha256": "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5", + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.84/download" } }, "targets": [ { "ProcMacro": { "crate_name": "wasm_bindgen_macro", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasm_bindgen_macro", + "version": "0.2.84" + }, + "wasm-bindgen-macro-support 0.2.84": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "spans" ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "wasm-bindgen-macro-support 0.2.84", - "target": "wasm_bindgen_macro_support" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.84" + "deps": [ + { + "id": "proc-macro2 1.0.51", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.23", + "target": "quote" + }, + { + "id": "syn 1.0.109", + "target": "syn" + }, + { + "id": "wasm-bindgen-backend 0.2.84", + "target": "wasm_bindgen_backend" + }, + { + "id": "wasm-bindgen-shared 0.2.84", + "target": "wasm_bindgen_shared" + } + ], + "edition": "2018" }, + "library_target_name": "wasm_bindgen_macro_support", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-macro-support 0.2.84": { "name": "wasm-bindgen-macro-support", - "version": "0.2.84", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.84/download", - "sha256": "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" + "sha256": "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6", + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.84/download" } }, "targets": [ { "Library": { "crate_name": "wasm_bindgen_macro_support", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasm_bindgen_macro_support", + "version": "0.2.84" + }, + "wasm-bindgen-shared 0.2.84": { + "build_script_attrs": { + "links": "wasm_bindgen" + }, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "wasm-bindgen-shared 0.2.84", + "target": "build_script_build" + } ], - "crate_features": { - "common": [ - "spans" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.51", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.23", - "target": "quote" - }, - { - "id": "syn 1.0.109", - "target": "syn" - }, - { - "id": "wasm-bindgen-backend 0.2.84", - "target": "wasm_bindgen_backend" - }, - { - "id": "wasm-bindgen-shared 0.2.84", - "target": "wasm_bindgen_shared" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.84" + "edition": "2018" }, + "library_target_name": "wasm_bindgen_shared", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-shared 0.2.84": { "name": "wasm-bindgen-shared", - "version": "0.2.84", "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.84/download", - "sha256": "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" + "sha256": "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d", + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.84/download" } }, "targets": [ { "Library": { "crate_name": "wasm_bindgen_shared", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "wasm_bindgen_shared", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "wasm-bindgen-shared 0.2.84", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.84" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "links": "wasm_bindgen" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.2.84" }, "web-sys 0.3.61": { - "name": "web-sys", - "version": "0.3.61", - "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.61/download", - "sha256": "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" - } - }, - "targets": [ - { - "Library": { - "crate_name": "web_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "web_sys", "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [ "Blob", @@ -10847,283 +8171,194 @@ ] } }, - "deps": { - "common": [ - { - "id": "js-sys 0.3.61", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.84", - "target": "wasm_bindgen" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.61" + "deps": [ + { + "id": "js-sys 0.3.61", + "target": "js_sys" + }, + { + "id": "wasm-bindgen 0.2.84", + "target": "wasm_bindgen" + } + ], + "edition": "2018" }, + "library_target_name": "web_sys", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "webpki 0.22.0": { - "name": "webpki", - "version": "0.22.0", - "package_url": "https://github.com/briansmith/webpki", + "name": "web-sys", + "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki/0.22.0/download", - "sha256": "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" + "sha256": "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97", + "url": "https://static.crates.io/crates/web-sys/0.3.61/download" } }, "targets": [ { "Library": { - "crate_name": "webpki", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "web_sys", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "webpki", + "version": "0.3.61" + }, + "webpki 0.22.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "alloc", + "std" ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "ring 0.16.20", - "target": "ring" - }, - { - "id": "untrusted 0.7.1", - "target": "untrusted" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.22.0" + "deps": [ + { + "id": "ring 0.16.20", + "target": "ring" + }, + { + "id": "untrusted 0.7.1", + "target": "untrusted" + } + ], + "edition": "2018" }, - "license": null, - "license_ids": [], - "license_file": "LICENSE" - }, - "webpki-roots 0.22.6": { - "name": "webpki-roots", - "version": "0.22.6", - "package_url": "https://github.com/rustls/webpki-roots", + "library_target_name": "webpki", + "license_file": "LICENSE", + "name": "webpki", + "package_url": "https://github.com/briansmith/webpki", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/0.22.6/download", - "sha256": "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" + "sha256": "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd", + "url": "https://static.crates.io/crates/webpki/0.22.0/download" } }, "targets": [ { "Library": { - "crate_name": "webpki_roots", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "webpki", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "webpki_roots", + "version": "0.22.0" + }, + "webpki-roots 0.22.6": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "webpki 0.22.0", + "target": "webpki" + } ], - "deps": { - "common": [ - { - "id": "webpki 0.22.0", - "target": "webpki" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.22.6" + "edition": "2018" }, + "library_target_name": "webpki_roots", "license": "MPL-2.0", + "license_file": "LICENSE", "license_ids": [ "MPL-2.0" ], - "license_file": "LICENSE" - }, - "wepoll-ffi 0.1.2": { - "name": "wepoll-ffi", - "version": "0.1.2", - "package_url": "https://github.com/aclysma/wepoll-ffi", + "name": "webpki-roots", + "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/wepoll-ffi/0.1.2/download", - "sha256": "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" + "sha256": "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87", + "url": "https://static.crates.io/crates/webpki-roots/0.22.6/download" } }, "targets": [ { "Library": { - "crate_name": "wepoll_ffi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "webpki_roots", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wepoll_ffi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "null-overlapped-wakeups-patch" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "wepoll-ffi 0.1.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.2" - }, + "version": "0.22.6" + }, + "wepoll-ffi 0.1.2": { "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], "data_glob": [ "**", "vendor/**" ], - "deps": { - "common": [ - { - "id": "cc 1.2.2", - "target": "cc" - } - ], - "selects": {} - } + "deps": [ + { + "id": "cc 1.2.2", + "target": "cc" + } + ] }, + "common_attrs": { + "crate_features": [ + "null-overlapped-wakeups-patch" + ], + "deps": [ + { + "id": "wepoll-ffi 0.1.2", + "target": "build_script_build" + } + ], + "edition": "2018" + }, + "library_target_name": "wepoll_ffi", "license": "MIT OR Apache-2.0 OR BSD-2-Clause", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "BSD-2-Clause", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi 0.3.9": { - "name": "winapi", - "version": "0.3.9", - "package_url": "https://github.com/retep998/winapi-rs", + "name": "wepoll-ffi", + "package_url": "https://github.com/aclysma/wepoll-ffi", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi/0.3.9/download", - "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" + "sha256": "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb", + "url": "https://static.crates.io/crates/wepoll-ffi/0.1.2/download" } }, "targets": [ { "Library": { - "crate_name": "winapi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "wepoll_ffi", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi", - "common_attrs": { - "compile_data_glob": [ - "**" + "version": "0.1.2" + }, + "winapi 0.3.9": { + "build_script_attrs": {}, + "common_attrs": { + "crate_features": [ + "handleapi", + "impl-debug", + "impl-default", + "libloaderapi", + "minwinbase", + "minwindef", + "ntsecapi", + "timezoneapi", + "wincrypt", + "winerror", + "winnt", + "winreg", + "winsock2", + "ws2def", + "ws2ipdef", + "ws2tcpip", + "wtypesbase" ], - "crate_features": { - "common": [ - "handleapi", - "impl-debug", - "impl-default", - "libloaderapi", - "minwinbase", - "minwindef", - "ntsecapi", - "timezoneapi", - "wincrypt", - "winerror", - "winnt", - "winreg", - "winsock2", - "ws2def", - "ws2ipdef", - "ws2tcpip", - "wtypesbase" - ], - "selects": {} - }, "deps": { "common": [ { @@ -11146,218 +8381,140 @@ ] } }, - "edition": "2015", - "version": "0.3.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "winapi-i686-pc-windows-gnu 0.4.0": { - "name": "winapi-i686-pc-windows-gnu", - "version": "0.4.0", + "name": "winapi", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download", - "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", + "url": "https://static.crates.io/crates/winapi/0.3.9/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_i686_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_i686_pc_windows_gnu", + "version": "0.3.9" + }, + "winapi-i686-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "winapi-i686-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi_i686_pc_windows_gnu", "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null - }, - "winapi-x86_64-pc-windows-gnu 0.4.0": { - "name": "winapi-x86_64-pc-windows-gnu", - "version": "0.4.0", + "name": "winapi-i686-pc-windows-gnu", "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", - "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", + "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { - "crate_name": "winapi_x86_64_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi_i686_pc_windows_gnu", + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winapi_x86_64_pc_windows_gnu", + "version": "0.4.0" + }, + "winapi-x86_64-pc-windows-gnu 0.4.0": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "winapi-x86_64-pc-windows-gnu 0.4.0", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2015" }, + "library_target_name": "winapi_x86_64_pc_windows_gnu", "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null - }, - "windows-sys 0.42.0": { - "name": "windows-sys", - "version": "0.42.0", - "package_url": "https://github.com/microsoft/windows-rs", + "name": "winapi-x86_64-pc-windows-gnu", + "package_url": "https://github.com/retep998/winapi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.42.0/download", - "sha256": "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" + "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", + "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "winapi_x86_64_pc_windows_gnu", + "crate_root": "src/lib.rs" + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" } } ], - "library_target_name": "windows_sys", + "version": "0.4.0" + }, + "windows-sys 0.42.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "Win32", + "Win32_Foundation", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", + "Win32_System", + "Win32_System_IO", + "Win32_System_Memory", + "Win32_System_Threading", + "Win32_System_WindowsProgramming", + "default" ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", - "Win32_System", - "Win32_System_IO", - "Win32_System_Memory", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "default" - ], - "selects": {} - }, "deps": { "common": [], "selects": { @@ -11435,64 +8592,51 @@ ] } }, - "edition": "2018", - "version": "0.42.0" + "edition": "2018" }, + "library_target_name": "windows_sys", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.45.0": { "name": "windows-sys", - "version": "0.45.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.45.0/download", - "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" + "sha256": "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7", + "url": "https://static.crates.io/crates/windows-sys/0.42.0/download" } }, "targets": [ { "Library": { "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_sys", + "version": "0.42.0" + }, + "windows-sys 0.45.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "Win32", + "Win32_Foundation", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Console", + "Win32_System_IO", + "Win32_System_Pipes", + "Win32_System_SystemServices", + "Win32_System_WindowsProgramming", + "default" ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_SystemServices", - "Win32_System_WindowsProgramming", - "default" - ], - "selects": {} - }, "deps": { "common": [], "selects": { @@ -11504,93 +8648,70 @@ ] } }, - "edition": "2018", - "version": "0.45.0" + "edition": "2018" }, + "library_target_name": "windows_sys", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.52.0": { "name": "windows-sys", - "version": "0.52.0", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.52.0/download", - "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" + "sha256": "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0", + "url": "https://static.crates.io/crates/windows-sys/0.45.0/download" } }, "targets": [ { "Library": { "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_sys", + "version": "0.45.0" + }, + "windows-sys 0.52.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } ], - "deps": { - "common": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.0" + "edition": "2021" }, + "library_target_name": "windows_sys", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.42.1": { - "name": "windows-targets", - "version": "0.42.1", + "name": "windows-sys", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.42.1/download", - "sha256": "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" + "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d", + "url": "https://static.crates.io/crates/windows-sys/0.52.0/download" } }, "targets": [ { "Library": { - "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "windows_sys", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_targets", + "version": "0.52.0" + }, + "windows-targets 0.42.1": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -11668,45 +8789,35 @@ ] } }, - "edition": "2018", - "version": "0.42.1" + "edition": "2018" }, + "library_target_name": "windows_targets", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.52.6": { "name": "windows-targets", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", - "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" + "sha256": "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7", + "url": "https://static.crates.io/crates/windows-targets/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_targets", + "version": "0.42.1" + }, + "windows-targets 0.52.6": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -11760,1338 +8871,742 @@ ] } }, - "edition": "2021", - "version": "0.52.6" + "edition": "2021" }, + "library_target_name": "windows_targets", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "name": "windows-targets", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973", + "url": "https://static.crates.io/crates/windows-targets/0.52.6/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_targets", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.52.6" }, "windows_aarch64_gnullvm 0.42.1": { + "build_script_attrs": {}, + "common_attrs": { + "deps": [ + { + "id": "windows_aarch64_gnullvm 0.42.1", + "target": "build_script_build" + } + ], + "edition": "2018" + }, + "library_target_name": "windows_aarch64_gnullvm", + "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "windows_aarch64_gnullvm", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.1/download", - "sha256": "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" + "sha256": "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_gnullvm 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs" + } + } + ], + "version": "0.42.1" + }, + "windows_aarch64_gnullvm 0.52.6": { + "build_script_attrs": {}, + "common_attrs": { + "deps": [ + { + "id": "windows_aarch64_gnullvm 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_aarch64_gnullvm", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_gnullvm 0.52.6": { "name": "windows_aarch64_gnullvm", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download", - "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_aarch64_gnullvm", + "version": "0.52.6" + }, + "windows_aarch64_msvc 0.42.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_aarch64_msvc 0.42.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "windows_aarch64_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.42.1": { "name": "windows_aarch64_msvc", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.42.1/download", - "sha256": "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" + "sha256": "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_aarch64_msvc", + "version": "0.42.1" + }, + "windows_aarch64_msvc 0.52.6": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_aarch64_msvc 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_aarch64_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.52.6": { "name": "windows_aarch64_msvc", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", - "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_aarch64_msvc", + "version": "0.52.6" + }, + "windows_i686_gnu 0.42.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_i686_gnu 0.42.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "windows_i686_gnu", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.42.1": { "name": "windows_i686_gnu", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.42.1/download", - "sha256": "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" + "sha256": "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640", + "url": "https://static.crates.io/crates/windows_i686_gnu/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_i686_gnu", + "version": "0.42.1" + }, + "windows_i686_gnu 0.52.6": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_i686_gnu 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_i686_gnu", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.52.6": { "name": "windows_i686_gnu", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", - "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b", + "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_i686_gnu", + "version": "0.52.6" + }, + "windows_i686_gnullvm 0.52.6": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_i686_gnullvm 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_i686_gnullvm", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnullvm 0.52.6": { "name": "windows_i686_gnullvm", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", - "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66", + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_i686_gnullvm", + "version": "0.52.6" + }, + "windows_i686_msvc 0.42.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_i686_msvc 0.42.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "windows_i686_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.42.1": { "name": "windows_i686_msvc", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.42.1/download", - "sha256": "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" + "sha256": "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605", + "url": "https://static.crates.io/crates/windows_i686_msvc/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_i686_msvc", + "version": "0.42.1" + }, + "windows_i686_msvc 0.52.6": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_msvc 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_i686_msvc 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_i686_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.52.6": { "name": "windows_i686_msvc", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66", + "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_i686_msvc", + "version": "0.52.6" + }, + "windows_x86_64_gnu 0.42.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_x86_64_gnu 0.42.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "windows_x86_64_gnu", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnu 0.42.1": { "name": "windows_x86_64_gnu", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.42.1/download", - "sha256": "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" + "sha256": "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_x86_64_gnu", + "version": "0.42.1" + }, + "windows_x86_64_gnu 0.52.6": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnu 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_x86_64_gnu 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_x86_64_gnu", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnu 0.52.6": { "name": "windows_x86_64_gnu", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", - "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_x86_64_gnu", + "version": "0.52.6" + }, + "windows_x86_64_gnullvm 0.42.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnu 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_x86_64_gnullvm 0.42.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "windows_x86_64_gnullvm", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnullvm 0.42.1": { "name": "windows_x86_64_gnullvm", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.1/download", - "sha256": "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" + "sha256": "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_x86_64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnullvm 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "version": "0.42.1" + }, + "windows_x86_64_gnullvm 0.52.6": { + "build_script_attrs": {}, + "common_attrs": { + "deps": [ + { + "id": "windows_x86_64_gnullvm 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_x86_64_gnullvm", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnullvm 0.52.6": { "name": "windows_x86_64_gnullvm", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", - "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_x86_64_gnullvm", + "version": "0.52.6" + }, + "windows_x86_64_msvc 0.42.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_x86_64_msvc 0.42.1", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2018" }, + "library_target_name": "windows_x86_64_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.42.1": { "name": "windows_x86_64_msvc", - "version": "0.42.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.42.1/download", - "sha256": "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" + "sha256": "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.42.1/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_x86_64_msvc", + "version": "0.42.1" + }, + "windows_x86_64_msvc 0.52.6": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.42.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.42.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "deps": [ + { + "id": "windows_x86_64_msvc 0.52.6", + "target": "build_script_build" + } ], - "data_glob": [ - "**" - ] + "edition": "2021" }, + "library_target_name": "windows_x86_64_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.52.6": { "name": "windows_x86_64_msvc", - "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", - "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "windows_x86_64_msvc", + "version": "0.52.6" + }, + "winnow 0.3.3": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" + "crate_features": [ + "alloc", + "default", + "std" ], - "data_glob": [ - "**" - ] + "edition": "2021" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "winnow", + "license": "MIT", + "license_file": "LICENSE-MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "winnow 0.3.3": { "name": "winnow", - "version": "0.3.3", "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.3.3/download", - "sha256": "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" + "sha256": "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658", + "url": "https://static.crates.io/crates/winnow/0.3.3/download" } }, "targets": [ { "Library": { "crate_name": "winnow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "winnow", + "version": "0.3.3" + }, + "winreg 0.10.1": { + "build_script_attrs": {}, "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "winapi 0.3.9", + "target": "winapi" + }, + { + "id": "winreg 0.10.1", + "target": "build_script_build" + } ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.3.3" + "edition": "2015" }, + "library_target_name": "winreg", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" - }, - "winreg 0.10.1": { "name": "winreg", - "version": "0.10.1", "package_url": "https://github.com/gentoo90/winreg-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winreg/0.10.1/download", - "sha256": "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" + "sha256": "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d", + "url": "https://static.crates.io/crates/winreg/0.10.1/download" } }, "targets": [ { "Library": { "crate_name": "winreg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } }, { "BuildScript": { "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "build.rs" } } ], - "library_target_name": "winreg", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi 0.3.9", - "target": "winapi" - }, - { - "id": "winreg 0.10.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.10.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" + "version": "0.10.1" } }, - "binary_crates": [], - "workspace_members": { - "pkg_a 0.1.0": "pkg_a", - "pkg_b 0.1.0": "sub_pkgs/pkg_b", - "pkg_c 0.1.0": "sub_pkgs/pkg_c" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-pc-windows-gnullvm": [], - "aarch64-pc-windows-msvc": [], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "aarch64-uwp-windows-msvc": [], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))": [], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ - "x86_64-pc-windows-msvc" - ], - "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(target_arch = \"aarch64\", target_arch = \"arm\")))": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"aarch64\", target_os = \"windows\"))": [], - "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ - "wasm32-unknown-unknown" - ], - "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\", target_env = \"\"))": [ - "wasm32-unknown-unknown" - ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_arch = \"aarch64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_arch = \"x86\", target_arch = \"x86_64\", all(any(target_arch = \"aarch64\", target_arch = \"arm\"), any(target_os = \"android\", target_os = \"fuchsia\", target_os = \"linux\"))))": [ - "aarch64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_os = \"android\", target_os = \"linux\"))": [ - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"illumos\", target_os = \"netbsd\", target_os = \"openbsd\", target_os = \"solaris\"))": [], - "cfg(any(unix, target_os = \"fuchsia\", target_os = \"vxworks\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(docsrs)": [], - "cfg(not(target_arch = \"wasm32\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(not(windows))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(not(windows_raw_dylib))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(target_arch = \"wasm32\")": [ - "wasm32-unknown-unknown", - "wasm32-wasip1" - ], - "cfg(target_env = \"msvc\")": [ - "x86_64-pc-windows-msvc" - ], - "cfg(target_feature = \"atomics\")": [], - "cfg(target_os = \"wasi\")": [ - "wasm32-wasip1" - ], - "cfg(target_os = \"windows\")": [ - "x86_64-pc-windows-msvc" - ], - "cfg(unix)": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "i686-pc-windows-gnu": [], - "i686-pc-windows-gnullvm": [], - "i686-pc-windows-msvc": [], - "i686-uwp-windows-gnu": [], - "i686-uwp-windows-msvc": [], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-gnu": [], - "x86_64-pc-windows-gnullvm": [], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ], - "x86_64-uwp-windows-gnu": [], - "x86_64-uwp-windows-msvc": [] - }, "direct_deps": [ "anyhow 1.0.69", "md-5 0.9.1", @@ -13102,5 +9617,9 @@ "hex-literal 0.3.4", "httpmock 0.6.7" ], - "unused_patches": [] + "workspace_members": { + "pkg_a 0.1.0": "pkg_a", + "pkg_b 0.1.0": "sub_pkgs/pkg_b", + "pkg_c 0.1.0": "sub_pkgs/pkg_c" + } } diff --git a/crate_universe/tests/integration/override_target/cargo-bazel-lock.json b/crate_universe/tests/integration/override_target/cargo-bazel-lock.json index 3e63a57ab9..9427e24984 100644 --- a/crate_universe/tests/integration/override_target/cargo-bazel-lock.json +++ b/crate_universe/tests/integration/override_target/cargo-bazel-lock.json @@ -1,118 +1,87 @@ { - "checksum": "27e8a62ec5c3802bbbe9cea0e6e5402b6adcdb34b2231252ec863b06c45ae27d", + "checksum": "1507acdd7abb641f21c43b0ab1aafa7f939ebef5cba559db04dde1a94c44d139", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "foo 0.0.0", + "target": "foo" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "foo 0.0.0", - "target": "foo" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.0.1" }, "foo 0.0.0": { + "common_attrs": { + "edition": "2015" + }, + "library_target_name": "foo", + "license": "CC0-1.0", + "license_ids": [ + "CC0-1.0" + ], "name": "foo", - "version": "0.0.0", - "package_url": null, + "override_targets": { + "lib": "@@//:foo" + }, "repository": { "Http": { - "url": "https://static.crates.io/crates/foo/0.0.0/download", - "sha256": "f7dbb6acfeff1d490fba693a402456f76b344fea77a5e7cae43b5970c3332b8f" + "sha256": "f7dbb6acfeff1d490fba693a402456f76b344fea77a5e7cae43b5970c3332b8f", + "url": "https://static.crates.io/crates/foo/0.0.0/download" } }, "targets": [ { "Library": { "crate_name": "foo", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "foo", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.0.0" - }, - "license": "CC0-1.0", - "license_ids": [ - "CC0-1.0" - ], - "license_file": null, - "override_targets": { - "lib": "@@//:foo" - } + "version": "0.0.0" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "foo 0.0.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } } diff --git a/examples/cross_compile_nix/bazel/cargo/cargo-bazel-lock.json b/examples/cross_compile_nix/bazel/cargo/cargo-bazel-lock.json index 2e2ac035a5..ebb394c558 100644 --- a/examples/cross_compile_nix/bazel/cargo/cargo-bazel-lock.json +++ b/examples/cross_compile_nix/bazel/cargo/cargo-bazel-lock.json @@ -1,208 +1,220 @@ { - "checksum": "7bad7ab38af6d23263b7dfd8fa32a083c1f6e29c5868e2d7448dc398a12e406b", + "checksum": "7b3cdb95e61b3f36174c2b4aa4465ffb0d96fcf533b2cfb7d5f1137e19d5e65e", + "conditions": { + "aarch64-apple-darwin": [ + "aarch64-apple-darwin" + ], + "aarch64-apple-ios": [ + "aarch64-apple-ios" + ], + "aarch64-linux-android": [ + "aarch64-linux-android" + ], + "aarch64-pc-windows-gnullvm": [], + "aarch64-unknown-linux-gnu": [ + "aarch64-unknown-linux-gnu" + ], + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [], + "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [], + "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [], + "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + "x86_64-pc-windows-msvc" + ], + "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-linux-android", + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasip1", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(not(windows))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-linux-android", + "aarch64-unknown-linux-gnu", + "wasm32-unknown-unknown", + "wasm32-wasip1", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(target_os = \"hermit\")": [], + "cfg(target_os = \"redox\")": [], + "cfg(target_os = \"wasi\")": [ + "wasm32-wasip1" + ], + "cfg(tokio_taskdump)": [], + "cfg(unix)": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-linux-android", + "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "cfg(windows)": [ + "x86_64-pc-windows-msvc" + ], + "wasm32-unknown-unknown": [ + "wasm32-unknown-unknown" + ], + "wasm32-wasip1": [ + "wasm32-wasip1" + ], + "x86_64-apple-darwin": [ + "x86_64-apple-darwin" + ], + "x86_64-pc-windows-gnullvm": [], + "x86_64-pc-windows-msvc": [ + "x86_64-pc-windows-msvc" + ], + "x86_64-unknown-linux-gnu": [ + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu" + ], + "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-nixos-gnu" + ] + }, "crates": { "addr2line 0.21.0": { + "common_attrs": { + "deps": [ + { + "id": "gimli 0.28.0", + "target": "gimli" + } + ], + "edition": "2018" + }, + "library_target_name": "addr2line", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "addr2line", - "version": "0.21.0", "package_url": "https://github.com/gimli-rs/addr2line", "repository": { "Http": { - "url": "https://static.crates.io/crates/addr2line/0.21.0/download", - "sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" + "sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb", + "url": "https://static.crates.io/crates/addr2line/0.21.0/download" } }, "targets": [ { "Library": { "crate_name": "addr2line", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "addr2line", + "version": "0.21.0" + }, + "adler 1.0.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "gimli 0.28.0", - "target": "gimli" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.21.0" + "edition": "2015" }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "adler", + "license": "0BSD OR MIT OR Apache-2.0", + "license_file": "LICENSE-0BSD", "license_ids": [ + "0BSD", "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "adler 1.0.2": { "name": "adler", - "version": "1.0.2", "package_url": "https://github.com/jonas-schievink/adler.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/adler/1.0.2/download", - "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe", + "url": "https://static.crates.io/crates/adler/1.0.2/download" } }, "targets": [ { "Library": { "crate_name": "adler", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "adler", + "version": "1.0.2" + }, + "anyhow 1.0.75": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2015", - "version": "1.0.2" + "edition": "2018" }, - "license": "0BSD OR MIT OR Apache-2.0", + "library_target_name": "anyhow", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ - "0BSD", "Apache-2.0", "MIT" ], - "license_file": "LICENSE-0BSD" - }, - "anyhow 1.0.75": { "name": "anyhow", - "version": "1.0.75", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.75/download", - "sha256": "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" + "sha256": "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6", + "url": "https://static.crates.io/crates/anyhow/1.0.75/download" } }, "targets": [ { "Library": { "crate_name": "anyhow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "anyhow", + "version": "1.0.75" + }, + "autocfg 1.1.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.75" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "autocfg", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "autocfg 1.1.0": { "name": "autocfg", - "version": "1.1.0", "package_url": "https://github.com/cuviper/autocfg", "repository": { "Http": { - "url": "https://static.crates.io/crates/autocfg/1.1.0/download", - "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", + "url": "https://static.crates.io/crates/autocfg/1.1.0/download" } }, "targets": [ { "Library": { "crate_name": "autocfg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "autocfg", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.1.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.1.0" }, "backtrace 0.3.69": { - "name": "backtrace", - "version": "0.3.69", - "package_url": "https://github.com/rust-lang/backtrace-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.69/download", - "sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" - } - }, - "targets": [ - { - "Library": { - "crate_name": "backtrace", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "backtrace", "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ { @@ -235,129 +247,96 @@ ] } }, - "edition": "2018", - "version": "0.3.69" + "edition": "2018" }, + "library_target_name": "backtrace", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "bitflags 1.3.2": { - "name": "bitflags", - "version": "1.3.2", - "package_url": "https://github.com/bitflags/bitflags", + "name": "backtrace", + "package_url": "https://github.com/rust-lang/backtrace-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/1.3.2/download", - "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + "sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837", + "url": "https://static.crates.io/crates/backtrace/0.3.69/download" } }, "targets": [ { "Library": { - "crate_name": "bitflags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "backtrace", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bitflags", + "version": "0.3.69" + }, + "bitflags 1.3.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.3.2" + "edition": "2018" }, + "library_target_name": "bitflags", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "bytes 1.4.0": { - "name": "bytes", - "version": "1.4.0", - "package_url": "https://github.com/tokio-rs/bytes", + "name": "bitflags", + "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytes/1.4.0/download", - "sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" + "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", + "url": "https://static.crates.io/crates/bitflags/1.3.2/download" } }, "targets": [ { "Library": { - "crate_name": "bytes", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "bitflags", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "bytes", + "version": "1.3.2" + }, + "bytes 1.4.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.4.0" + "edition": "2018" }, + "library_target_name": "bytes", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "cc 1.0.84": { - "name": "cc", - "version": "1.0.84", - "package_url": "https://github.com/rust-lang/cc-rs", + "name": "bytes", + "package_url": "https://github.com/tokio-rs/bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.0.84/download", - "sha256": "0f8e7c90afad890484a21653d08b6e209ae34770fb5ee298f9c699fcc1e5c856" + "sha256": "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be", + "url": "https://static.crates.io/crates/bytes/1.4.0/download" } }, "targets": [ { "Library": { - "crate_name": "cc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "bytes", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cc", + "version": "1.4.0" + }, + "cc 1.0.84": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -369,422 +348,307 @@ ] } }, - "edition": "2018", - "version": "1.0.84" + "edition": "2018" }, + "library_target_name": "cc", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "cfg-if 1.0.0": { - "name": "cfg-if", - "version": "1.0.0", - "package_url": "https://github.com/alexcrichton/cfg-if", + "name": "cc", + "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.0/download", - "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + "sha256": "0f8e7c90afad890484a21653d08b6e209ae34770fb5ee298f9c699fcc1e5c856", + "url": "https://static.crates.io/crates/cc/1.0.84/download" } }, "targets": [ { "Library": { - "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "cc", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "cfg_if", + "version": "1.0.84" + }, + "cfg-if 1.0.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.0" + "edition": "2018" }, + "library_target_name": "cfg_if", "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "cfg-if", + "package_url": "https://github.com/alexcrichton/cfg-if", + "repository": { + "Http": { + "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", + "url": "https://static.crates.io/crates/cfg-if/1.0.0/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "cfg_if", + "crate_root": "src/lib.rs" + } + } + ], + "version": "1.0.0" }, "direct-cargo-bazel-deps 0.0.1": { + "common_attrs": { + "deps": [ + { + "id": "anyhow 1.0.75", + "target": "anyhow" + }, + { + "id": "tokio 1.34.0", + "target": "tokio" + } + ], + "edition": "2018" + }, + "library_target_name": "direct_cargo_bazel_deps", "name": "direct-cargo-bazel-deps", - "version": "0.0.1", - "package_url": null, "repository": null, "targets": [ { "Library": { "crate_name": "direct_cargo_bazel_deps", - "crate_root": ".direct_cargo_bazel_deps.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": ".direct_cargo_bazel_deps.rs" } } ], - "library_target_name": "direct_cargo_bazel_deps", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "anyhow 1.0.75", - "target": "anyhow" - }, - { - "id": "tokio 1.34.0", - "target": "tokio" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.0.1" - }, - "license": null, - "license_ids": [], - "license_file": null + "version": "0.0.1" }, "gimli 0.28.0": { + "common_attrs": { + "edition": "2018" + }, + "library_target_name": "gimli", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "gimli", - "version": "0.28.0", "package_url": "https://github.com/gimli-rs/gimli", "repository": { "Http": { - "url": "https://static.crates.io/crates/gimli/0.28.0/download", - "sha256": "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + "sha256": "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0", + "url": "https://static.crates.io/crates/gimli/0.28.0/download" } }, "targets": [ { "Library": { "crate_name": "gimli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "gimli", + "version": "0.28.0" + }, + "hermit-abi 0.3.3": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.28.0" + "edition": "2021" }, + "library_target_name": "hermit_abi", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "hermit-abi 0.3.3": { "name": "hermit-abi", - "version": "0.3.3", "package_url": "https://github.com/hermitcore/hermit-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/hermit-abi/0.3.3/download", - "sha256": "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" + "sha256": "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7", + "url": "https://static.crates.io/crates/hermit-abi/0.3.3/download" } }, "targets": [ { "Library": { "crate_name": "hermit_abi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "hermit_abi", + "version": "0.3.3" + }, + "libc 0.2.150": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "edition": "2021", - "version": "0.3.3" + "edition": "2015", + "rustc_flags": [ + "--cfg=freebsd11", + "--cfg=libc_priv_mod_use", + "--cfg=libc_union", + "--cfg=libc_const_size_of", + "--cfg=libc_align", + "--cfg=libc_int128", + "--cfg=libc_core_cvoid", + "--cfg=libc_packedN", + "--cfg=libc_cfg_target_vendor", + "--cfg=libc_non_exhaustive", + "--cfg=libc_long_array", + "--cfg=libc_ptr_addr_of", + "--cfg=libc_underscore_const_names", + "--cfg=libc_const_extern_fn" + ] }, + "library_target_name": "libc", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "libc 0.2.150": { "name": "libc", - "version": "0.2.150", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.150/download", - "sha256": "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" + "sha256": "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c", + "url": "https://static.crates.io/crates/libc/0.2.150/download" } }, "targets": [ { "Library": { "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "libc", + "version": "0.2.150" + }, + "lock_api 0.4.11": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "atomic_usize", + "default" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "rustc_flags": { - "common": [ - "--cfg=freebsd11", - "--cfg=libc_priv_mod_use", - "--cfg=libc_union", - "--cfg=libc_const_size_of", - "--cfg=libc_align", - "--cfg=libc_int128", - "--cfg=libc_core_cvoid", - "--cfg=libc_packedN", - "--cfg=libc_cfg_target_vendor", - "--cfg=libc_non_exhaustive", - "--cfg=libc_long_array", - "--cfg=libc_ptr_addr_of", - "--cfg=libc_underscore_const_names", - "--cfg=libc_const_extern_fn" - ], - "selects": {} - }, - "version": "0.2.150" + "deps": [ + { + "id": "scopeguard 1.2.0", + "target": "scopeguard" + } + ], + "edition": "2018" }, + "library_target_name": "lock_api", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "lock_api 0.4.11": { "name": "lock_api", - "version": "0.4.11", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/lock_api/0.4.11/download", - "sha256": "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" + "sha256": "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45", + "url": "https://static.crates.io/crates/lock_api/0.4.11/download" } }, "targets": [ { "Library": { "crate_name": "lock_api", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "lock_api", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "atomic_usize", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "scopeguard 1.2.0", - "target": "scopeguard" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.11" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "0.4.11" }, "memchr 2.6.4": { - "name": "memchr", - "version": "2.6.4", - "package_url": "https://github.com/BurntSushi/memchr", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/memchr/2.6.4/download", - "sha256": "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" - } - }, - "targets": [ - { - "Library": { - "crate_name": "memchr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "memchr", "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "2.6.4" + "edition": "2021" }, + "library_target_name": "memchr", "license": "Unlicense OR MIT", + "license_file": "LICENSE-MIT", "license_ids": [ "MIT", "Unlicense" ], - "license_file": "LICENSE-MIT" - }, - "miniz_oxide 0.7.1": { - "name": "miniz_oxide", - "version": "0.7.1", - "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", + "name": "memchr", + "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download", - "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" + "sha256": "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167", + "url": "https://static.crates.io/crates/memchr/2.6.4/download" } }, "targets": [ { "Library": { - "crate_name": "miniz_oxide", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "memchr", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "miniz_oxide", + "version": "2.6.4" + }, + "miniz_oxide 0.7.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "adler 1.0.2", + "target": "adler" + } ], - "deps": { - "common": [ - { - "id": "adler 1.0.2", - "target": "adler" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.1" + "edition": "2018" }, + "library_target_name": "miniz_oxide", "license": "MIT OR Zlib OR Apache-2.0", + "license_file": "LICENSE", "license_ids": [ "Apache-2.0", "MIT", "Zlib" ], - "license_file": "LICENSE" - }, - "mio 0.8.9": { - "name": "mio", - "version": "0.8.9", - "package_url": "https://github.com/tokio-rs/mio", + "name": "miniz_oxide", + "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/0.8.9/download", - "sha256": "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" + "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7", + "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download" } }, "targets": [ { "Library": { - "crate_name": "mio", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "miniz_oxide", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "mio", + "version": "0.7.1" + }, + "mio 0.8.9": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "net", + "os-ext", + "os-poll" ], - "crate_features": { - "common": [ - "net", - "os-ext", - "os-poll" - ], - "selects": {} - }, "deps": { "common": [], "selects": { @@ -812,44 +676,34 @@ ] } }, - "edition": "2018", - "version": "0.8.9" + "edition": "2018" }, + "library_target_name": "mio", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "num_cpus 1.16.0": { - "name": "num_cpus", - "version": "1.16.0", - "package_url": "https://github.com/seanmonstar/num_cpus", + "name": "mio", + "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/num_cpus/1.16.0/download", - "sha256": "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" + "sha256": "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0", + "url": "https://static.crates.io/crates/mio/0.8.9/download" } }, "targets": [ { "Library": { - "crate_name": "num_cpus", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "mio", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "num_cpus", + "version": "0.8.9" + }, + "num_cpus 1.16.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -867,151 +721,112 @@ ] } }, - "edition": "2015", - "version": "1.16.0" + "edition": "2015" }, + "library_target_name": "num_cpus", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "object 0.32.1": { - "name": "object", - "version": "0.32.1", - "package_url": "https://github.com/gimli-rs/object", + "name": "num_cpus", + "package_url": "https://github.com/seanmonstar/num_cpus", "repository": { "Http": { - "url": "https://static.crates.io/crates/object/0.32.1/download", - "sha256": "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" + "sha256": "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43", + "url": "https://static.crates.io/crates/num_cpus/1.16.0/download" } }, "targets": [ { "Library": { - "crate_name": "object", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "num_cpus", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "object", + "version": "1.16.0" + }, + "object 0.32.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "memchr 2.6.4", + "target": "memchr" + } ], - "deps": { - "common": [ - { - "id": "memchr 2.6.4", - "target": "memchr" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.32.1" + "edition": "2018" }, + "library_target_name": "object", "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "parking_lot 0.12.1": { - "name": "parking_lot", - "version": "0.12.1", - "package_url": "https://github.com/Amanieu/parking_lot", + "name": "object", + "package_url": "https://github.com/gimli-rs/object", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot/0.12.1/download", - "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" + "sha256": "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0", + "url": "https://static.crates.io/crates/object/0.32.1/download" } }, "targets": [ { "Library": { - "crate_name": "parking_lot", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "object", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "parking_lot", + "version": "0.32.1" + }, + "parking_lot 0.12.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default" ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "lock_api 0.4.11", - "target": "lock_api" - }, - { - "id": "parking_lot_core 0.9.9", - "target": "parking_lot_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.12.1" + "deps": [ + { + "id": "lock_api 0.4.11", + "target": "lock_api" + }, + { + "id": "parking_lot_core 0.9.9", + "target": "parking_lot_core" + } + ], + "edition": "2018" }, + "library_target_name": "parking_lot", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "parking_lot_core 0.9.9": { - "name": "parking_lot_core", - "version": "0.9.9", + "name": "parking_lot", "package_url": "https://github.com/Amanieu/parking_lot", "repository": { "Http": { - "url": "https://static.crates.io/crates/parking_lot_core/0.9.9/download", - "sha256": "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" + "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f", + "url": "https://static.crates.io/crates/parking_lot/0.12.1/download" } }, "targets": [ { "Library": { - "crate_name": "parking_lot_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "parking_lot", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "parking_lot_core", + "version": "0.12.1" + }, + "parking_lot_core 0.9.9": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [ { @@ -1044,421 +859,307 @@ ] } }, - "edition": "2018", - "version": "0.9.9" + "edition": "2018" }, + "library_target_name": "parking_lot_core", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "name": "parking_lot_core", + "package_url": "https://github.com/Amanieu/parking_lot", + "repository": { + "Http": { + "sha256": "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e", + "url": "https://static.crates.io/crates/parking_lot_core/0.9.9/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "parking_lot_core", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.9.9" }, "pin-project-lite 0.2.13": { + "common_attrs": { + "edition": "2018" + }, + "library_target_name": "pin_project_lite", + "license": "Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "pin-project-lite", - "version": "0.2.13", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download", - "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" + "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58", + "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download" } }, "targets": [ { "Library": { "crate_name": "pin_project_lite", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "pin_project_lite", + "version": "0.2.13" + }, + "proc-macro2 1.0.69": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" + ], + "deps": [ + { + "id": "unicode-ident 1.0.8", + "target": "unicode_ident" + } ], - "edition": "2018", - "version": "0.2.13" + "edition": "2021", + "rustc_flags": [ + "--cfg=proc_macro_span", + "--cfg=span_locations", + "--cfg=use_proc_macro", + "--cfg=wrap_proc_macro" + ] }, - "license": "Apache-2.0 OR MIT", + "library_target_name": "proc_macro2", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.69": { "name": "proc-macro2", - "version": "1.0.69", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.69/download", - "sha256": "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" + "sha256": "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da", + "url": "https://static.crates.io/crates/proc-macro2/1.0.69/download" } }, "targets": [ { "Library": { "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "proc_macro2", + "version": "1.0.69" + }, + "quote 1.0.26": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "proc-macro" ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "unicode-ident 1.0.8", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "rustc_flags": { - "common": [ - "--cfg=proc_macro_span", - "--cfg=span_locations", - "--cfg=use_proc_macro", - "--cfg=wrap_proc_macro" - ], - "selects": {} - }, - "version": "1.0.69" + "deps": [ + { + "id": "proc-macro2 1.0.69", + "target": "proc_macro2" + } + ], + "edition": "2018" }, + "library_target_name": "quote", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.26": { "name": "quote", - "version": "1.0.26", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.26/download", - "sha256": "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" + "sha256": "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc", + "url": "https://static.crates.io/crates/quote/1.0.26/download" } }, "targets": [ { "Library": { "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "quote", + "version": "1.0.26" + }, + "redox_syscall 0.4.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "bitflags 1.3.2", + "target": "bitflags" + } ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.69", - "target": "proc_macro2" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.26" + "edition": "2018" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "syscall", + "license": "MIT", + "license_file": "LICENSE", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "redox_syscall 0.4.1": { "name": "redox_syscall", - "version": "0.4.1", "package_url": "https://gitlab.redox-os.org/redox-os/syscall", "repository": { "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.4.1/download", - "sha256": "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" + "sha256": "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa", + "url": "https://static.crates.io/crates/redox_syscall/0.4.1/download" } }, "targets": [ { "Library": { "crate_name": "syscall", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "syscall", + "version": "0.4.1" + }, + "rustc-demangle 0.1.23": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 1.3.2", - "target": "bitflags" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.1" + "edition": "2015" }, - "license": "MIT", + "library_target_name": "rustc_demangle", + "license": "MIT/Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE" - }, - "rustc-demangle 0.1.23": { "name": "rustc-demangle", - "version": "0.1.23", "package_url": "https://github.com/alexcrichton/rustc-demangle", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download", - "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76", + "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download" } }, "targets": [ { "Library": { "crate_name": "rustc_demangle", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "rustc_demangle", + "version": "0.1.23" + }, + "scopeguard 1.2.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.23" + "edition": "2015" }, - "license": "MIT/Apache-2.0", + "library_target_name": "scopeguard", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "scopeguard 1.2.0": { "name": "scopeguard", - "version": "1.2.0", "package_url": "https://github.com/bluss/scopeguard", "repository": { "Http": { - "url": "https://static.crates.io/crates/scopeguard/1.2.0/download", - "sha256": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + "sha256": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49", + "url": "https://static.crates.io/crates/scopeguard/1.2.0/download" } }, "targets": [ { "Library": { "crate_name": "scopeguard", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "scopeguard", + "version": "1.2.0" + }, + "signal-hook-registry 1.4.1": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "libc 0.2.150", + "target": "libc" + } ], - "edition": "2015", - "version": "1.2.0" + "edition": "2015" }, - "license": "MIT OR Apache-2.0", + "library_target_name": "signal_hook_registry", + "license": "Apache-2.0/MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "signal-hook-registry 1.4.1": { "name": "signal-hook-registry", - "version": "1.4.1", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download", - "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" + "sha256": "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1", + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.1/download" } }, "targets": [ { "Library": { "crate_name": "signal_hook_registry", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "signal_hook_registry", + "version": "1.4.1" + }, + "smallvec 1.11.2": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.150", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "1.4.1" + "edition": "2018" }, - "license": "Apache-2.0/MIT", + "library_target_name": "smallvec", + "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "smallvec 1.11.2": { "name": "smallvec", - "version": "1.11.2", "package_url": "https://github.com/servo/rust-smallvec", "repository": { "Http": { - "url": "https://static.crates.io/crates/smallvec/1.11.2/download", - "sha256": "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" + "sha256": "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970", + "url": "https://static.crates.io/crates/smallvec/1.11.2/download" } }, "targets": [ { "Library": { "crate_name": "smallvec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "smallvec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.11.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" + "version": "1.11.2" }, "socket2 0.5.5": { - "name": "socket2", - "version": "0.5.5", - "package_url": "https://github.com/rust-lang/socket2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/socket2/0.5.5/download", - "sha256": "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "socket2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "socket2", "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "all" ], - "crate_features": { - "common": [ - "all" - ], - "selects": {} - }, "deps": { "common": [], "selects": { @@ -1476,118 +1177,92 @@ ] } }, - "edition": "2021", - "version": "0.5.5" + "edition": "2021" }, + "library_target_name": "socket2", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "syn 2.0.15": { - "name": "syn", - "version": "2.0.15", - "package_url": "https://github.com/dtolnay/syn", + "name": "socket2", + "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.15/download", - "sha256": "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" + "sha256": "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9", + "url": "https://static.crates.io/crates/socket2/0.5.5/download" } }, "targets": [ { "Library": { - "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "socket2", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "syn", + "version": "0.5.5" + }, + "syn 2.0.15": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "clone-impls", + "default", + "derive", + "extra-traits", + "fold", + "full", + "parsing", + "printing", + "proc-macro", + "quote", + "visit", + "visit-mut" ], - "crate_features": { - "common": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "fold", - "full", - "parsing", - "printing", - "proc-macro", - "quote", - "visit", - "visit-mut" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.69", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.26", - "target": "quote" - }, - { - "id": "unicode-ident 1.0.8", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.15" + "deps": [ + { + "id": "proc-macro2 1.0.69", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.26", + "target": "quote" + }, + { + "id": "unicode-ident 1.0.8", + "target": "unicode_ident" + } + ], + "edition": "2021" }, + "library_target_name": "syn", "license": "MIT OR Apache-2.0", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "tokio 1.34.0": { - "name": "tokio", - "version": "1.34.0", - "package_url": "https://github.com/tokio-rs/tokio", + "name": "syn", + "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.34.0/download", - "sha256": "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" + "sha256": "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822", + "url": "https://static.crates.io/crates/syn/2.0.15/download" } }, "targets": [ { "Library": { - "crate_name": "tokio", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "syn", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tokio", + "version": "2.0.15" + }, + "tokio 1.34.0": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "crate_features": { "common": [ "bytes", @@ -1759,261 +1434,196 @@ } }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "tokio-macros 2.2.0", - "target": "tokio_macros" - } - ], - "selects": {} - }, - "version": "1.34.0" + "proc_macro_deps": [ + { + "id": "tokio-macros 2.2.0", + "target": "tokio_macros" + } + ] }, + "library_target_name": "tokio", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "tokio-macros 2.2.0": { - "name": "tokio-macros", - "version": "2.2.0", + "name": "tokio", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.2.0/download", - "sha256": "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" + "sha256": "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9", + "url": "https://static.crates.io/crates/tokio/1.34.0/download" } }, "targets": [ { - "ProcMacro": { - "crate_name": "tokio_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "Library": { + "crate_name": "tokio", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "tokio_macros", + "version": "1.34.0" + }, + "tokio-macros 2.2.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "deps": [ + { + "id": "proc-macro2 1.0.69", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.26", + "target": "quote" + }, + { + "id": "syn 2.0.15", + "target": "syn" + } ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.69", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.26", - "target": "quote" - }, - { - "id": "syn 2.0.15", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.2.0" + "edition": "2021" }, + "library_target_name": "tokio_macros", "license": "MIT", + "license_file": "LICENSE", "license_ids": [ "MIT" ], - "license_file": "LICENSE" - }, - "unicode-ident 1.0.8": { - "name": "unicode-ident", - "version": "1.0.8", - "package_url": "https://github.com/dtolnay/unicode-ident", + "name": "tokio-macros", + "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.8/download", - "sha256": "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" + "sha256": "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b", + "url": "https://static.crates.io/crates/tokio-macros/2.2.0/download" } }, "targets": [ { - "Library": { - "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "ProcMacro": { + "crate_name": "tokio_macros", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "unicode_ident", + "version": "2.2.0" + }, + "unicode-ident 1.0.8": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.8" + "edition": "2018" }, + "library_target_name": "unicode_ident", "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT", "Unicode-DFS-2016" ], - "license_file": "LICENSE-APACHE" - }, - "wasi 0.11.0+wasi-snapshot-preview1": { - "name": "wasi", - "version": "0.11.0+wasi-snapshot-preview1", - "package_url": "https://github.com/bytecodealliance/wasi", + "name": "unicode-ident", + "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download", - "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + "sha256": "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4", + "url": "https://static.crates.io/crates/unicode-ident/1.0.8/download" } }, "targets": [ { "Library": { - "crate_name": "wasi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "unicode_ident", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "wasi", + "version": "1.0.8" + }, + "wasi 0.11.0+wasi-snapshot-preview1": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "default", + "std" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.11.0+wasi-snapshot-preview1" + "edition": "2018" }, + "library_target_name": "wasi", "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_file": "LICENSE-APACHE", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" - }, - "windows-sys 0.48.0": { - "name": "windows-sys", - "version": "0.48.0", - "package_url": "https://github.com/microsoft/windows-rs", + "name": "wasi", + "package_url": "https://github.com/bytecodealliance/wasi", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.48.0/download", - "sha256": "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" + "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", + "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "wasi", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_sys", + "version": "0.11.0+wasi-snapshot-preview1" + }, + "windows-sys 0.48.0": { "common_attrs": { - "compile_data_glob": [ - "**" + "crate_features": [ + "Win32", + "Win32_Foundation", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Console", + "Win32_System_IO", + "Win32_System_Pipes", + "Win32_System_SystemServices", + "Win32_System_Threading", + "Win32_System_WindowsProgramming", + "default" ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_SystemServices", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "windows-targets 0.48.5", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.48.0" + "deps": [ + { + "id": "windows-targets 0.48.5", + "target": "windows_targets" + } + ], + "edition": "2018" }, + "library_target_name": "windows_sys", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.48.5": { - "name": "windows-targets", - "version": "0.48.5", + "name": "windows-sys", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.48.5/download", - "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" + "sha256": "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9", + "url": "https://static.crates.io/crates/windows-sys/0.48.0/download" } }, "targets": [ { "Library": { - "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_name": "windows_sys", + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_targets", + "version": "0.48.0" + }, + "windows-targets 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], "deps": { "common": [], "selects": { @@ -2061,383 +1671,243 @@ ] } }, - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_targets", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "name": "windows-targets", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c", + "url": "https://static.crates.io/crates/windows-targets/0.48.5/download" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_targets", + "crate_root": "src/lib.rs" + } + } + ], + "version": "0.48.5" }, "windows_aarch64_gnullvm 0.48.5": { + "common_attrs": { + "edition": "2018" + }, + "library_target_name": "windows_aarch64_gnullvm", + "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], "name": "windows_aarch64_gnullvm", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download", - "sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + "sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8", + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_aarch64_gnullvm", + "version": "0.48.5" + }, + "windows_aarch64_msvc 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_aarch64_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.48.5": { "name": "windows_aarch64_msvc", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download", - "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc", + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_aarch64_msvc", + "version": "0.48.5" + }, + "windows_i686_gnu 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_i686_gnu", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.48.5": { "name": "windows_i686_gnu", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", - "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e", + "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_i686_gnu", + "version": "0.48.5" + }, + "windows_i686_msvc 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_i686_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.48.5": { "name": "windows_i686_msvc", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", - "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406", + "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_i686_msvc", + "version": "0.48.5" + }, + "windows_x86_64_gnu 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_x86_64_gnu", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnu 0.48.5": { "name": "windows_x86_64_gnu", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", - "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e", + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_x86_64_gnu", + "version": "0.48.5" + }, + "windows_x86_64_gnullvm 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_x86_64_gnullvm", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnullvm 0.48.5": { "name": "windows_x86_64_gnullvm", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download", - "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc", + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_x86_64_gnullvm", + "version": "0.48.5" + }, + "windows_x86_64_msvc 0.48.5": { "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" + "edition": "2018" }, + "library_target_name": "windows_x86_64_msvc", "license": "MIT OR Apache-2.0", + "license_file": "license-apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.48.5": { "name": "windows_x86_64_msvc", - "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download", - "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538", + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download" } }, "targets": [ { "Library": { "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } + "crate_root": "src/lib.rs" } } ], - "library_target_name": "windows_x86_64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.48.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" + "version": "0.48.5" } }, - "binary_crates": [], - "workspace_members": { - "direct-cargo-bazel-deps 0.0.1": "" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-apple-ios": [ - "aarch64-apple-ios" - ], - "aarch64-linux-android": [ - "aarch64-linux-android" - ], - "aarch64-pc-windows-gnullvm": [], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - "x86_64-pc-windows-msvc" - ], - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-linux-android", - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-apple-darwin", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(not(windows))": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-linux-android", - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-apple-darwin", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(target_os = \"hermit\")": [], - "cfg(target_os = \"redox\")": [], - "cfg(target_os = \"wasi\")": [ - "wasm32-wasip1" - ], - "cfg(tokio_taskdump)": [], - "cfg(unix)": [ - "aarch64-apple-darwin", - "aarch64-apple-ios", - "aarch64-linux-android", - "aarch64-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-apple-darwin": [ - "x86_64-apple-darwin" - ], - "x86_64-pc-windows-gnullvm": [], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, "direct_deps": [ "anyhow 1.0.75", "tokio 1.34.0" ], "direct_dev_deps": [], - "unused_patches": [] + "workspace_members": { + "direct-cargo-bazel-deps 0.0.1": "" + } }