workspace: bump rules_rust to v0.47.1
Change-Id: I75f35fc49d233f3934c3af7b05c1db97d56f5fe0
Reviewed-on: https://review.monogon.dev/c/monogon/+/3221
Tested-by: Jenkins CI
Reviewed-by: Lorenz Brun <lorenz@monogon.tech>
diff --git a/third_party/rust-reproducibility.patch b/third_party/rust-reproducibility.patch
index d21c77a..7fc23db 100644
--- a/third_party/rust-reproducibility.patch
+++ b/third_party/rust-reproducibility.patch
@@ -1,4 +1,4 @@
-From d20698e4802b801807d0474f1d1d003b13c78277 Mon Sep 17 00:00:00 2001
+From 01a53a95a8fa20f2bf5ec6357baa457e7b2bc9f2 Mon Sep 17 00:00:00 2001
From: Tim Windelschmidt <tim@monogon.tech>
Date: Fri, 12 Jan 2024 15:44:41 +0100
Subject: [PATCH] Improve reproducibility
@@ -33,22 +33,21 @@
6 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/proto/prost/private/prost.bzl b/proto/prost/private/prost.bzl
-index e3e5e382..b91123f3 100644
+index 38bd7b4f..645a520f 100644
--- a/proto/prost/private/prost.bzl
+++ b/proto/prost/private/prost.bzl
-@@ -125,7 +125,9 @@ def _compile_rust(ctx, attr, crate_name, src, deps, edition):
+@@ -131,7 +131,8 @@ def _compile_rust(ctx, attr, crate_name, src, deps, edition):
A DepVariantInfo provider.
"""
toolchain = ctx.toolchains["@rules_rust//rust:toolchain_type"]
- output_hash = repr(hash(src.path + ".prost"))
+ src_path = src.path.replace(ctx.bin_dir.path, 'bin')
-+ print(src.path, src_path)
+ output_hash = repr(hash(src_path + ".prost"))
lib_name = "{prefix}{name}-{lib_hash}{extension}".format(
prefix = "lib",
diff --git a/proto/protobuf/proto.bzl b/proto/protobuf/proto.bzl
-index 7b254305..d61a1cbc 100644
+index 959d0c1c..00dff5d0 100644
--- a/proto/protobuf/proto.bzl
+++ b/proto/protobuf/proto.bzl
@@ -187,7 +187,7 @@ def _rust_proto_compile(protos, descriptor_sets, imports, crate_name, ctx, is_gr
@@ -61,10 +60,10 @@
output_dir,
crate_name,
diff --git a/rust/private/clippy.bzl b/rust/private/clippy.bzl
-index 9fd9842c..54a0547c 100644
+index ef3ec2f8..cab2e6bf 100644
--- a/rust/private/clippy.bzl
+++ b/rust/private/clippy.bzl
-@@ -120,7 +120,7 @@ def _clippy_aspect_impl(target, ctx):
+@@ -132,7 +132,7 @@ def _clippy_aspect_impl(target, ctx):
dep_info = dep_info,
linkstamp_outs = linkstamp_outs,
ambiguous_libs = ambiguous_libs,
@@ -74,7 +73,7 @@
out_dir = out_dir,
build_env_files = build_env_files,
diff --git a/rust/private/rust.bzl b/rust/private/rust.bzl
-index 7727febb..217f1059 100644
+index afe1f129..ee73ee44 100644
--- a/rust/private/rust.bzl
+++ b/rust/private/rust.bzl
@@ -159,7 +159,7 @@ def _rust_library_common(ctx, crate_type):
@@ -86,7 +85,7 @@
rust_lib_name = determine_lib_name(
crate_name,
-@@ -310,7 +310,7 @@ def _rust_test_impl(ctx):
+@@ -309,7 +309,7 @@ def _rust_test_impl(ctx):
# Target is building the crate in `test` config
crate = ctx.attr.crate[rust_common.crate_info] if rust_common.crate_info in ctx.attr.crate else ctx.attr.crate[rust_common.test_crate_info].crate
@@ -95,7 +94,7 @@
output = ctx.actions.declare_file(
"test-%s/%s%s" % (
output_hash,
-@@ -369,7 +369,7 @@ def _rust_test_impl(ctx):
+@@ -368,7 +368,7 @@ def _rust_test_impl(ctx):
crate_root = crate_root_src(ctx.attr.name, ctx.files.srcs, crate_root_type)
srcs, crate_root = transform_sources(ctx, ctx.files.srcs, crate_root)
@@ -105,10 +104,10 @@
"test-%s/%s%s" % (
output_hash,
diff --git a/rust/private/rustc.bzl b/rust/private/rustc.bzl
-index ef3479e5..06c94574 100644
+index 6dbb258b..bb5e0b05 100644
--- a/rust/private/rustc.bzl
+++ b/rust/private/rustc.bzl
-@@ -966,6 +966,10 @@ def construct_arguments(
+@@ -965,6 +965,10 @@ def construct_arguments(
if remap_path_prefix != None:
rustc_flags.add("--remap-path-prefix=${{pwd}}={}".format(remap_path_prefix))
@@ -116,14 +115,14 @@
+ # build configuration) with a stable bin/ path.
+ rustc_flags.add("--remap-path-prefix={}=bin".format(ctx.bin_dir.path))
+
- if emit:
- rustc_flags.add_joined(emit_with_paths, format_joined = "--emit=%s", join_with = ",")
- if error_format != "json":
+ emit_without_paths = []
+ for kind in emit:
+ if kind == "link" and crate_info.type == "bin" and crate_info.output != None:
diff --git a/rust/private/utils.bzl b/rust/private/utils.bzl
-index 4e9b4b79..82317359 100644
+index 57a3fe7a..315f45b6 100644
--- a/rust/private/utils.bzl
+++ b/rust/private/utils.bzl
-@@ -182,7 +182,7 @@ def abs(value):
+@@ -186,7 +186,7 @@ def abs(value):
return -value
return value
@@ -132,7 +131,7 @@
"""Generates a hash of the crate root file's path.
Args:
-@@ -193,8 +193,11 @@ def determine_output_hash(crate_root, label):
+@@ -197,8 +197,11 @@ def determine_output_hash(crate_root, label):
str: A string representation of the hash.
"""
@@ -146,5 +145,5 @@
def get_preferred_artifact(library_to_link, use_pic):
--
-2.42.0
+2.44.1
diff --git a/third_party/rust/Cargo.Bazel.lock b/third_party/rust/Cargo.Bazel.lock
index 45f49c6..46095a8 100644
--- a/third_party/rust/Cargo.Bazel.lock
+++ b/third_party/rust/Cargo.Bazel.lock
@@ -1,12 +1,13 @@
{
- "checksum": "be4e517bbf43e7232cedbc5860881dad00f1d3e801a776efe9c9bccc33c238d0",
+ "checksum": "c20a66075af4229be29c9a217128ca5f223e6d95b024ffef7f42139ddf52f588",
"crates": {
"addr2line 0.21.0": {
"name": "addr2line",
"version": "0.21.0",
+ "package_url": "https://github.com/gimli-rs/addr2line",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/addr2line/0.21.0/download",
+ "url": "https://static.crates.io/crates/addr2line/0.21.0/download",
"sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
}
},
@@ -15,9 +16,12 @@
"Library": {
"crate_name": "addr2line",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -38,14 +42,20 @@
"edition": "2018",
"version": "0.21.0"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "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://crates.io/api/v1/crates/adler/1.0.2/download",
+ "url": "https://static.crates.io/crates/adler/1.0.2/download",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
}
},
@@ -54,9 +64,12 @@
"Library": {
"crate_name": "adler",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -68,14 +81,21 @@
"edition": "2015",
"version": "1.0.2"
},
- "license": "0BSD OR MIT OR Apache-2.0"
+ "license": "0BSD OR MIT OR Apache-2.0",
+ "license_ids": [
+ "0BSD",
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-0BSD"
},
"aho-corasick 1.1.2": {
"name": "aho-corasick",
"version": "1.1.2",
+ "package_url": "https://github.com/BurntSushi/aho-corasick",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/aho-corasick/1.1.2/download",
+ "url": "https://static.crates.io/crates/aho-corasick/1.1.2/download",
"sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
}
},
@@ -84,9 +104,12 @@
"Library": {
"crate_name": "aho_corasick",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -115,14 +138,20 @@
"edition": "2021",
"version": "1.1.2"
},
- "license": "Unlicense OR MIT"
+ "license": "Unlicense OR MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"ammonia 3.3.0": {
"name": "ammonia",
"version": "3.3.0",
+ "package_url": "https://github.com/rust-ammonia/ammonia",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ammonia/3.3.0/download",
+ "url": "https://static.crates.io/crates/ammonia/3.3.0/download",
"sha256": "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
}
},
@@ -131,9 +160,12 @@
"Library": {
"crate_name": "ammonia",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -170,14 +202,20 @@
"edition": "2018",
"version": "3.3.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"android-tzdata 0.1.1": {
"name": "android-tzdata",
"version": "0.1.1",
+ "package_url": "https://github.com/RumovZ/android-tzdata",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/android-tzdata/0.1.1/download",
+ "url": "https://static.crates.io/crates/android-tzdata/0.1.1/download",
"sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
}
},
@@ -186,9 +224,12 @@
"Library": {
"crate_name": "android_tzdata",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -200,14 +241,20 @@
"edition": "2018",
"version": "0.1.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"android_system_properties 0.1.5": {
"name": "android_system_properties",
"version": "0.1.5",
+ "package_url": "https://github.com/nical/android_system_properties",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/android_system_properties/0.1.5/download",
+ "url": "https://static.crates.io/crates/android_system_properties/0.1.5/download",
"sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
}
},
@@ -216,9 +263,12 @@
"Library": {
"crate_name": "android_system_properties",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -239,14 +289,20 @@
"edition": "2018",
"version": "0.1.5"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"anstream 0.6.7": {
"name": "anstream",
"version": "0.6.7",
+ "package_url": "https://github.com/rust-cli/anstyle.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anstream/0.6.7/download",
+ "url": "https://static.crates.io/crates/anstream/0.6.7/download",
"sha256": "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba"
}
},
@@ -255,9 +311,12 @@
"Library": {
"crate_name": "anstream",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -298,7 +357,19 @@
}
],
"selects": {
- "cfg(windows)": [
+ "aarch64-pc-windows-msvc": [
+ {
+ "id": "anstyle-wincon 3.0.2",
+ "target": "anstyle_wincon"
+ }
+ ],
+ "i686-pc-windows-msvc": [
+ {
+ "id": "anstyle-wincon 3.0.2",
+ "target": "anstyle_wincon"
+ }
+ ],
+ "x86_64-pc-windows-msvc": [
{
"id": "anstyle-wincon 3.0.2",
"target": "anstyle_wincon"
@@ -309,14 +380,20 @@
"edition": "2021",
"version": "0.6.7"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"anstyle 1.0.4": {
"name": "anstyle",
"version": "1.0.4",
+ "package_url": "https://github.com/rust-cli/anstyle.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anstyle/1.0.4/download",
+ "url": "https://static.crates.io/crates/anstyle/1.0.4/download",
"sha256": "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
}
},
@@ -325,9 +402,12 @@
"Library": {
"crate_name": "anstyle",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -346,14 +426,20 @@
"edition": "2021",
"version": "1.0.4"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"anstyle-parse 0.2.3": {
"name": "anstyle-parse",
"version": "0.2.3",
+ "package_url": "https://github.com/rust-cli/anstyle.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anstyle-parse/0.2.3/download",
+ "url": "https://static.crates.io/crates/anstyle-parse/0.2.3/download",
"sha256": "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
}
},
@@ -362,9 +448,12 @@
"Library": {
"crate_name": "anstyle_parse",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -392,14 +481,20 @@
"edition": "2021",
"version": "0.2.3"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"anstyle-query 1.0.2": {
"name": "anstyle-query",
"version": "1.0.2",
+ "package_url": "https://github.com/rust-cli/anstyle",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anstyle-query/1.0.2/download",
+ "url": "https://static.crates.io/crates/anstyle-query/1.0.2/download",
"sha256": "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
}
},
@@ -408,9 +503,12 @@
"Library": {
"crate_name": "anstyle_query",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -433,14 +531,20 @@
"edition": "2021",
"version": "1.0.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"anstyle-wincon 3.0.2": {
"name": "anstyle-wincon",
"version": "3.0.2",
+ "package_url": "https://github.com/rust-cli/anstyle.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anstyle-wincon/3.0.2/download",
+ "url": "https://static.crates.io/crates/anstyle-wincon/3.0.2/download",
"sha256": "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
}
},
@@ -449,9 +553,12 @@
"Library": {
"crate_name": "anstyle_wincon",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -479,14 +586,20 @@
"edition": "2021",
"version": "3.0.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"anyhow 1.0.79": {
"name": "anyhow",
"version": "1.0.79",
+ "package_url": "https://github.com/dtolnay/anyhow",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anyhow/1.0.79/download",
+ "url": "https://static.crates.io/crates/anyhow/1.0.79/download",
"sha256": "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
}
},
@@ -495,18 +608,24 @@
"Library": {
"crate_name": "anyhow",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -539,14 +658,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/autocfg/1.1.0/download",
+ "url": "https://static.crates.io/crates/autocfg/1.1.0/download",
"sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
}
},
@@ -555,9 +680,12 @@
"Library": {
"crate_name": "autocfg",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -569,14 +697,20 @@
"edition": "2015",
"version": "1.1.0"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"backtrace 0.3.69": {
"name": "backtrace",
"version": "0.3.69",
+ "package_url": "https://github.com/rust-lang/backtrace-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/backtrace/0.3.69/download",
+ "url": "https://static.crates.io/crates/backtrace/0.3.69/download",
"sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
}
},
@@ -585,18 +719,24 @@
"Library": {
"crate_name": "backtrace",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -658,14 +798,20 @@
"selects": {}
}
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"base64 0.21.7": {
"name": "base64",
"version": "0.21.7",
+ "package_url": "https://github.com/marshallpierce/rust-base64",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/base64/0.21.7/download",
+ "url": "https://static.crates.io/crates/base64/0.21.7/download",
"sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
}
},
@@ -674,9 +820,12 @@
"Library": {
"crate_name": "base64",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -696,14 +845,20 @@
"edition": "2018",
"version": "0.21.7"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/bitflags/1.3.2/download",
+ "url": "https://static.crates.io/crates/bitflags/1.3.2/download",
"sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
}
},
@@ -712,9 +867,12 @@
"Library": {
"crate_name": "bitflags",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -732,14 +890,20 @@
"edition": "2018",
"version": "1.3.2"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"bitflags 2.4.1": {
"name": "bitflags",
"version": "2.4.1",
+ "package_url": "https://github.com/bitflags/bitflags",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bitflags/2.4.1/download",
+ "url": "https://static.crates.io/crates/bitflags/2.4.1/download",
"sha256": "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
}
},
@@ -748,9 +912,12 @@
"Library": {
"crate_name": "bitflags",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -768,14 +935,20 @@
"edition": "2021",
"version": "2.4.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"block-buffer 0.10.4": {
"name": "block-buffer",
"version": "0.10.4",
+ "package_url": "https://github.com/RustCrypto/utils",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/block-buffer/0.10.4/download",
+ "url": "https://static.crates.io/crates/block-buffer/0.10.4/download",
"sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
}
},
@@ -784,9 +957,12 @@
"Library": {
"crate_name": "block_buffer",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -807,14 +983,20 @@
"edition": "2018",
"version": "0.10.4"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"bstr 1.9.0": {
"name": "bstr",
"version": "1.9.0",
+ "package_url": "https://github.com/BurntSushi/bstr",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bstr/1.9.0/download",
+ "url": "https://static.crates.io/crates/bstr/1.9.0/download",
"sha256": "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
}
},
@@ -823,9 +1005,12 @@
"Library": {
"crate_name": "bstr",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -883,25 +1068,82 @@
{
"id": "memchr 2.7.1",
"target": "memchr"
- },
- {
- "id": "regex-automata 0.4.3",
- "target": "regex_automata"
}
],
- "selects": {}
+ "selects": {
+ "aarch64-unknown-linux-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "aarch64-unknown-nixos-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "arm-unknown-linux-gnueabi": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "armv7-unknown-linux-gnueabi": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "i686-unknown-linux-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "powerpc-unknown-linux-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "s390x-unknown-linux-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "x86_64-unknown-linux-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ],
+ "x86_64-unknown-nixos-gnu": [
+ {
+ "id": "regex-automata 0.4.3",
+ "target": "regex_automata"
+ }
+ ]
+ }
},
"edition": "2021",
"version": "1.9.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"bumpalo 3.14.0": {
"name": "bumpalo",
"version": "3.14.0",
+ "package_url": "https://github.com/fitzgen/bumpalo",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bumpalo/3.14.0/download",
+ "url": "https://static.crates.io/crates/bumpalo/3.14.0/download",
"sha256": "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
}
},
@@ -910,9 +1152,12 @@
"Library": {
"crate_name": "bumpalo",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -924,14 +1169,20 @@
"edition": "2021",
"version": "3.14.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"byteorder 1.5.0": {
"name": "byteorder",
"version": "1.5.0",
+ "package_url": "https://github.com/BurntSushi/byteorder",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/byteorder/1.5.0/download",
+ "url": "https://static.crates.io/crates/byteorder/1.5.0/download",
"sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
}
},
@@ -940,9 +1191,12 @@
"Library": {
"crate_name": "byteorder",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -961,14 +1215,20 @@
"edition": "2021",
"version": "1.5.0"
},
- "license": "Unlicense OR MIT"
+ "license": "Unlicense OR MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"bytes 1.5.0": {
"name": "bytes",
"version": "1.5.0",
+ "package_url": "https://github.com/tokio-rs/bytes",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bytes/1.5.0/download",
+ "url": "https://static.crates.io/crates/bytes/1.5.0/download",
"sha256": "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
}
},
@@ -977,9 +1237,12 @@
"Library": {
"crate_name": "bytes",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -998,14 +1261,19 @@
"edition": "2018",
"version": "1.5.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"cc 1.0.83": {
"name": "cc",
"version": "1.0.83",
+ "package_url": "https://github.com/rust-lang/cc-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/cc/1.0.83/download",
+ "url": "https://static.crates.io/crates/cc/1.0.83/download",
"sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
}
},
@@ -1014,18 +1282,24 @@
"Library": {
"crate_name": "cc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "gcc-shim",
"crate_root": "src/bin/gcc-shim.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1048,14 +1322,20 @@
"edition": "2018",
"version": "1.0.83"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/cfg-if/1.0.0/download",
+ "url": "https://static.crates.io/crates/cfg-if/1.0.0/download",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
}
},
@@ -1064,9 +1344,12 @@
"Library": {
"crate_name": "cfg_if",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1078,14 +1361,20 @@
"edition": "2018",
"version": "1.0.0"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"chrono 0.4.31": {
"name": "chrono",
"version": "0.4.31",
+ "package_url": "https://github.com/chronotope/chrono",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/chrono/0.4.31/download",
+ "url": "https://static.crates.io/crates/chrono/0.4.31/download",
"sha256": "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
}
},
@@ -1094,9 +1383,12 @@
"Library": {
"crate_name": "chrono",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1124,37 +1416,203 @@
}
],
"selects": {
- "cfg(target_os = \"android\")": [
- {
- "id": "android-tzdata 0.1.1",
- "target": "android_tzdata"
- }
- ],
- "cfg(unix)": [
+ "aarch64-apple-darwin": [
{
"id": "iana-time-zone 0.1.59",
"target": "iana_time_zone"
}
],
- "cfg(windows)": [
+ "aarch64-apple-ios": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "aarch64-apple-ios-sim": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "aarch64-fuchsia": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "aarch64-linux-android": [
+ {
+ "id": "android-tzdata 0.1.1",
+ "target": "android_tzdata"
+ },
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "aarch64-pc-windows-msvc": [
{
"id": "windows-targets 0.48.5",
"target": "windows_targets"
}
+ ],
+ "aarch64-unknown-linux-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "aarch64-unknown-nixos-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "aarch64-unknown-nto-qnx710": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "arm-unknown-linux-gnueabi": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "armv7-linux-androideabi": [
+ {
+ "id": "android-tzdata 0.1.1",
+ "target": "android_tzdata"
+ },
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "armv7-unknown-linux-gnueabi": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "i686-apple-darwin": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "i686-linux-android": [
+ {
+ "id": "android-tzdata 0.1.1",
+ "target": "android_tzdata"
+ },
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "i686-pc-windows-msvc": [
+ {
+ "id": "windows-targets 0.48.5",
+ "target": "windows_targets"
+ }
+ ],
+ "i686-unknown-freebsd": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "i686-unknown-linux-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "powerpc-unknown-linux-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "s390x-unknown-linux-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-apple-darwin": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-apple-ios": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-fuchsia": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-linux-android": [
+ {
+ "id": "android-tzdata 0.1.1",
+ "target": "android_tzdata"
+ },
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-pc-windows-msvc": [
+ {
+ "id": "windows-targets 0.48.5",
+ "target": "windows_targets"
+ }
+ ],
+ "x86_64-unknown-freebsd": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-unknown-linux-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
+ ],
+ "x86_64-unknown-nixos-gnu": [
+ {
+ "id": "iana-time-zone 0.1.59",
+ "target": "iana_time_zone"
+ }
]
}
},
"edition": "2021",
"version": "0.4.31"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE.txt"
},
"clap 4.4.16": {
"name": "clap",
"version": "4.4.16",
+ "package_url": "https://github.com/clap-rs/clap",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/clap/4.4.16/download",
+ "url": "https://static.crates.io/crates/clap/4.4.16/download",
"sha256": "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445"
}
},
@@ -1163,18 +1621,24 @@
"Library": {
"crate_name": "clap",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "stdio-fixture",
"crate_root": "src/bin/stdio-fixture.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1209,14 +1673,20 @@
"edition": "2021",
"version": "4.4.16"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"clap_builder 4.4.16": {
"name": "clap_builder",
"version": "4.4.16",
+ "package_url": "https://github.com/clap-rs/clap",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/clap_builder/4.4.16/download",
+ "url": "https://static.crates.io/crates/clap_builder/4.4.16/download",
"sha256": "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb"
}
},
@@ -1225,9 +1695,12 @@
"Library": {
"crate_name": "clap_builder",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1277,14 +1750,20 @@
"edition": "2021",
"version": "4.4.16"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"clap_complete 4.4.6": {
"name": "clap_complete",
"version": "4.4.6",
+ "package_url": "https://github.com/clap-rs/clap/tree/master/clap_complete",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/clap_complete/4.4.6/download",
+ "url": "https://static.crates.io/crates/clap_complete/4.4.6/download",
"sha256": "97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd"
}
},
@@ -1293,9 +1772,12 @@
"Library": {
"crate_name": "clap_complete",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1322,14 +1804,20 @@
"edition": "2021",
"version": "4.4.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"clap_lex 0.6.0": {
"name": "clap_lex",
"version": "0.6.0",
+ "package_url": "https://github.com/clap-rs/clap/tree/master/clap_lex",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/clap_lex/0.6.0/download",
+ "url": "https://static.crates.io/crates/clap_lex/0.6.0/download",
"sha256": "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
}
},
@@ -1338,9 +1826,12 @@
"Library": {
"crate_name": "clap_lex",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1352,14 +1843,20 @@
"edition": "2021",
"version": "0.6.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"colorchoice 1.0.0": {
"name": "colorchoice",
"version": "1.0.0",
+ "package_url": "https://github.com/rust-cli/anstyle",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/colorchoice/1.0.0/download",
+ "url": "https://static.crates.io/crates/colorchoice/1.0.0/download",
"sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
}
},
@@ -1368,9 +1865,12 @@
"Library": {
"crate_name": "colorchoice",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1382,20 +1882,29 @@
"edition": "2021",
"version": "1.0.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"compile_with_bazel 0.0.0": {
"name": "compile_with_bazel",
"version": "0.0.0",
+ "package_url": null,
"repository": null,
"targets": [
{
"Library": {
"crate_name": "compile_with_bazel",
"crate_root": "fake_lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1420,14 +1929,17 @@
"edition": "2015",
"version": "0.0.0"
},
- "license": null
+ "license": null,
+ "license_ids": [],
+ "license_file": null
},
"core-foundation-sys 0.8.6": {
"name": "core-foundation-sys",
"version": "0.8.6",
+ "package_url": "https://github.com/servo/core-foundation-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/core-foundation-sys/0.8.6/download",
+ "url": "https://static.crates.io/crates/core-foundation-sys/0.8.6/download",
"sha256": "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
}
},
@@ -1436,9 +1948,12 @@
"Library": {
"crate_name": "core_foundation_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1457,14 +1972,20 @@
"edition": "2018",
"version": "0.8.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"cpufeatures 0.2.12": {
"name": "cpufeatures",
"version": "0.2.12",
+ "package_url": "https://github.com/RustCrypto/utils",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/cpufeatures/0.2.12/download",
+ "url": "https://static.crates.io/crates/cpufeatures/0.2.12/download",
"sha256": "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
}
},
@@ -1473,9 +1994,12 @@
"Library": {
"crate_name": "cpufeatures",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1516,14 +2040,20 @@
"edition": "2018",
"version": "0.2.12"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"crossbeam-channel 0.5.11": {
"name": "crossbeam-channel",
"version": "0.5.11",
+ "package_url": "https://github.com/crossbeam-rs/crossbeam",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/crossbeam-channel/0.5.11/download",
+ "url": "https://static.crates.io/crates/crossbeam-channel/0.5.11/download",
"sha256": "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
}
},
@@ -1532,9 +2062,12 @@
"Library": {
"crate_name": "crossbeam_channel",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1562,14 +2095,20 @@
"edition": "2021",
"version": "0.5.11"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"crossbeam-deque 0.8.5": {
"name": "crossbeam-deque",
"version": "0.8.5",
+ "package_url": "https://github.com/crossbeam-rs/crossbeam",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/crossbeam-deque/0.8.5/download",
+ "url": "https://static.crates.io/crates/crossbeam-deque/0.8.5/download",
"sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
}
},
@@ -1578,9 +2117,12 @@
"Library": {
"crate_name": "crossbeam_deque",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1612,14 +2154,20 @@
"edition": "2021",
"version": "0.8.5"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"crossbeam-epoch 0.9.18": {
"name": "crossbeam-epoch",
"version": "0.9.18",
+ "package_url": "https://github.com/crossbeam-rs/crossbeam",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/crossbeam-epoch/0.9.18/download",
+ "url": "https://static.crates.io/crates/crossbeam-epoch/0.9.18/download",
"sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
}
},
@@ -1628,9 +2176,12 @@
"Library": {
"crate_name": "crossbeam_epoch",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1658,14 +2209,20 @@
"edition": "2021",
"version": "0.9.18"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"crossbeam-utils 0.8.19": {
"name": "crossbeam-utils",
"version": "0.8.19",
+ "package_url": "https://github.com/crossbeam-rs/crossbeam",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/crossbeam-utils/0.8.19/download",
+ "url": "https://static.crates.io/crates/crossbeam-utils/0.8.19/download",
"sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
}
},
@@ -1674,18 +2231,24 @@
"Library": {
"crate_name": "crossbeam_utils",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1717,14 +2280,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"crypto-common 0.1.6": {
"name": "crypto-common",
"version": "0.1.6",
+ "package_url": "https://github.com/RustCrypto/traits",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/crypto-common/0.1.6/download",
+ "url": "https://static.crates.io/crates/crypto-common/0.1.6/download",
"sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
}
},
@@ -1733,9 +2302,12 @@
"Library": {
"crate_name": "crypto_common",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1766,14 +2338,20 @@
"edition": "2018",
"version": "0.1.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"data-encoding 2.5.0": {
"name": "data-encoding",
"version": "2.5.0",
+ "package_url": "https://github.com/ia0/data-encoding",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/data-encoding/2.5.0/download",
+ "url": "https://static.crates.io/crates/data-encoding/2.5.0/download",
"sha256": "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
}
},
@@ -1782,9 +2360,12 @@
"Library": {
"crate_name": "data_encoding",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1804,14 +2385,19 @@
"edition": "2018",
"version": "2.5.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"digest 0.10.7": {
"name": "digest",
"version": "0.10.7",
+ "package_url": "https://github.com/RustCrypto/traits",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/digest/0.10.7/download",
+ "url": "https://static.crates.io/crates/digest/0.10.7/download",
"sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
}
},
@@ -1820,9 +2406,12 @@
"Library": {
"crate_name": "digest",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1857,14 +2446,20 @@
"edition": "2018",
"version": "0.10.7"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"either 1.9.0": {
"name": "either",
"version": "1.9.0",
+ "package_url": "https://github.com/bluss/either",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/either/1.9.0/download",
+ "url": "https://static.crates.io/crates/either/1.9.0/download",
"sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
}
},
@@ -1873,9 +2468,12 @@
"Library": {
"crate_name": "either",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1894,14 +2492,20 @@
"edition": "2018",
"version": "1.9.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"elasticlunr-rs 3.0.2": {
"name": "elasticlunr-rs",
"version": "3.0.2",
+ "package_url": "https://github.com/mattico/elasticlunr-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/elasticlunr-rs/3.0.2/download",
+ "url": "https://static.crates.io/crates/elasticlunr-rs/3.0.2/download",
"sha256": "41e83863a500656dfa214fee6682de9c5b9f03de6860fec531235ed2ae9f6571"
}
},
@@ -1910,9 +2514,12 @@
"Library": {
"crate_name": "elasticlunr",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1950,14 +2557,20 @@
},
"version": "3.0.2"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"env_logger 0.10.1": {
"name": "env_logger",
"version": "0.10.1",
+ "package_url": "https://github.com/rust-cli/env_logger",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/env_logger/0.10.1/download",
+ "url": "https://static.crates.io/crates/env_logger/0.10.1/download",
"sha256": "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
}
},
@@ -1966,9 +2579,12 @@
"Library": {
"crate_name": "env_logger",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2015,14 +2631,20 @@
"edition": "2021",
"version": "0.10.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"equivalent 1.0.1": {
"name": "equivalent",
"version": "1.0.1",
+ "package_url": "https://github.com/cuviper/equivalent",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/equivalent/1.0.1/download",
+ "url": "https://static.crates.io/crates/equivalent/1.0.1/download",
"sha256": "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
}
},
@@ -2031,9 +2653,12 @@
"Library": {
"crate_name": "equivalent",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2045,14 +2670,20 @@
"edition": "2015",
"version": "1.0.1"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"errno 0.3.8": {
"name": "errno",
"version": "0.3.8",
+ "package_url": "https://github.com/lambda-fairy/rust-errno",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/errno/0.3.8/download",
+ "url": "https://static.crates.io/crates/errno/0.3.8/download",
"sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
}
},
@@ -2061,9 +2692,12 @@
"Library": {
"crate_name": "errno",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2110,14 +2744,20 @@
"edition": "2018",
"version": "0.3.8"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"fastrand 2.0.1": {
"name": "fastrand",
"version": "2.0.1",
+ "package_url": "https://github.com/smol-rs/fastrand",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/fastrand/2.0.1/download",
+ "url": "https://static.crates.io/crates/fastrand/2.0.1/download",
"sha256": "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
}
},
@@ -2126,9 +2766,12 @@
"Library": {
"crate_name": "fastrand",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2148,14 +2791,20 @@
"edition": "2018",
"version": "2.0.1"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"filetime 0.2.23": {
"name": "filetime",
"version": "0.2.23",
+ "package_url": "https://github.com/alexcrichton/filetime",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/filetime/0.2.23/download",
+ "url": "https://static.crates.io/crates/filetime/0.2.23/download",
"sha256": "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
}
},
@@ -2164,9 +2813,12 @@
"Library": {
"crate_name": "filetime",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2206,14 +2858,20 @@
"edition": "2018",
"version": "0.2.23"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"fixedbitset 0.4.2": {
"name": "fixedbitset",
"version": "0.4.2",
+ "package_url": "https://github.com/petgraph/fixedbitset",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/fixedbitset/0.4.2/download",
+ "url": "https://static.crates.io/crates/fixedbitset/0.4.2/download",
"sha256": "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
}
},
@@ -2222,9 +2880,12 @@
"Library": {
"crate_name": "fixedbitset",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2236,14 +2897,20 @@
"edition": "2015",
"version": "0.4.2"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"fnv 1.0.7": {
"name": "fnv",
"version": "1.0.7",
+ "package_url": "https://github.com/servo/rust-fnv",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/fnv/1.0.7/download",
+ "url": "https://static.crates.io/crates/fnv/1.0.7/download",
"sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
}
},
@@ -2252,9 +2919,12 @@
"Library": {
"crate_name": "fnv",
"crate_root": "lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2273,14 +2943,20 @@
"edition": "2015",
"version": "1.0.7"
},
- "license": "Apache-2.0 / MIT"
+ "license": "Apache-2.0 / MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"form_urlencoded 1.2.1": {
"name": "form_urlencoded",
"version": "1.2.1",
+ "package_url": "https://github.com/servo/rust-url",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/form_urlencoded/1.2.1/download",
+ "url": "https://static.crates.io/crates/form_urlencoded/1.2.1/download",
"sha256": "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
}
},
@@ -2289,9 +2965,12 @@
"Library": {
"crate_name": "form_urlencoded",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2320,14 +2999,20 @@
"edition": "2018",
"version": "1.2.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"fsevent-sys 4.1.0": {
"name": "fsevent-sys",
"version": "4.1.0",
+ "package_url": "https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/fsevent-sys/4.1.0/download",
+ "url": "https://static.crates.io/crates/fsevent-sys/4.1.0/download",
"sha256": "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
}
},
@@ -2336,9 +3021,12 @@
"Library": {
"crate_name": "fsevent_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2359,14 +3047,19 @@
"edition": "2018",
"version": "4.1.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"futf 0.1.5": {
"name": "futf",
"version": "0.1.5",
+ "package_url": "https://github.com/servo/futf",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futf/0.1.5/download",
+ "url": "https://static.crates.io/crates/futf/0.1.5/download",
"sha256": "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
}
},
@@ -2375,9 +3068,12 @@
"Library": {
"crate_name": "futf",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2402,14 +3098,20 @@
"edition": "2015",
"version": "0.1.5"
},
- "license": "MIT / Apache-2.0"
+ "license": "MIT / Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"futures-channel 0.3.30": {
"name": "futures-channel",
"version": "0.3.30",
+ "package_url": "https://github.com/rust-lang/futures-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futures-channel/0.3.30/download",
+ "url": "https://static.crates.io/crates/futures-channel/0.3.30/download",
"sha256": "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
}
},
@@ -2418,9 +3120,12 @@
"Library": {
"crate_name": "futures_channel",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2455,14 +3160,20 @@
"edition": "2018",
"version": "0.3.30"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"futures-core 0.3.30": {
"name": "futures-core",
"version": "0.3.30",
+ "package_url": "https://github.com/rust-lang/futures-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futures-core/0.3.30/download",
+ "url": "https://static.crates.io/crates/futures-core/0.3.30/download",
"sha256": "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
}
},
@@ -2471,9 +3182,12 @@
"Library": {
"crate_name": "futures_core",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2493,14 +3207,20 @@
"edition": "2018",
"version": "0.3.30"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"futures-macro 0.3.30": {
"name": "futures-macro",
"version": "0.3.30",
+ "package_url": "https://github.com/rust-lang/futures-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futures-macro/0.3.30/download",
+ "url": "https://static.crates.io/crates/futures-macro/0.3.30/download",
"sha256": "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
}
},
@@ -2509,9 +3229,12 @@
"ProcMacro": {
"crate_name": "futures_macro",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2540,14 +3263,20 @@
"edition": "2018",
"version": "0.3.30"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"futures-sink 0.3.30": {
"name": "futures-sink",
"version": "0.3.30",
+ "package_url": "https://github.com/rust-lang/futures-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futures-sink/0.3.30/download",
+ "url": "https://static.crates.io/crates/futures-sink/0.3.30/download",
"sha256": "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
}
},
@@ -2556,9 +3285,12 @@
"Library": {
"crate_name": "futures_sink",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2578,14 +3310,20 @@
"edition": "2018",
"version": "0.3.30"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"futures-task 0.3.30": {
"name": "futures-task",
"version": "0.3.30",
+ "package_url": "https://github.com/rust-lang/futures-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futures-task/0.3.30/download",
+ "url": "https://static.crates.io/crates/futures-task/0.3.30/download",
"sha256": "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
}
},
@@ -2594,9 +3332,12 @@
"Library": {
"crate_name": "futures_task",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2615,14 +3356,20 @@
"edition": "2018",
"version": "0.3.30"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"futures-util 0.3.30": {
"name": "futures-util",
"version": "0.3.30",
+ "package_url": "https://github.com/rust-lang/futures-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/futures-util/0.3.30/download",
+ "url": "https://static.crates.io/crates/futures-util/0.3.30/download",
"sha256": "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
}
},
@@ -2631,9 +3378,12 @@
"Library": {
"crate_name": "futures_util",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2697,14 +3447,20 @@
},
"version": "0.3.30"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"generic-array 0.14.7": {
"name": "generic-array",
"version": "0.14.7",
+ "package_url": "https://github.com/fizyk20/generic-array.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/generic-array/0.14.7/download",
+ "url": "https://static.crates.io/crates/generic-array/0.14.7/download",
"sha256": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
}
},
@@ -2713,18 +3469,24 @@
"Library": {
"crate_name": "generic_array",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2769,14 +3531,19 @@
"selects": {}
}
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"getrandom 0.2.12": {
"name": "getrandom",
"version": "0.2.12",
+ "package_url": "https://github.com/rust-random/getrandom",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/getrandom/0.2.12/download",
+ "url": "https://static.crates.io/crates/getrandom/0.2.12/download",
"sha256": "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
}
},
@@ -2785,9 +3552,12 @@
"Library": {
"crate_name": "getrandom",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2827,14 +3597,20 @@
"edition": "2018",
"version": "0.2.12"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"gimli 0.28.1": {
"name": "gimli",
"version": "0.28.1",
+ "package_url": "https://github.com/gimli-rs/gimli",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/gimli/0.28.1/download",
+ "url": "https://static.crates.io/crates/gimli/0.28.1/download",
"sha256": "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
}
},
@@ -2843,9 +3619,12 @@
"Library": {
"crate_name": "gimli",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2857,14 +3636,20 @@
"edition": "2018",
"version": "0.28.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"globset 0.4.14": {
"name": "globset",
"version": "0.4.14",
+ "package_url": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/globset/0.4.14/download",
+ "url": "https://static.crates.io/crates/globset/0.4.14/download",
"sha256": "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
}
},
@@ -2873,9 +3658,12 @@
"Library": {
"crate_name": "globset",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2919,14 +3707,20 @@
"edition": "2021",
"version": "0.4.14"
},
- "license": "Unlicense OR MIT"
+ "license": "Unlicense OR MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"h2 0.3.23": {
"name": "h2",
"version": "0.3.23",
+ "package_url": "https://github.com/hyperium/h2",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/h2/0.3.23/download",
+ "url": "https://static.crates.io/crates/h2/0.3.23/download",
"sha256": "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7"
}
},
@@ -2935,9 +3729,12 @@
"Library": {
"crate_name": "h2",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -2998,14 +3795,19 @@
"edition": "2018",
"version": "0.3.23"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"handlebars 4.5.0": {
"name": "handlebars",
"version": "4.5.0",
+ "package_url": "https://github.com/sunng87/handlebars-rust",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/handlebars/4.5.0/download",
+ "url": "https://static.crates.io/crates/handlebars/4.5.0/download",
"sha256": "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225"
}
},
@@ -3014,18 +3816,24 @@
"Library": {
"crate_name": "handlebars",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "handlebars-cli",
"crate_root": "src/cli.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3077,14 +3885,19 @@
},
"version": "4.5.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"hashbrown 0.14.3": {
"name": "hashbrown",
"version": "0.14.3",
+ "package_url": "https://github.com/rust-lang/hashbrown",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/hashbrown/0.14.3/download",
+ "url": "https://static.crates.io/crates/hashbrown/0.14.3/download",
"sha256": "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
}
},
@@ -3093,9 +3906,12 @@
"Library": {
"crate_name": "hashbrown",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3113,14 +3929,20 @@
"edition": "2021",
"version": "0.14.3"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"headers 0.3.9": {
"name": "headers",
"version": "0.3.9",
+ "package_url": "https://github.com/hyperium/headers",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/headers/0.3.9/download",
+ "url": "https://static.crates.io/crates/headers/0.3.9/download",
"sha256": "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
}
},
@@ -3129,9 +3951,12 @@
"Library": {
"crate_name": "headers",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3176,14 +4001,19 @@
"edition": "2015",
"version": "0.3.9"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"headers-core 0.2.0": {
"name": "headers-core",
"version": "0.2.0",
+ "package_url": "https://github.com/hyperium/headers",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/headers-core/0.2.0/download",
+ "url": "https://static.crates.io/crates/headers-core/0.2.0/download",
"sha256": "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
}
},
@@ -3192,9 +4022,12 @@
"Library": {
"crate_name": "headers_core",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3215,14 +4048,19 @@
"edition": "2015",
"version": "0.2.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"heck 0.4.1": {
"name": "heck",
"version": "0.4.1",
+ "package_url": "https://github.com/withoutboats/heck",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/heck/0.4.1/download",
+ "url": "https://static.crates.io/crates/heck/0.4.1/download",
"sha256": "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
}
},
@@ -3231,9 +4069,12 @@
"Library": {
"crate_name": "heck",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3251,14 +4092,20 @@
"edition": "2018",
"version": "0.4.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/hermit-abi/0.3.3/download",
+ "url": "https://static.crates.io/crates/hermit-abi/0.3.3/download",
"sha256": "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
}
},
@@ -3267,9 +4114,12 @@
"Library": {
"crate_name": "hermit_abi",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3281,14 +4131,20 @@
"edition": "2021",
"version": "0.3.3"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"home 0.5.9": {
"name": "home",
"version": "0.5.9",
+ "package_url": "https://github.com/rust-lang/cargo",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/home/0.5.9/download",
+ "url": "https://static.crates.io/crates/home/0.5.9/download",
"sha256": "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
}
},
@@ -3297,9 +4153,12 @@
"Library": {
"crate_name": "home",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3322,14 +4181,20 @@
"edition": "2021",
"version": "0.5.9"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"html5ever 0.26.0": {
"name": "html5ever",
"version": "0.26.0",
+ "package_url": "https://github.com/servo/html5ever",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/html5ever/0.26.0/download",
+ "url": "https://static.crates.io/crates/html5ever/0.26.0/download",
"sha256": "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
}
},
@@ -3338,18 +4203,24 @@
"Library": {
"crate_name": "html5ever",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3404,14 +4275,20 @@
"selects": {}
}
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"http 0.2.11": {
"name": "http",
"version": "0.2.11",
+ "package_url": "https://github.com/hyperium/http",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/http/0.2.11/download",
+ "url": "https://static.crates.io/crates/http/0.2.11/download",
"sha256": "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
}
},
@@ -3420,9 +4297,12 @@
"Library": {
"crate_name": "http",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3451,14 +4331,20 @@
"edition": "2018",
"version": "0.2.11"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"http-body 0.4.6": {
"name": "http-body",
"version": "0.4.6",
+ "package_url": "https://github.com/hyperium/http-body",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/http-body/0.4.6/download",
+ "url": "https://static.crates.io/crates/http-body/0.4.6/download",
"sha256": "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
}
},
@@ -3467,9 +4353,12 @@
"Library": {
"crate_name": "http_body",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3498,14 +4387,19 @@
"edition": "2018",
"version": "0.4.6"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "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://crates.io/api/v1/crates/httparse/1.8.0/download",
+ "url": "https://static.crates.io/crates/httparse/1.8.0/download",
"sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
}
},
@@ -3514,18 +4408,24 @@
"Library": {
"crate_name": "httparse",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3558,14 +4458,20 @@
"**"
]
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"httpdate 1.0.3": {
"name": "httpdate",
"version": "1.0.3",
+ "package_url": "https://github.com/pyfisch/httpdate",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/httpdate/1.0.3/download",
+ "url": "https://static.crates.io/crates/httpdate/1.0.3/download",
"sha256": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
}
},
@@ -3574,9 +4480,12 @@
"Library": {
"crate_name": "httpdate",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3588,14 +4497,20 @@
"edition": "2021",
"version": "1.0.3"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/humantime/2.1.0/download",
+ "url": "https://static.crates.io/crates/humantime/2.1.0/download",
"sha256": "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
}
},
@@ -3604,9 +4519,12 @@
"Library": {
"crate_name": "humantime",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3618,14 +4536,20 @@
"edition": "2018",
"version": "2.1.0"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"hyper 0.14.28": {
"name": "hyper",
"version": "0.14.28",
+ "package_url": "https://github.com/hyperium/hyper",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/hyper/0.14.28/download",
+ "url": "https://static.crates.io/crates/hyper/0.14.28/download",
"sha256": "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
}
},
@@ -3634,9 +4558,12 @@
"Library": {
"crate_name": "hyper",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3731,14 +4658,19 @@
"edition": "2018",
"version": "0.14.28"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"iana-time-zone 0.1.59": {
"name": "iana-time-zone",
"version": "0.1.59",
+ "package_url": "https://github.com/strawlab/iana-time-zone",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/iana-time-zone/0.1.59/download",
+ "url": "https://static.crates.io/crates/iana-time-zone/0.1.59/download",
"sha256": "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
}
},
@@ -3747,9 +4679,12 @@
"Library": {
"crate_name": "iana_time_zone",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3806,14 +4741,20 @@
"edition": "2018",
"version": "0.1.59"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"iana-time-zone-haiku 0.1.2": {
"name": "iana-time-zone-haiku",
"version": "0.1.2",
+ "package_url": "https://github.com/strawlab/iana-time-zone",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download",
+ "url": "https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download",
"sha256": "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
}
},
@@ -3822,18 +4763,24 @@
"Library": {
"crate_name": "iana_time_zone_haiku",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3868,14 +4815,20 @@
"selects": {}
}
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"idna 0.5.0": {
"name": "idna",
"version": "0.5.0",
+ "package_url": "https://github.com/servo/rust-url/",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/idna/0.5.0/download",
+ "url": "https://static.crates.io/crates/idna/0.5.0/download",
"sha256": "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
}
},
@@ -3884,9 +4837,12 @@
"Library": {
"crate_name": "idna",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3919,14 +4875,20 @@
"edition": "2018",
"version": "0.5.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"ignore 0.4.22": {
"name": "ignore",
"version": "0.4.22",
+ "package_url": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ignore/0.4.22/download",
+ "url": "https://static.crates.io/crates/ignore/0.4.22/download",
"sha256": "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
}
},
@@ -3935,9 +4897,12 @@
"Library": {
"crate_name": "ignore",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -3989,14 +4954,20 @@
"edition": "2021",
"version": "0.4.22"
},
- "license": "Unlicense OR MIT"
+ "license": "Unlicense OR MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"indexmap 2.1.0": {
"name": "indexmap",
"version": "2.1.0",
+ "package_url": "https://github.com/bluss/indexmap",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/indexmap/2.1.0/download",
+ "url": "https://static.crates.io/crates/indexmap/2.1.0/download",
"sha256": "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
}
},
@@ -4005,9 +4976,12 @@
"Library": {
"crate_name": "indexmap",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4039,14 +5013,20 @@
"edition": "2021",
"version": "2.1.0"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"inotify 0.9.6": {
"name": "inotify",
"version": "0.9.6",
+ "package_url": "https://github.com/hannobraun/inotify",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/inotify/0.9.6/download",
+ "url": "https://static.crates.io/crates/inotify/0.9.6/download",
"sha256": "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
}
},
@@ -4055,9 +5035,12 @@
"Library": {
"crate_name": "inotify",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4086,14 +5069,19 @@
"edition": "2018",
"version": "0.9.6"
},
- "license": "ISC"
+ "license": "ISC",
+ "license_ids": [
+ "ISC"
+ ],
+ "license_file": "LICENSE"
},
"inotify-sys 0.1.5": {
"name": "inotify-sys",
"version": "0.1.5",
+ "package_url": "https://github.com/hannobraun/inotify-sys",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/inotify-sys/0.1.5/download",
+ "url": "https://static.crates.io/crates/inotify-sys/0.1.5/download",
"sha256": "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
}
},
@@ -4102,9 +5090,12 @@
"Library": {
"crate_name": "inotify_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4125,14 +5116,19 @@
"edition": "2015",
"version": "0.1.5"
},
- "license": "ISC"
+ "license": "ISC",
+ "license_ids": [
+ "ISC"
+ ],
+ "license_file": "LICENSE"
},
"is-terminal 0.4.10": {
"name": "is-terminal",
"version": "0.4.10",
+ "package_url": "https://github.com/sunfishcode/is-terminal",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/is-terminal/0.4.10/download",
+ "url": "https://static.crates.io/crates/is-terminal/0.4.10/download",
"sha256": "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
}
},
@@ -4141,9 +5137,12 @@
"Library": {
"crate_name": "is_terminal",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4178,14 +5177,19 @@
"edition": "2018",
"version": "0.4.10"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE-MIT"
},
"itertools 0.10.5": {
"name": "itertools",
"version": "0.10.5",
+ "package_url": "https://github.com/rust-itertools/itertools",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/itertools/0.10.5/download",
+ "url": "https://static.crates.io/crates/itertools/0.10.5/download",
"sha256": "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
}
},
@@ -4194,9 +5198,12 @@
"Library": {
"crate_name": "itertools",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4223,14 +5230,20 @@
"edition": "2018",
"version": "0.10.5"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"itoa 1.0.10": {
"name": "itoa",
"version": "1.0.10",
+ "package_url": "https://github.com/dtolnay/itoa",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/itoa/1.0.10/download",
+ "url": "https://static.crates.io/crates/itoa/1.0.10/download",
"sha256": "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
}
},
@@ -4239,9 +5252,12 @@
"Library": {
"crate_name": "itoa",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4253,14 +5269,20 @@
"edition": "2018",
"version": "1.0.10"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"js-sys 0.3.66": {
"name": "js-sys",
"version": "0.3.66",
+ "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/js-sys/0.3.66/download",
+ "url": "https://static.crates.io/crates/js-sys/0.3.66/download",
"sha256": "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
}
},
@@ -4269,9 +5291,12 @@
"Library": {
"crate_name": "js_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4292,14 +5317,20 @@
"edition": "2018",
"version": "0.3.66"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"kqueue 1.0.8": {
"name": "kqueue",
"version": "1.0.8",
+ "package_url": "https://gitlab.com/rust-kqueue/rust-kqueue",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/kqueue/1.0.8/download",
+ "url": "https://static.crates.io/crates/kqueue/1.0.8/download",
"sha256": "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
}
},
@@ -4308,9 +5339,12 @@
"Library": {
"crate_name": "kqueue",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4335,14 +5369,19 @@
"edition": "2018",
"version": "1.0.8"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"kqueue-sys 1.0.4": {
"name": "kqueue-sys",
"version": "1.0.4",
+ "package_url": "https://gitlab.com/rust-kqueue/rust-kqueue-sys",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/kqueue-sys/1.0.4/download",
+ "url": "https://static.crates.io/crates/kqueue-sys/1.0.4/download",
"sha256": "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
}
},
@@ -4351,9 +5390,12 @@
"Library": {
"crate_name": "kqueue_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4378,14 +5420,19 @@
"edition": "2018",
"version": "1.0.4"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"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://crates.io/api/v1/crates/lazy_static/1.4.0/download",
+ "url": "https://static.crates.io/crates/lazy_static/1.4.0/download",
"sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
}
},
@@ -4394,9 +5441,12 @@
"Library": {
"crate_name": "lazy_static",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4408,14 +5458,20 @@
"edition": "2015",
"version": "1.4.0"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"libc 0.2.152": {
"name": "libc",
"version": "0.2.152",
+ "package_url": "https://github.com/rust-lang/libc",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/libc/0.2.152/download",
+ "url": "https://static.crates.io/crates/libc/0.2.152/download",
"sha256": "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
}
},
@@ -4424,18 +5480,24 @@
"Library": {
"crate_name": "libc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4547,14 +5609,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"linux-raw-sys 0.4.12": {
"name": "linux-raw-sys",
"version": "0.4.12",
+ "package_url": "https://github.com/sunfishcode/linux-raw-sys",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/linux-raw-sys/0.4.12/download",
+ "url": "https://static.crates.io/crates/linux-raw-sys/0.4.12/download",
"sha256": "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
}
},
@@ -4563,9 +5631,12 @@
"Library": {
"crate_name": "linux_raw_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4614,14 +5685,20 @@
"edition": "2021",
"version": "0.4.12"
},
- "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
+ "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT",
+ "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://crates.io/api/v1/crates/lock_api/0.4.11/download",
+ "url": "https://static.crates.io/crates/lock_api/0.4.11/download",
"sha256": "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
}
},
@@ -4630,18 +5707,24 @@
"Library": {
"crate_name": "lock_api",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4687,14 +5770,20 @@
"selects": {}
}
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"log 0.4.20": {
"name": "log",
"version": "0.4.20",
+ "package_url": "https://github.com/rust-lang/log",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/log/0.4.20/download",
+ "url": "https://static.crates.io/crates/log/0.4.20/download",
"sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
}
},
@@ -4703,9 +5792,12 @@
"Library": {
"crate_name": "log",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4723,14 +5815,20 @@
"edition": "2015",
"version": "0.4.20"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"mac 0.1.1": {
"name": "mac",
"version": "0.1.1",
+ "package_url": "https://github.com/reem/rust-mac.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/mac/0.1.1/download",
+ "url": "https://static.crates.io/crates/mac/0.1.1/download",
"sha256": "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
}
},
@@ -4739,9 +5837,12 @@
"Library": {
"crate_name": "mac",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4753,14 +5854,20 @@
"edition": "2015",
"version": "0.1.1"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": null
},
"maplit 1.0.2": {
"name": "maplit",
"version": "1.0.2",
+ "package_url": "https://github.com/bluss/maplit",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/maplit/1.0.2/download",
+ "url": "https://static.crates.io/crates/maplit/1.0.2/download",
"sha256": "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
}
},
@@ -4769,9 +5876,12 @@
"Library": {
"crate_name": "maplit",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4783,14 +5893,20 @@
"edition": "2015",
"version": "1.0.2"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"markup5ever 0.11.0": {
"name": "markup5ever",
"version": "0.11.0",
+ "package_url": "https://github.com/servo/html5ever",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/markup5ever/0.11.0/download",
+ "url": "https://static.crates.io/crates/markup5ever/0.11.0/download",
"sha256": "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
}
},
@@ -4799,18 +5915,24 @@
"Library": {
"crate_name": "markup5ever",
"crate_root": "lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -4865,14 +5987,20 @@
"selects": {}
}
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"mdbook 0.4.36": {
"name": "mdbook",
"version": "0.4.36",
+ "package_url": "https://github.com/rust-lang/mdBook",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/mdbook/0.4.36/download",
+ "url": "https://static.crates.io/crates/mdbook/0.4.36/download",
"sha256": "80992cb0e05f22cc052c99f8e883f1593b891014b96a8b4637fd274d7030c85e"
}
},
@@ -4881,18 +6009,24 @@
"Library": {
"crate_name": "mdbook",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "mdbook",
"crate_root": "src/main.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5026,14 +6160,19 @@
"edition": "2021",
"version": "0.4.36"
},
- "license": "MPL-2.0"
+ "license": "MPL-2.0",
+ "license_ids": [
+ "MPL-2.0"
+ ],
+ "license_file": "LICENSE"
},
"memchr 2.7.1": {
"name": "memchr",
"version": "2.7.1",
+ "package_url": "https://github.com/BurntSushi/memchr",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/memchr/2.7.1/download",
+ "url": "https://static.crates.io/crates/memchr/2.7.1/download",
"sha256": "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
}
},
@@ -5042,9 +6181,12 @@
"Library": {
"crate_name": "memchr",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5064,14 +6206,20 @@
"edition": "2021",
"version": "2.7.1"
},
- "license": "Unlicense OR MIT"
+ "license": "Unlicense OR MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"mime 0.3.17": {
"name": "mime",
"version": "0.3.17",
+ "package_url": "https://github.com/hyperium/mime",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/mime/0.3.17/download",
+ "url": "https://static.crates.io/crates/mime/0.3.17/download",
"sha256": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
}
},
@@ -5080,9 +6228,12 @@
"Library": {
"crate_name": "mime",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5094,14 +6245,20 @@
"edition": "2015",
"version": "0.3.17"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"mime_guess 2.0.4": {
"name": "mime_guess",
"version": "2.0.4",
+ "package_url": "https://github.com/abonander/mime_guess",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/mime_guess/2.0.4/download",
+ "url": "https://static.crates.io/crates/mime_guess/2.0.4/download",
"sha256": "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
}
},
@@ -5110,18 +6267,24 @@
"Library": {
"crate_name": "mime_guess",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5171,14 +6334,19 @@
"selects": {}
}
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"miniz_oxide 0.7.1": {
"name": "miniz_oxide",
"version": "0.7.1",
+ "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/miniz_oxide/0.7.1/download",
+ "url": "https://static.crates.io/crates/miniz_oxide/0.7.1/download",
"sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
}
},
@@ -5187,9 +6355,12 @@
"Library": {
"crate_name": "miniz_oxide",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5210,14 +6381,21 @@
"edition": "2018",
"version": "0.7.1"
},
- "license": "MIT OR Zlib OR Apache-2.0"
+ "license": "MIT OR Zlib OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT",
+ "Zlib"
+ ],
+ "license_file": "LICENSE"
},
"mio 0.8.10": {
"name": "mio",
"version": "0.8.10",
+ "package_url": "https://github.com/tokio-rs/mio",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/mio/0.8.10/download",
+ "url": "https://static.crates.io/crates/mio/0.8.10/download",
"sha256": "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
}
},
@@ -5226,9 +6404,12 @@
"Library": {
"crate_name": "mio",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5307,13 +6488,44 @@
}
},
"deps": {
- "common": [
- {
- "id": "log 0.4.20",
- "target": "log"
- }
- ],
+ "common": [],
"selects": {
+ "aarch64-linux-android": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "aarch64-unknown-linux-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "aarch64-unknown-nixos-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "arm-unknown-linux-gnueabi": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "armv7-linux-androideabi": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "armv7-unknown-linux-gnueabi": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
"cfg(target_os = \"wasi\")": [
{
"id": "libc 0.2.152",
@@ -5335,20 +6547,79 @@
"id": "windows-sys 0.48.0",
"target": "windows_sys"
}
+ ],
+ "i686-linux-android": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "i686-unknown-freebsd": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "i686-unknown-linux-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "powerpc-unknown-linux-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "s390x-unknown-linux-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "x86_64-linux-android": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "x86_64-unknown-freebsd": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "x86_64-unknown-linux-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
+ ],
+ "x86_64-unknown-nixos-gnu": [
+ {
+ "id": "log 0.4.20",
+ "target": "log"
+ }
]
}
},
"edition": "2018",
"version": "0.8.10"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"multimap 0.8.3": {
"name": "multimap",
"version": "0.8.3",
+ "package_url": "https://github.com/havarnov/multimap",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/multimap/0.8.3/download",
+ "url": "https://static.crates.io/crates/multimap/0.8.3/download",
"sha256": "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
}
},
@@ -5357,9 +6628,12 @@
"Library": {
"crate_name": "multimap",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5371,14 +6645,20 @@
"edition": "2015",
"version": "0.8.3"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"new_debug_unreachable 1.0.4": {
"name": "new_debug_unreachable",
"version": "1.0.4",
+ "package_url": "https://github.com/mbrubeck/rust-debug-unreachable",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download",
+ "url": "https://static.crates.io/crates/new_debug_unreachable/1.0.4/download",
"sha256": "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
}
},
@@ -5387,9 +6667,12 @@
"Library": {
"crate_name": "debug_unreachable",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5401,14 +6684,19 @@
"edition": "2018",
"version": "1.0.4"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE-MIT"
},
"normpath 1.1.1": {
"name": "normpath",
"version": "1.1.1",
+ "package_url": "https://github.com/dylni/normpath",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/normpath/1.1.1/download",
+ "url": "https://static.crates.io/crates/normpath/1.1.1/download",
"sha256": "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5"
}
},
@@ -5417,9 +6705,12 @@
"Library": {
"crate_name": "normpath",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5442,14 +6733,20 @@
"edition": "2021",
"version": "1.1.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"notify 6.1.1": {
"name": "notify",
"version": "6.1.1",
+ "package_url": "https://github.com/notify-rs/notify.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/notify/6.1.1/download",
+ "url": "https://static.crates.io/crates/notify/6.1.1/download",
"sha256": "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
}
},
@@ -5458,9 +6755,12 @@
"Library": {
"crate_name": "notify",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5502,6 +6802,12 @@
}
],
"selects": {
+ "aarch64-apple-darwin": [
+ {
+ "id": "fsevent-sys 4.1.0",
+ "target": "fsevent_sys"
+ }
+ ],
"cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\"))": [
{
"id": "kqueue 1.0.8",
@@ -5526,10 +6832,6 @@
{
"id": "bitflags 2.4.1",
"target": "bitflags"
- },
- {
- "id": "fsevent-sys 4.1.0",
- "target": "fsevent_sys"
}
],
"cfg(windows)": [
@@ -5537,20 +6839,37 @@
"id": "windows-sys 0.48.0",
"target": "windows_sys"
}
+ ],
+ "i686-apple-darwin": [
+ {
+ "id": "fsevent-sys 4.1.0",
+ "target": "fsevent_sys"
+ }
+ ],
+ "x86_64-apple-darwin": [
+ {
+ "id": "fsevent-sys 4.1.0",
+ "target": "fsevent_sys"
+ }
]
}
},
"edition": "2021",
"version": "6.1.1"
},
- "license": "CC0-1.0"
+ "license": "CC0-1.0",
+ "license_ids": [
+ "CC0-1.0"
+ ],
+ "license_file": "LICENSE-CC0"
},
"notify-debouncer-mini 0.4.1": {
"name": "notify-debouncer-mini",
"version": "0.4.1",
+ "package_url": "https://github.com/notify-rs/notify.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/notify-debouncer-mini/0.4.1/download",
+ "url": "https://static.crates.io/crates/notify-debouncer-mini/0.4.1/download",
"sha256": "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43"
}
},
@@ -5559,9 +6878,12 @@
"Library": {
"crate_name": "notify_debouncer_mini",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5598,14 +6920,20 @@
"edition": "2021",
"version": "0.4.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"num-traits 0.2.17": {
"name": "num-traits",
"version": "0.2.17",
+ "package_url": "https://github.com/rust-num/num-traits",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/num-traits/0.2.17/download",
+ "url": "https://static.crates.io/crates/num-traits/0.2.17/download",
"sha256": "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
}
},
@@ -5614,18 +6942,24 @@
"Library": {
"crate_name": "num_traits",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5660,14 +6994,20 @@
"selects": {}
}
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"num_cpus 1.16.0": {
"name": "num_cpus",
"version": "1.16.0",
+ "package_url": "https://github.com/seanmonstar/num_cpus",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/num_cpus/1.16.0/download",
+ "url": "https://static.crates.io/crates/num_cpus/1.16.0/download",
"sha256": "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
}
},
@@ -5676,9 +7016,12 @@
"Library": {
"crate_name": "num_cpus",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5707,14 +7050,20 @@
"edition": "2015",
"version": "1.16.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"object 0.32.2": {
"name": "object",
"version": "0.32.2",
+ "package_url": "https://github.com/gimli-rs/object",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/object/0.32.2/download",
+ "url": "https://static.crates.io/crates/object/0.32.2/download",
"sha256": "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
}
},
@@ -5723,9 +7072,12 @@
"Library": {
"crate_name": "object",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5746,14 +7098,20 @@
"edition": "2018",
"version": "0.32.2"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"once_cell 1.19.0": {
"name": "once_cell",
"version": "1.19.0",
+ "package_url": "https://github.com/matklad/once_cell",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/once_cell/1.19.0/download",
+ "url": "https://static.crates.io/crates/once_cell/1.19.0/download",
"sha256": "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
}
},
@@ -5762,9 +7120,12 @@
"Library": {
"crate_name": "once_cell",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5785,14 +7146,20 @@
"edition": "2021",
"version": "1.19.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"opener 0.6.1": {
"name": "opener",
"version": "0.6.1",
+ "package_url": "https://github.com/Seeker14491/opener",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/opener/0.6.1/download",
+ "url": "https://static.crates.io/crates/opener/0.6.1/download",
"sha256": "6c62dcb6174f9cb326eac248f07e955d5d559c272730b6c03e396b443b562788"
}
},
@@ -5801,9 +7168,12 @@
"Library": {
"crate_name": "opener",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5836,14 +7206,20 @@
"edition": "2018",
"version": "0.6.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/parking_lot/0.12.1/download",
+ "url": "https://static.crates.io/crates/parking_lot/0.12.1/download",
"sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
}
},
@@ -5852,9 +7228,12 @@
"Library": {
"crate_name": "parking_lot",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5885,14 +7264,20 @@
"edition": "2018",
"version": "0.12.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"parking_lot_core 0.9.9": {
"name": "parking_lot_core",
"version": "0.9.9",
+ "package_url": "https://github.com/Amanieu/parking_lot",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/parking_lot_core/0.9.9/download",
+ "url": "https://static.crates.io/crates/parking_lot_core/0.9.9/download",
"sha256": "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
}
},
@@ -5901,18 +7286,24 @@
"Library": {
"crate_name": "parking_lot_core",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5965,14 +7356,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pathdiff 0.2.1": {
"name": "pathdiff",
"version": "0.2.1",
+ "package_url": "https://github.com/Manishearth/pathdiff",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pathdiff/0.2.1/download",
+ "url": "https://static.crates.io/crates/pathdiff/0.2.1/download",
"sha256": "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
}
},
@@ -5981,9 +7378,12 @@
"Library": {
"crate_name": "pathdiff",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -5995,14 +7395,20 @@
"edition": "2018",
"version": "0.2.1"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"percent-encoding 2.3.1": {
"name": "percent-encoding",
"version": "2.3.1",
+ "package_url": "https://github.com/servo/rust-url/",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/percent-encoding/2.3.1/download",
+ "url": "https://static.crates.io/crates/percent-encoding/2.3.1/download",
"sha256": "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
}
},
@@ -6011,9 +7417,12 @@
"Library": {
"crate_name": "percent_encoding",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6033,14 +7442,20 @@
"edition": "2018",
"version": "2.3.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pest 2.7.6": {
"name": "pest",
"version": "2.7.6",
+ "package_url": "https://github.com/pest-parser/pest",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pest/2.7.6/download",
+ "url": "https://static.crates.io/crates/pest/2.7.6/download",
"sha256": "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06"
}
},
@@ -6049,9 +7464,12 @@
"Library": {
"crate_name": "pest",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6088,14 +7506,20 @@
"edition": "2021",
"version": "2.7.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pest_derive 2.7.6": {
"name": "pest_derive",
"version": "2.7.6",
+ "package_url": "https://github.com/pest-parser/pest",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pest_derive/2.7.6/download",
+ "url": "https://static.crates.io/crates/pest_derive/2.7.6/download",
"sha256": "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde"
}
},
@@ -6104,9 +7528,12 @@
"ProcMacro": {
"crate_name": "pest_derive",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6138,14 +7565,20 @@
"edition": "2021",
"version": "2.7.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pest_generator 2.7.6": {
"name": "pest_generator",
"version": "2.7.6",
+ "package_url": "https://github.com/pest-parser/pest",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pest_generator/2.7.6/download",
+ "url": "https://static.crates.io/crates/pest_generator/2.7.6/download",
"sha256": "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275"
}
},
@@ -6154,9 +7587,12 @@
"Library": {
"crate_name": "pest_generator",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6199,14 +7635,20 @@
"edition": "2021",
"version": "2.7.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pest_meta 2.7.6": {
"name": "pest_meta",
"version": "2.7.6",
+ "package_url": "https://github.com/pest-parser/pest",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pest_meta/2.7.6/download",
+ "url": "https://static.crates.io/crates/pest_meta/2.7.6/download",
"sha256": "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d"
}
},
@@ -6215,9 +7657,12 @@
"Library": {
"crate_name": "pest_meta",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6248,14 +7693,20 @@
"edition": "2021",
"version": "2.7.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"petgraph 0.6.4": {
"name": "petgraph",
"version": "0.6.4",
+ "package_url": "https://github.com/petgraph/petgraph",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/petgraph/0.6.4/download",
+ "url": "https://static.crates.io/crates/petgraph/0.6.4/download",
"sha256": "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
}
},
@@ -6264,9 +7715,12 @@
"Library": {
"crate_name": "petgraph",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6291,14 +7745,20 @@
"edition": "2018",
"version": "0.6.4"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"phf 0.10.1": {
"name": "phf",
"version": "0.10.1",
+ "package_url": "https://github.com/sfackler/rust-phf",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/phf/0.10.1/download",
+ "url": "https://static.crates.io/crates/phf/0.10.1/download",
"sha256": "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
}
},
@@ -6307,9 +7767,12 @@
"Library": {
"crate_name": "phf",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6337,14 +7800,19 @@
"edition": "2018",
"version": "0.10.1"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": null
},
"phf_codegen 0.10.0": {
"name": "phf_codegen",
"version": "0.10.0",
+ "package_url": "https://github.com/sfackler/rust-phf",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/phf_codegen/0.10.0/download",
+ "url": "https://static.crates.io/crates/phf_codegen/0.10.0/download",
"sha256": "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
}
},
@@ -6353,9 +7821,12 @@
"Library": {
"crate_name": "phf_codegen",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6380,14 +7851,19 @@
"edition": "2018",
"version": "0.10.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": null
},
"phf_generator 0.10.0": {
"name": "phf_generator",
"version": "0.10.0",
+ "package_url": "https://github.com/sfackler/rust-phf",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/phf_generator/0.10.0/download",
+ "url": "https://static.crates.io/crates/phf_generator/0.10.0/download",
"sha256": "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
}
},
@@ -6396,18 +7872,24 @@
"Library": {
"crate_name": "phf_generator",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "gen_hash_test",
"crate_root": "src/bin/gen_hash_test.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6432,14 +7914,19 @@
"edition": "2018",
"version": "0.10.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": null
},
"phf_shared 0.10.0": {
"name": "phf_shared",
"version": "0.10.0",
+ "package_url": "https://github.com/sfackler/rust-phf",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/phf_shared/0.10.0/download",
+ "url": "https://static.crates.io/crates/phf_shared/0.10.0/download",
"sha256": "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
}
},
@@ -6448,9 +7935,12 @@
"Library": {
"crate_name": "phf_shared",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6478,14 +7968,19 @@
"edition": "2018",
"version": "0.10.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": null
},
"pin-project 1.1.3": {
"name": "pin-project",
"version": "1.1.3",
+ "package_url": "https://github.com/taiki-e/pin-project",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pin-project/1.1.3/download",
+ "url": "https://static.crates.io/crates/pin-project/1.1.3/download",
"sha256": "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
}
},
@@ -6494,9 +7989,12 @@
"Library": {
"crate_name": "pin_project",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6517,14 +8015,20 @@
},
"version": "1.1.3"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pin-project-internal 1.1.3": {
"name": "pin-project-internal",
"version": "1.1.3",
+ "package_url": "https://github.com/taiki-e/pin-project",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pin-project-internal/1.1.3/download",
+ "url": "https://static.crates.io/crates/pin-project-internal/1.1.3/download",
"sha256": "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
}
},
@@ -6533,9 +8037,12 @@
"ProcMacro": {
"crate_name": "pin_project_internal",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6564,14 +8071,20 @@
"edition": "2021",
"version": "1.1.3"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"pin-project-lite 0.2.13": {
"name": "pin-project-lite",
"version": "0.2.13",
+ "package_url": "https://github.com/taiki-e/pin-project-lite",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download",
+ "url": "https://static.crates.io/crates/pin-project-lite/0.2.13/download",
"sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
}
},
@@ -6580,9 +8093,12 @@
"Library": {
"crate_name": "pin_project_lite",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6594,14 +8110,20 @@
"edition": "2018",
"version": "0.2.13"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "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://crates.io/api/v1/crates/pin-utils/0.1.0/download",
+ "url": "https://static.crates.io/crates/pin-utils/0.1.0/download",
"sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
}
},
@@ -6610,9 +8132,12 @@
"Library": {
"crate_name": "pin_utils",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6624,14 +8149,20 @@
"edition": "2018",
"version": "0.1.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/ppv-lite86/0.2.17/download",
+ "url": "https://static.crates.io/crates/ppv-lite86/0.2.17/download",
"sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
}
},
@@ -6640,9 +8171,12 @@
"Library": {
"crate_name": "ppv_lite86",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6661,14 +8195,20 @@
"edition": "2018",
"version": "0.2.17"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"precomputed-hash 0.1.1": {
"name": "precomputed-hash",
"version": "0.1.1",
+ "package_url": "https://github.com/emilio/precomputed-hash",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download",
+ "url": "https://static.crates.io/crates/precomputed-hash/0.1.1/download",
"sha256": "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
}
},
@@ -6677,9 +8217,12 @@
"Library": {
"crate_name": "precomputed_hash",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6691,14 +8234,19 @@
"edition": "2015",
"version": "0.1.1"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"proc-macro2 1.0.76": {
"name": "proc-macro2",
"version": "1.0.76",
+ "package_url": "https://github.com/dtolnay/proc-macro2",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.76/download",
+ "url": "https://static.crates.io/crates/proc-macro2/1.0.76/download",
"sha256": "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
}
},
@@ -6707,18 +8255,24 @@
"Library": {
"crate_name": "proc_macro2",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6755,14 +8309,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"prost 0.11.9": {
"name": "prost",
"version": "0.11.9",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost/0.11.9/download",
+ "url": "https://static.crates.io/crates/prost/0.11.9/download",
"sha256": "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
}
},
@@ -6771,9 +8331,12 @@
"Library": {
"crate_name": "prost",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6810,14 +8373,19 @@
},
"version": "0.11.9"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"prost-build 0.11.9": {
"name": "prost-build",
"version": "0.11.9",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost-build/0.11.9/download",
+ "url": "https://static.crates.io/crates/prost-build/0.11.9/download",
"sha256": "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
}
},
@@ -6826,9 +8394,12 @@
"Library": {
"crate_name": "prost_build",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6893,14 +8464,19 @@
"edition": "2021",
"version": "0.11.9"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"prost-derive 0.11.9": {
"name": "prost-derive",
"version": "0.11.9",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost-derive/0.11.9/download",
+ "url": "https://static.crates.io/crates/prost-derive/0.11.9/download",
"sha256": "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
}
},
@@ -6909,9 +8485,12 @@
"ProcMacro": {
"crate_name": "prost_derive",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6948,14 +8527,19 @@
"edition": "2021",
"version": "0.11.9"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"prost-types 0.11.9": {
"name": "prost-types",
"version": "0.11.9",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost-types/0.11.9/download",
+ "url": "https://static.crates.io/crates/prost-types/0.11.9/download",
"sha256": "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
}
},
@@ -6964,9 +8548,12 @@
"Library": {
"crate_name": "prost_types",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -6987,14 +8574,19 @@
"edition": "2021",
"version": "0.11.9"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"protoc-gen-prost 0.2.3": {
"name": "protoc-gen-prost",
"version": "0.2.3",
+ "package_url": "https://github.com/neoeinstein/protoc-gen-prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/protoc-gen-prost/0.2.3/download",
+ "url": "https://static.crates.io/crates/protoc-gen-prost/0.2.3/download",
"sha256": "10dfa031ad41fdcfb180de73ece3ed076250f1132a13ad6bba218699f612fb95"
}
},
@@ -7003,18 +8595,24 @@
"Library": {
"crate_name": "protoc_gen_prost",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "protoc-gen-prost",
"crate_root": "src/main.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7051,14 +8649,19 @@
"edition": "2021",
"version": "0.2.3"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": null
},
"pulldown-cmark 0.9.3": {
"name": "pulldown-cmark",
"version": "0.9.3",
+ "package_url": "https://github.com/raphlinus/pulldown-cmark",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/pulldown-cmark/0.9.3/download",
+ "url": "https://static.crates.io/crates/pulldown-cmark/0.9.3/download",
"sha256": "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
}
},
@@ -7067,27 +8670,36 @@
"Library": {
"crate_name": "pulldown_cmark",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"Binary": {
"crate_name": "pulldown-cmark",
"crate_root": "src/main.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7125,14 +8737,19 @@
"**"
]
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"quote 1.0.35": {
"name": "quote",
"version": "1.0.35",
+ "package_url": "https://github.com/dtolnay/quote",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/quote/1.0.35/download",
+ "url": "https://static.crates.io/crates/quote/1.0.35/download",
"sha256": "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
}
},
@@ -7141,9 +8758,12 @@
"Library": {
"crate_name": "quote",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7171,14 +8791,20 @@
"edition": "2018",
"version": "1.0.35"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"rand 0.8.5": {
"name": "rand",
"version": "0.8.5",
+ "package_url": "https://github.com/rust-random/rand",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/rand/0.8.5/download",
+ "url": "https://static.crates.io/crates/rand/0.8.5/download",
"sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
}
},
@@ -7187,9 +8813,12 @@
"Library": {
"crate_name": "rand",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7214,6 +8843,10 @@
"deps": {
"common": [
{
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
"id": "rand_chacha 0.3.1",
"target": "rand_chacha"
},
@@ -7222,26 +8855,25 @@
"target": "rand_core"
}
],
- "selects": {
- "cfg(unix)": [
- {
- "id": "libc 0.2.152",
- "target": "libc"
- }
- ]
- }
+ "selects": {}
},
"edition": "2018",
"version": "0.8.5"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"rand_chacha 0.3.1": {
"name": "rand_chacha",
"version": "0.3.1",
+ "package_url": "https://github.com/rust-random/rand",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/rand_chacha/0.3.1/download",
+ "url": "https://static.crates.io/crates/rand_chacha/0.3.1/download",
"sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
}
},
@@ -7250,9 +8882,12 @@
"Library": {
"crate_name": "rand_chacha",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7283,14 +8918,20 @@
"edition": "2018",
"version": "0.3.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/rand_core/0.6.4/download",
+ "url": "https://static.crates.io/crates/rand_core/0.6.4/download",
"sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
}
},
@@ -7299,9 +8940,12 @@
"Library": {
"crate_name": "rand_core",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7330,14 +8974,20 @@
"edition": "2018",
"version": "0.6.4"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/redox_syscall/0.4.1/download",
+ "url": "https://static.crates.io/crates/redox_syscall/0.4.1/download",
"sha256": "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
}
},
@@ -7346,9 +8996,12 @@
"Library": {
"crate_name": "syscall",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7369,14 +9022,19 @@
"edition": "2018",
"version": "0.4.1"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"regex 1.10.2": {
"name": "regex",
"version": "1.10.2",
+ "package_url": "https://github.com/rust-lang/regex",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/regex/1.10.2/download",
+ "url": "https://static.crates.io/crates/regex/1.10.2/download",
"sha256": "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
}
},
@@ -7385,9 +9043,12 @@
"Library": {
"crate_name": "regex",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7442,14 +9103,20 @@
"edition": "2021",
"version": "1.10.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"regex-automata 0.4.3": {
"name": "regex-automata",
"version": "0.4.3",
+ "package_url": "https://github.com/rust-lang/regex/tree/master/regex-automata",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/regex-automata/0.4.3/download",
+ "url": "https://static.crates.io/crates/regex-automata/0.4.3/download",
"sha256": "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
}
},
@@ -7458,9 +9125,12 @@
"Library": {
"crate_name": "regex_automata",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7546,14 +9216,20 @@
"edition": "2021",
"version": "0.4.3"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"regex-syntax 0.8.2": {
"name": "regex-syntax",
"version": "0.8.2",
+ "package_url": "https://github.com/rust-lang/regex/tree/master/regex-syntax",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/regex-syntax/0.8.2/download",
+ "url": "https://static.crates.io/crates/regex-syntax/0.8.2/download",
"sha256": "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
}
},
@@ -7562,9 +9238,12 @@
"Library": {
"crate_name": "regex_syntax",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7591,14 +9270,20 @@
"edition": "2021",
"version": "0.8.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"rustc-demangle 0.1.23": {
"name": "rustc-demangle",
"version": "0.1.23",
+ "package_url": "https://github.com/alexcrichton/rustc-demangle",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/rustc-demangle/0.1.23/download",
+ "url": "https://static.crates.io/crates/rustc-demangle/0.1.23/download",
"sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
}
},
@@ -7607,9 +9292,12 @@
"Library": {
"crate_name": "rustc_demangle",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7621,14 +9309,20 @@
"edition": "2015",
"version": "0.1.23"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"rustix 0.38.28": {
"name": "rustix",
"version": "0.38.28",
+ "package_url": "https://github.com/bytecodealliance/rustix",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/rustix/0.38.28/download",
+ "url": "https://static.crates.io/crates/rustix/0.38.28/download",
"sha256": "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
}
},
@@ -7637,18 +9331,24 @@
"Library": {
"crate_name": "rustix",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7843,6 +9543,101 @@
}
],
"selects": {
+ "aarch64-apple-darwin": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "aarch64-apple-ios": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "aarch64-apple-ios-sim": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "aarch64-fuchsia": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "aarch64-linux-android": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "aarch64-pc-windows-msvc": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ }
+ ],
+ "aarch64-unknown-nto-qnx710": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "aarch64-unknown-uefi": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "armv7-linux-androideabi": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
"cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [
{
"id": "linux-raw-sys 0.4.12",
@@ -7876,6 +9671,218 @@
"id": "windows-sys 0.52.0",
"target": "windows_sys"
}
+ ],
+ "i686-apple-darwin": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "i686-linux-android": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "i686-pc-windows-msvc": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ }
+ ],
+ "i686-unknown-freebsd": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "powerpc-unknown-linux-gnu": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "riscv32imc-unknown-none-elf": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "riscv64gc-unknown-none-elf": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "s390x-unknown-linux-gnu": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "thumbv7em-none-eabi": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "thumbv8m.main-none-eabi": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "wasm32-unknown-unknown": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "wasm32-wasi": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-apple-darwin": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-apple-ios": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-fuchsia": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-linux-android": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-pc-windows-msvc": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ }
+ ],
+ "x86_64-unknown-freebsd": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-unknown-none": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
+ ],
+ "x86_64-unknown-uefi": [
+ {
+ "id": "errno 0.3.8",
+ "target": "errno",
+ "alias": "libc_errno"
+ },
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ }
]
}
},
@@ -7887,14 +9894,20 @@
"**"
]
},
- "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
+ "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"rustls-pemfile 1.0.4": {
"name": "rustls-pemfile",
"version": "1.0.4",
+ "package_url": "https://github.com/rustls/pemfile",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/rustls-pemfile/1.0.4/download",
+ "url": "https://static.crates.io/crates/rustls-pemfile/1.0.4/download",
"sha256": "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
}
},
@@ -7903,9 +9916,12 @@
"Library": {
"crate_name": "rustls_pemfile",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7926,14 +9942,21 @@
"edition": "2018",
"version": "1.0.4"
},
- "license": "Apache-2.0 OR ISC OR MIT"
+ "license": "Apache-2.0 OR ISC OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "ISC",
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"ryu 1.0.16": {
"name": "ryu",
"version": "1.0.16",
+ "package_url": "https://github.com/dtolnay/ryu",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ryu/1.0.16/download",
+ "url": "https://static.crates.io/crates/ryu/1.0.16/download",
"sha256": "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
}
},
@@ -7942,9 +9965,12 @@
"Library": {
"crate_name": "ryu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7956,14 +9982,20 @@
"edition": "2018",
"version": "1.0.16"
},
- "license": "Apache-2.0 OR BSL-1.0"
+ "license": "Apache-2.0 OR BSL-1.0",
+ "license_ids": [
+ "Apache-2.0",
+ "BSL-1.0"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"same-file 1.0.6": {
"name": "same-file",
"version": "1.0.6",
+ "package_url": "https://github.com/BurntSushi/same-file",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/same-file/1.0.6/download",
+ "url": "https://static.crates.io/crates/same-file/1.0.6/download",
"sha256": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
}
},
@@ -7972,9 +10004,12 @@
"Library": {
"crate_name": "same_file",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -7997,14 +10032,20 @@
"edition": "2018",
"version": "1.0.6"
},
- "license": "Unlicense/MIT"
+ "license": "Unlicense/MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"scoped-tls 1.0.1": {
"name": "scoped-tls",
"version": "1.0.1",
+ "package_url": "https://github.com/alexcrichton/scoped-tls",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/scoped-tls/1.0.1/download",
+ "url": "https://static.crates.io/crates/scoped-tls/1.0.1/download",
"sha256": "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
}
},
@@ -8013,9 +10054,12 @@
"Library": {
"crate_name": "scoped_tls",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8027,14 +10071,20 @@
"edition": "2015",
"version": "1.0.1"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "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://crates.io/api/v1/crates/scopeguard/1.2.0/download",
+ "url": "https://static.crates.io/crates/scopeguard/1.2.0/download",
"sha256": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
}
},
@@ -8043,9 +10093,12 @@
"Library": {
"crate_name": "scopeguard",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8057,14 +10110,20 @@
"edition": "2015",
"version": "1.2.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"serde 1.0.195": {
"name": "serde",
"version": "1.0.195",
+ "package_url": "https://github.com/serde-rs/serde",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/serde/1.0.195/download",
+ "url": "https://static.crates.io/crates/serde/1.0.195/download",
"sha256": "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
}
},
@@ -8073,18 +10132,24 @@
"Library": {
"crate_name": "serde",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8128,14 +10193,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"serde_derive 1.0.195": {
"name": "serde_derive",
"version": "1.0.195",
+ "package_url": "https://github.com/serde-rs/serde",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/serde_derive/1.0.195/download",
+ "url": "https://static.crates.io/crates/serde_derive/1.0.195/download",
"sha256": "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
}
},
@@ -8144,9 +10215,12 @@
"ProcMacro": {
"crate_name": "serde_derive",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8181,14 +10255,20 @@
"edition": "2015",
"version": "1.0.195"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"serde_json 1.0.111": {
"name": "serde_json",
"version": "1.0.111",
+ "package_url": "https://github.com/serde-rs/json",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/serde_json/1.0.111/download",
+ "url": "https://static.crates.io/crates/serde_json/1.0.111/download",
"sha256": "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
}
},
@@ -8197,18 +10277,24 @@
"Library": {
"crate_name": "serde_json",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8253,14 +10339,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download",
+ "url": "https://static.crates.io/crates/serde_urlencoded/0.7.1/download",
"sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
}
},
@@ -8269,9 +10361,12 @@
"Library": {
"crate_name": "serde_urlencoded",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8304,14 +10399,20 @@
"edition": "2018",
"version": "0.7.1"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"sha1 0.10.6": {
"name": "sha1",
"version": "0.10.6",
+ "package_url": "https://github.com/RustCrypto/hashes",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/sha1/0.10.6/download",
+ "url": "https://static.crates.io/crates/sha1/0.10.6/download",
"sha256": "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
}
},
@@ -8320,9 +10421,12 @@
"Library": {
"crate_name": "sha1",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8361,14 +10465,20 @@
"edition": "2018",
"version": "0.10.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"sha2 0.10.8": {
"name": "sha2",
"version": "0.10.8",
+ "package_url": "https://github.com/RustCrypto/hashes",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/sha2/0.10.8/download",
+ "url": "https://static.crates.io/crates/sha2/0.10.8/download",
"sha256": "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
}
},
@@ -8377,9 +10487,12 @@
"Library": {
"crate_name": "sha2",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8411,14 +10524,20 @@
"edition": "2018",
"version": "0.10.8"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"shlex 1.2.0": {
"name": "shlex",
"version": "1.2.0",
+ "package_url": "https://github.com/comex/rust-shlex",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/shlex/1.2.0/download",
+ "url": "https://static.crates.io/crates/shlex/1.2.0/download",
"sha256": "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
}
},
@@ -8427,9 +10546,12 @@
"Library": {
"crate_name": "shlex",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8448,14 +10570,20 @@
"edition": "2015",
"version": "1.2.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"siphasher 0.3.11": {
"name": "siphasher",
"version": "0.3.11",
+ "package_url": "https://github.com/jedisct1/rust-siphash",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/siphasher/0.3.11/download",
+ "url": "https://static.crates.io/crates/siphasher/0.3.11/download",
"sha256": "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
}
},
@@ -8464,9 +10592,12 @@
"Library": {
"crate_name": "siphasher",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8485,14 +10616,20 @@
"edition": "2018",
"version": "0.3.11"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": null
},
"slab 0.4.9": {
"name": "slab",
"version": "0.4.9",
+ "package_url": "https://github.com/tokio-rs/slab",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/slab/0.4.9/download",
+ "url": "https://static.crates.io/crates/slab/0.4.9/download",
"sha256": "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
}
},
@@ -8501,18 +10638,24 @@
"Library": {
"crate_name": "slab",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8554,14 +10697,19 @@
"selects": {}
}
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"smallvec 1.11.2": {
"name": "smallvec",
"version": "1.11.2",
+ "package_url": "https://github.com/servo/rust-smallvec",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/smallvec/1.11.2/download",
+ "url": "https://static.crates.io/crates/smallvec/1.11.2/download",
"sha256": "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
}
},
@@ -8570,9 +10718,12 @@
"Library": {
"crate_name": "smallvec",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8584,14 +10735,20 @@
"edition": "2018",
"version": "1.11.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"socket2 0.5.5": {
"name": "socket2",
"version": "0.5.5",
+ "package_url": "https://github.com/rust-lang/socket2",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/socket2/0.5.5/download",
+ "url": "https://static.crates.io/crates/socket2/0.5.5/download",
"sha256": "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
}
},
@@ -8600,9 +10757,12 @@
"Library": {
"crate_name": "socket2",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8637,14 +10797,20 @@
"edition": "2021",
"version": "0.5.5"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"string_cache 0.8.7": {
"name": "string_cache",
"version": "0.8.7",
+ "package_url": "https://github.com/servo/string-cache",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/string_cache/0.8.7/download",
+ "url": "https://static.crates.io/crates/string_cache/0.8.7/download",
"sha256": "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
}
},
@@ -8653,9 +10819,12 @@
"Library": {
"crate_name": "string_cache",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8704,14 +10873,20 @@
"edition": "2018",
"version": "0.8.7"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"string_cache_codegen 0.5.2": {
"name": "string_cache_codegen",
"version": "0.5.2",
+ "package_url": "https://github.com/servo/string-cache",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download",
+ "url": "https://static.crates.io/crates/string_cache_codegen/0.5.2/download",
"sha256": "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
}
},
@@ -8720,9 +10895,12 @@
"Library": {
"crate_name": "string_cache_codegen",
"crate_root": "lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8755,14 +10933,20 @@
"edition": "2018",
"version": "0.5.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/strsim/0.10.0/download",
+ "url": "https://static.crates.io/crates/strsim/0.10.0/download",
"sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
}
},
@@ -8771,9 +10955,12 @@
"Library": {
"crate_name": "strsim",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8785,14 +10972,19 @@
"edition": "2015",
"version": "0.10.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "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://crates.io/api/v1/crates/syn/1.0.109/download",
+ "url": "https://static.crates.io/crates/syn/1.0.109/download",
"sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
}
},
@@ -8801,18 +10993,24 @@
"Library": {
"crate_name": "syn",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8865,14 +11063,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"syn 2.0.48": {
"name": "syn",
"version": "2.0.48",
+ "package_url": "https://github.com/dtolnay/syn",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/syn/2.0.48/download",
+ "url": "https://static.crates.io/crates/syn/2.0.48/download",
"sha256": "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
}
},
@@ -8881,9 +11085,12 @@
"Library": {
"crate_name": "syn",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8926,14 +11133,20 @@
"edition": "2021",
"version": "2.0.48"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"tempfile 3.9.0": {
"name": "tempfile",
"version": "3.9.0",
+ "package_url": "https://github.com/Stebalien/tempfile",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tempfile/3.9.0/download",
+ "url": "https://static.crates.io/crates/tempfile/3.9.0/download",
"sha256": "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
}
},
@@ -8942,9 +11155,12 @@
"Library": {
"crate_name": "tempfile",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -8988,14 +11204,20 @@
"edition": "2018",
"version": "3.9.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"tendril 0.4.3": {
"name": "tendril",
"version": "0.4.3",
+ "package_url": "https://github.com/servo/tendril",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tendril/0.4.3/download",
+ "url": "https://static.crates.io/crates/tendril/0.4.3/download",
"sha256": "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
}
},
@@ -9004,9 +11226,12 @@
"Library": {
"crate_name": "tendril",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9035,14 +11260,20 @@
"edition": "2015",
"version": "0.4.3"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"termcolor 1.4.1": {
"name": "termcolor",
"version": "1.4.1",
+ "package_url": "https://github.com/BurntSushi/termcolor",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/termcolor/1.4.1/download",
+ "url": "https://static.crates.io/crates/termcolor/1.4.1/download",
"sha256": "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
}
},
@@ -9051,9 +11282,12 @@
"Library": {
"crate_name": "termcolor",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9076,14 +11310,20 @@
"edition": "2018",
"version": "1.4.1"
},
- "license": "Unlicense OR MIT"
+ "license": "Unlicense OR MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"terminal_size 0.3.0": {
"name": "terminal_size",
"version": "0.3.0",
+ "package_url": "https://github.com/eminence/terminal-size",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/terminal_size/0.3.0/download",
+ "url": "https://static.crates.io/crates/terminal_size/0.3.0/download",
"sha256": "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
}
},
@@ -9092,9 +11332,12 @@
"Library": {
"crate_name": "terminal_size",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9123,14 +11366,20 @@
"edition": "2021",
"version": "0.3.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"thiserror 1.0.56": {
"name": "thiserror",
"version": "1.0.56",
+ "package_url": "https://github.com/dtolnay/thiserror",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/thiserror/1.0.56/download",
+ "url": "https://static.crates.io/crates/thiserror/1.0.56/download",
"sha256": "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
}
},
@@ -9139,18 +11388,24 @@
"Library": {
"crate_name": "thiserror",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9185,14 +11440,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"thiserror-impl 1.0.56": {
"name": "thiserror-impl",
"version": "1.0.56",
+ "package_url": "https://github.com/dtolnay/thiserror",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/thiserror-impl/1.0.56/download",
+ "url": "https://static.crates.io/crates/thiserror-impl/1.0.56/download",
"sha256": "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
}
},
@@ -9201,9 +11462,12 @@
"ProcMacro": {
"crate_name": "thiserror_impl",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9232,14 +11496,20 @@
"edition": "2021",
"version": "1.0.56"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "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://crates.io/api/v1/crates/tinyvec/1.6.0/download",
+ "url": "https://static.crates.io/crates/tinyvec/1.6.0/download",
"sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
}
},
@@ -9248,9 +11518,12 @@
"Library": {
"crate_name": "tinyvec",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9279,14 +11552,21 @@
"edition": "2018",
"version": "1.6.0"
},
- "license": "Zlib OR Apache-2.0 OR MIT"
+ "license": "Zlib OR Apache-2.0 OR MIT",
+ "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://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download",
+ "url": "https://static.crates.io/crates/tinyvec_macros/0.1.1/download",
"sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
}
},
@@ -9295,9 +11575,12 @@
"Library": {
"crate_name": "tinyvec_macros",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9309,14 +11592,21 @@
"edition": "2018",
"version": "0.1.1"
},
- "license": "MIT OR Apache-2.0 OR Zlib"
+ "license": "MIT OR Apache-2.0 OR Zlib",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT",
+ "Zlib"
+ ],
+ "license_file": "LICENSE-APACHE.md"
},
"tokio 1.35.1": {
"name": "tokio",
"version": "1.35.1",
+ "package_url": "https://github.com/tokio-rs/tokio",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tokio/1.35.1/download",
+ "url": "https://static.crates.io/crates/tokio/1.35.1/download",
"sha256": "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
}
},
@@ -9325,9 +11615,12 @@
"Library": {
"crate_name": "tokio",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9386,7 +11679,127 @@
}
],
"selects": {
- "cfg(not(target_family = \"wasm\"))": [
+ "aarch64-apple-darwin": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-apple-ios": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-apple-ios-sim": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-fuchsia": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-linux-android": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-pc-windows-msvc": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ },
+ {
+ "id": "windows-sys 0.48.0",
+ "target": "windows_sys"
+ }
+ ],
+ "aarch64-unknown-linux-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-unknown-nixos-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-unknown-nto-qnx710": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "aarch64-unknown-uefi": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "arm-unknown-linux-gnueabi": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "armv7-linux-androideabi": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "armv7-unknown-linux-gnueabi": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
{
"id": "socket2 0.5.5",
"target": "socket2"
@@ -9398,17 +11811,191 @@
"target": "backtrace"
}
],
- "cfg(unix)": [
+ "i686-apple-darwin": [
{
"id": "libc 0.2.152",
"target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
}
],
- "cfg(windows)": [
+ "i686-linux-android": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "i686-pc-windows-msvc": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ },
{
"id": "windows-sys 0.48.0",
"target": "windows_sys"
}
+ ],
+ "i686-unknown-freebsd": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "i686-unknown-linux-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "powerpc-unknown-linux-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "riscv32imc-unknown-none-elf": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "riscv64gc-unknown-none-elf": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "s390x-unknown-linux-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "thumbv7em-none-eabi": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "thumbv8m.main-none-eabi": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-apple-darwin": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-apple-ios": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-fuchsia": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-linux-android": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-pc-windows-msvc": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ },
+ {
+ "id": "windows-sys 0.48.0",
+ "target": "windows_sys"
+ }
+ ],
+ "x86_64-unknown-freebsd": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-unknown-linux-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-unknown-nixos-gnu": [
+ {
+ "id": "libc 0.2.152",
+ "target": "libc"
+ },
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-unknown-none": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
+ ],
+ "x86_64-unknown-uefi": [
+ {
+ "id": "socket2 0.5.5",
+ "target": "socket2"
+ }
]
}
},
@@ -9424,14 +12011,19 @@
},
"version": "1.35.1"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tokio-macros 2.2.0": {
"name": "tokio-macros",
"version": "2.2.0",
+ "package_url": "https://github.com/tokio-rs/tokio",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tokio-macros/2.2.0/download",
+ "url": "https://static.crates.io/crates/tokio-macros/2.2.0/download",
"sha256": "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
}
},
@@ -9440,9 +12032,12 @@
"ProcMacro": {
"crate_name": "tokio_macros",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9471,14 +12066,19 @@
"edition": "2021",
"version": "2.2.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tokio-stream 0.1.14": {
"name": "tokio-stream",
"version": "0.1.14",
+ "package_url": "https://github.com/tokio-rs/tokio",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tokio-stream/0.1.14/download",
+ "url": "https://static.crates.io/crates/tokio-stream/0.1.14/download",
"sha256": "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
}
},
@@ -9487,9 +12087,12 @@
"Library": {
"crate_name": "tokio_stream",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9525,14 +12128,19 @@
"edition": "2021",
"version": "0.1.14"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tokio-tungstenite 0.20.1": {
"name": "tokio-tungstenite",
"version": "0.20.1",
+ "package_url": "https://github.com/snapview/tokio-tungstenite",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tokio-tungstenite/0.20.1/download",
+ "url": "https://static.crates.io/crates/tokio-tungstenite/0.20.1/download",
"sha256": "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
}
},
@@ -9541,9 +12149,12 @@
"Library": {
"crate_name": "tokio_tungstenite",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9585,14 +12196,19 @@
"edition": "2018",
"version": "0.20.1"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tokio-util 0.7.10": {
"name": "tokio-util",
"version": "0.7.10",
+ "package_url": "https://github.com/tokio-rs/tokio",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tokio-util/0.7.10/download",
+ "url": "https://static.crates.io/crates/tokio-util/0.7.10/download",
"sha256": "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
}
},
@@ -9601,9 +12217,12 @@
"Library": {
"crate_name": "tokio_util",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9653,14 +12272,19 @@
"edition": "2021",
"version": "0.7.10"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"toml 0.5.11": {
"name": "toml",
"version": "0.5.11",
+ "package_url": "https://github.com/toml-rs/toml",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/toml/0.5.11/download",
+ "url": "https://static.crates.io/crates/toml/0.5.11/download",
"sha256": "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
}
},
@@ -9669,9 +12293,12 @@
"Library": {
"crate_name": "toml",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9698,14 +12325,20 @@
"edition": "2018",
"version": "0.5.11"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"topological-sort 0.2.2": {
"name": "topological-sort",
"version": "0.2.2",
+ "package_url": "https://github.com/gifnksm/topological-sort-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/topological-sort/0.2.2/download",
+ "url": "https://static.crates.io/crates/topological-sort/0.2.2/download",
"sha256": "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d"
}
},
@@ -9714,9 +12347,12 @@
"Library": {
"crate_name": "topological_sort",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9728,14 +12364,20 @@
"edition": "2018",
"version": "0.2.2"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "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://crates.io/api/v1/crates/tower-service/0.3.2/download",
+ "url": "https://static.crates.io/crates/tower-service/0.3.2/download",
"sha256": "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
}
},
@@ -9744,9 +12386,12 @@
"Library": {
"crate_name": "tower_service",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9758,14 +12403,19 @@
"edition": "2018",
"version": "0.3.2"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tracing 0.1.40": {
"name": "tracing",
"version": "0.1.40",
+ "package_url": "https://github.com/tokio-rs/tracing",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tracing/0.1.40/download",
+ "url": "https://static.crates.io/crates/tracing/0.1.40/download",
"sha256": "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
}
},
@@ -9774,9 +12424,12 @@
"Library": {
"crate_name": "tracing",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9812,14 +12465,19 @@
"edition": "2018",
"version": "0.1.40"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tracing-core 0.1.32": {
"name": "tracing-core",
"version": "0.1.32",
+ "package_url": "https://github.com/tokio-rs/tracing",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tracing-core/0.1.32/download",
+ "url": "https://static.crates.io/crates/tracing-core/0.1.32/download",
"sha256": "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
}
},
@@ -9828,9 +12486,12 @@
"Library": {
"crate_name": "tracing_core",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9858,14 +12519,19 @@
"edition": "2018",
"version": "0.1.32"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"try-lock 0.2.5": {
"name": "try-lock",
"version": "0.2.5",
+ "package_url": "https://github.com/seanmonstar/try-lock",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/try-lock/0.2.5/download",
+ "url": "https://static.crates.io/crates/try-lock/0.2.5/download",
"sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
}
},
@@ -9874,9 +12540,12 @@
"Library": {
"crate_name": "try_lock",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9888,14 +12557,19 @@
"edition": "2015",
"version": "0.2.5"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"tungstenite 0.20.1": {
"name": "tungstenite",
"version": "0.20.1",
+ "package_url": "https://github.com/snapview/tungstenite-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/tungstenite/0.20.1/download",
+ "url": "https://static.crates.io/crates/tungstenite/0.20.1/download",
"sha256": "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
}
},
@@ -9904,9 +12578,12 @@
"Library": {
"crate_name": "tungstenite",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -9978,14 +12655,20 @@
"edition": "2018",
"version": "0.20.1"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"typenum 1.17.0": {
"name": "typenum",
"version": "1.17.0",
+ "package_url": "https://github.com/paholg/typenum",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/typenum/1.17.0/download",
+ "url": "https://static.crates.io/crates/typenum/1.17.0/download",
"sha256": "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
}
},
@@ -9994,18 +12677,24 @@
"Library": {
"crate_name": "typenum",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_main",
"crate_root": "build/main.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10031,14 +12720,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"ucd-trie 0.1.6": {
"name": "ucd-trie",
"version": "0.1.6",
+ "package_url": "https://github.com/BurntSushi/ucd-generate",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ucd-trie/0.1.6/download",
+ "url": "https://static.crates.io/crates/ucd-trie/0.1.6/download",
"sha256": "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
}
},
@@ -10047,9 +12742,12 @@
"Library": {
"crate_name": "ucd_trie",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10067,14 +12765,20 @@
"edition": "2021",
"version": "0.1.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"unicase 2.7.0": {
"name": "unicase",
"version": "2.7.0",
+ "package_url": "https://github.com/seanmonstar/unicase",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/unicase/2.7.0/download",
+ "url": "https://static.crates.io/crates/unicase/2.7.0/download",
"sha256": "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
}
},
@@ -10083,18 +12787,24 @@
"Library": {
"crate_name": "unicase",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10129,14 +12839,20 @@
"selects": {}
}
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"unicode-bidi 0.3.14": {
"name": "unicode-bidi",
"version": "0.3.14",
+ "package_url": "https://github.com/servo/unicode-bidi",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/unicode-bidi/0.3.14/download",
+ "url": "https://static.crates.io/crates/unicode-bidi/0.3.14/download",
"sha256": "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
}
},
@@ -10145,9 +12861,12 @@
"Library": {
"crate_name": "unicode_bidi",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10166,14 +12885,20 @@
"edition": "2018",
"version": "0.3.14"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"unicode-ident 1.0.12": {
"name": "unicode-ident",
"version": "1.0.12",
+ "package_url": "https://github.com/dtolnay/unicode-ident",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/unicode-ident/1.0.12/download",
+ "url": "https://static.crates.io/crates/unicode-ident/1.0.12/download",
"sha256": "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
}
},
@@ -10182,9 +12907,12 @@
"Library": {
"crate_name": "unicode_ident",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10196,14 +12924,21 @@
"edition": "2018",
"version": "1.0.12"
},
- "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
+ "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT",
+ "Unicode-DFS-2016"
+ ],
+ "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://crates.io/api/v1/crates/unicode-normalization/0.1.22/download",
+ "url": "https://static.crates.io/crates/unicode-normalization/0.1.22/download",
"sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
}
},
@@ -10212,9 +12947,12 @@
"Library": {
"crate_name": "unicode_normalization",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10241,14 +12979,20 @@
"edition": "2018",
"version": "0.1.22"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"url 2.5.0": {
"name": "url",
"version": "2.5.0",
+ "package_url": "https://github.com/servo/rust-url",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/url/2.5.0/download",
+ "url": "https://static.crates.io/crates/url/2.5.0/download",
"sha256": "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
}
},
@@ -10257,9 +13001,12 @@
"Library": {
"crate_name": "url",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10294,14 +13041,20 @@
"edition": "2018",
"version": "2.5.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"utf-8 0.7.6": {
"name": "utf-8",
"version": "0.7.6",
+ "package_url": "https://github.com/SimonSapin/rust-utf8",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/utf-8/0.7.6/download",
+ "url": "https://static.crates.io/crates/utf-8/0.7.6/download",
"sha256": "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
}
},
@@ -10310,9 +13063,12 @@
"Library": {
"crate_name": "utf8",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10324,14 +13080,20 @@
"edition": "2015",
"version": "0.7.6"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"utf8parse 0.2.1": {
"name": "utf8parse",
"version": "0.2.1",
+ "package_url": "https://github.com/alacritty/vte",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/utf8parse/0.2.1/download",
+ "url": "https://static.crates.io/crates/utf8parse/0.2.1/download",
"sha256": "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
}
},
@@ -10340,9 +13102,12 @@
"Library": {
"crate_name": "utf8parse",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10360,14 +13125,20 @@
"edition": "2018",
"version": "0.2.1"
},
- "license": "Apache-2.0 OR MIT"
+ "license": "Apache-2.0 OR MIT",
+ "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://crates.io/api/v1/crates/version_check/0.9.4/download",
+ "url": "https://static.crates.io/crates/version_check/0.9.4/download",
"sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
}
},
@@ -10376,9 +13147,12 @@
"Library": {
"crate_name": "version_check",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10390,14 +13164,20 @@
"edition": "2015",
"version": "0.9.4"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"walkdir 2.4.0": {
"name": "walkdir",
"version": "2.4.0",
+ "package_url": "https://github.com/BurntSushi/walkdir",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/walkdir/2.4.0/download",
+ "url": "https://static.crates.io/crates/walkdir/2.4.0/download",
"sha256": "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
}
},
@@ -10406,9 +13186,12 @@
"Library": {
"crate_name": "walkdir",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10436,14 +13219,20 @@
"edition": "2018",
"version": "2.4.0"
},
- "license": "Unlicense/MIT"
+ "license": "Unlicense/MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"want 0.3.1": {
"name": "want",
"version": "0.3.1",
+ "package_url": "https://github.com/seanmonstar/want",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/want/0.3.1/download",
+ "url": "https://static.crates.io/crates/want/0.3.1/download",
"sha256": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
}
},
@@ -10452,9 +13241,12 @@
"Library": {
"crate_name": "want",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10475,14 +13267,19 @@
"edition": "2018",
"version": "0.3.1"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"warp 0.3.6": {
"name": "warp",
"version": "0.3.6",
+ "package_url": "https://github.com/seanmonstar/warp",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/warp/0.3.6/download",
+ "url": "https://static.crates.io/crates/warp/0.3.6/download",
"sha256": "c1e92e22e03ff1230c03a1a8ee37d2f89cd489e2e541b7550d6afad96faed169"
}
},
@@ -10491,9 +13288,12 @@
"Library": {
"crate_name": "warp",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10605,14 +13405,19 @@
"edition": "2018",
"version": "0.3.6"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "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://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download",
+ "url": "https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download",
"sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
}
},
@@ -10621,9 +13426,12 @@
"Library": {
"crate_name": "wasi",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10642,14 +13450,20 @@
"edition": "2018",
"version": "0.11.0+wasi-snapshot-preview1"
},
- "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
+ "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"wasm-bindgen 0.2.89": {
"name": "wasm-bindgen",
"version": "0.2.89",
+ "package_url": "https://github.com/rustwasm/wasm-bindgen",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/wasm-bindgen/0.2.89/download",
+ "url": "https://static.crates.io/crates/wasm-bindgen/0.2.89/download",
"sha256": "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
}
},
@@ -10658,18 +13472,24 @@
"Library": {
"crate_name": "wasm_bindgen",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10708,14 +13528,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"wasm-bindgen-backend 0.2.89": {
"name": "wasm-bindgen-backend",
"version": "0.2.89",
+ "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.89/download",
+ "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.89/download",
"sha256": "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
}
},
@@ -10724,9 +13550,12 @@
"Library": {
"crate_name": "wasm_bindgen_backend",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10771,14 +13600,20 @@
"edition": "2018",
"version": "0.2.89"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"wasm-bindgen-macro 0.2.89": {
"name": "wasm-bindgen-macro",
"version": "0.2.89",
+ "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.89/download",
+ "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.89/download",
"sha256": "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
}
},
@@ -10787,9 +13622,12 @@
"ProcMacro": {
"crate_name": "wasm_bindgen_macro",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10814,14 +13652,20 @@
"edition": "2018",
"version": "0.2.89"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"wasm-bindgen-macro-support 0.2.89": {
"name": "wasm-bindgen-macro-support",
"version": "0.2.89",
+ "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.89/download",
+ "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.89/download",
"sha256": "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
}
},
@@ -10830,9 +13674,12 @@
"Library": {
"crate_name": "wasm_bindgen_macro_support",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10869,14 +13716,20 @@
"edition": "2018",
"version": "0.2.89"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"wasm-bindgen-shared 0.2.89": {
"name": "wasm-bindgen-shared",
"version": "0.2.89",
+ "package_url": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.89/download",
+ "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.89/download",
"sha256": "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
}
},
@@ -10885,18 +13738,24 @@
"Library": {
"crate_name": "wasm_bindgen_shared",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10923,14 +13782,20 @@
],
"links": "wasm_bindgen"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"which 4.4.2": {
"name": "which",
"version": "4.4.2",
+ "package_url": "https://github.com/harryfei/which-rs.git",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/which/4.4.2/download",
+ "url": "https://static.crates.io/crates/which/4.4.2/download",
"sha256": "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
}
},
@@ -10939,9 +13804,12 @@
"Library": {
"crate_name": "which",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -10979,14 +13847,19 @@
"edition": "2021",
"version": "4.4.2"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE.txt"
},
"winapi 0.3.9": {
"name": "winapi",
"version": "0.3.9",
+ "package_url": "https://github.com/retep998/winapi-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/winapi/0.3.9/download",
+ "url": "https://static.crates.io/crates/winapi/0.3.9/download",
"sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
}
},
@@ -10995,18 +13868,24 @@
"Library": {
"crate_name": "winapi",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11062,14 +13941,20 @@
"**"
]
},
- "license": "MIT/Apache-2.0"
+ "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://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download",
+ "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download",
"sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
}
},
@@ -11078,18 +13963,24 @@
"Library": {
"crate_name": "winapi_i686_pc_windows_gnu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11115,14 +14006,20 @@
"**"
]
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": null
},
"winapi-util 0.1.6": {
"name": "winapi-util",
"version": "0.1.6",
+ "package_url": "https://github.com/BurntSushi/winapi-util",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/winapi-util/0.1.6/download",
+ "url": "https://static.crates.io/crates/winapi-util/0.1.6/download",
"sha256": "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
}
},
@@ -11131,9 +14028,12 @@
"Library": {
"crate_name": "winapi_util",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11156,14 +14056,20 @@
"edition": "2021",
"version": "0.1.6"
},
- "license": "Unlicense/MIT"
+ "license": "Unlicense/MIT",
+ "license_ids": [
+ "MIT",
+ "Unlicense"
+ ],
+ "license_file": "LICENSE-MIT"
},
"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://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download",
+ "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download",
"sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
}
},
@@ -11172,18 +14078,24 @@
"Library": {
"crate_name": "winapi_x86_64_pc_windows_gnu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11209,14 +14121,20 @@
"**"
]
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": null
},
"windows-core 0.52.0": {
"name": "windows-core",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows-core/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows-core/0.52.0/download",
"sha256": "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
}
},
@@ -11225,9 +14143,12 @@
"Library": {
"crate_name": "windows_core",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11248,14 +14169,20 @@
"edition": "2021",
"version": "0.52.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows-sys 0.48.0": {
"name": "windows-sys",
"version": "0.48.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows-sys/0.48.0/download",
+ "url": "https://static.crates.io/crates/windows-sys/0.48.0/download",
"sha256": "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
}
},
@@ -11264,9 +14191,12 @@
"Library": {
"crate_name": "windows_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11307,14 +14237,20 @@
"edition": "2018",
"version": "0.48.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows-sys/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows-sys/0.52.0/download",
"sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
}
},
@@ -11323,9 +14259,12 @@
"Library": {
"crate_name": "windows_sys",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11368,14 +14307,20 @@
"edition": "2021",
"version": "0.52.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows-targets/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows-targets/0.48.5/download",
"sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
}
},
@@ -11384,9 +14329,12 @@
"Library": {
"crate_name": "windows_targets",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11445,14 +14393,20 @@
"edition": "2018",
"version": "0.48.5"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows-targets 0.52.0": {
"name": "windows-targets",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows-targets/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows-targets/0.52.0/download",
"sha256": "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
}
},
@@ -11461,9 +14415,12 @@
"Library": {
"crate_name": "windows_targets",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11522,14 +14479,20 @@
"edition": "2021",
"version": "0.52.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_aarch64_gnullvm 0.48.5": {
"name": "windows_aarch64_gnullvm",
"version": "0.48.5",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download",
"sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
}
},
@@ -11538,18 +14501,24 @@
"Library": {
"crate_name": "windows_aarch64_gnullvm",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11575,14 +14544,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_aarch64_gnullvm 0.52.0": {
"name": "windows_aarch64_gnullvm",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.0/download",
"sha256": "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
}
},
@@ -11591,18 +14566,24 @@
"Library": {
"crate_name": "windows_aarch64_gnullvm",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11628,14 +14609,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download",
"sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
}
},
@@ -11644,18 +14631,24 @@
"Library": {
"crate_name": "windows_aarch64_msvc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11681,14 +14674,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_aarch64_msvc 0.52.0": {
"name": "windows_aarch64_msvc",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.0/download",
"sha256": "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
}
},
@@ -11697,18 +14696,24 @@
"Library": {
"crate_name": "windows_aarch64_msvc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11734,14 +14739,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download",
"sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
}
},
@@ -11750,18 +14761,24 @@
"Library": {
"crate_name": "windows_i686_gnu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11787,14 +14804,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_i686_gnu 0.52.0": {
"name": "windows_i686_gnu",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_i686_gnu/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.0/download",
"sha256": "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
}
},
@@ -11803,18 +14826,24 @@
"Library": {
"crate_name": "windows_i686_gnu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11840,14 +14869,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download",
"sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
}
},
@@ -11856,18 +14891,24 @@
"Library": {
"crate_name": "windows_i686_msvc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11893,14 +14934,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_i686_msvc 0.52.0": {
"name": "windows_i686_msvc",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_i686_msvc/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.0/download",
"sha256": "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
}
},
@@ -11909,18 +14956,24 @@
"Library": {
"crate_name": "windows_i686_msvc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11946,14 +14999,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download",
"sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
}
},
@@ -11962,18 +15021,24 @@
"Library": {
"crate_name": "windows_x86_64_gnu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -11999,14 +15064,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_x86_64_gnu 0.52.0": {
"name": "windows_x86_64_gnu",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.0/download",
"sha256": "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
}
},
@@ -12015,18 +15086,24 @@
"Library": {
"crate_name": "windows_x86_64_gnu",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -12052,14 +15129,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download",
"sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
}
},
@@ -12068,18 +15151,24 @@
"Library": {
"crate_name": "windows_x86_64_gnullvm",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -12105,14 +15194,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_x86_64_gnullvm 0.52.0": {
"name": "windows_x86_64_gnullvm",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.0/download",
"sha256": "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
}
},
@@ -12121,18 +15216,24 @@
"Library": {
"crate_name": "windows_x86_64_gnullvm",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -12158,14 +15259,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR 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://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download",
+ "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download",
"sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
}
},
@@ -12174,18 +15281,24 @@
"Library": {
"crate_name": "windows_x86_64_msvc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -12211,14 +15324,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
},
"windows_x86_64_msvc 0.52.0": {
"name": "windows_x86_64_msvc",
"version": "0.52.0",
+ "package_url": "https://github.com/microsoft/windows-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.0/download",
+ "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.0/download",
"sha256": "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
}
},
@@ -12227,18 +15346,24 @@
"Library": {
"crate_name": "windows_x86_64_msvc",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -12264,7 +15389,12 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "license-apache-2.0"
}
},
"binary_crates": [
@@ -12300,7 +15430,8 @@
"aarch64-pc-windows-msvc"
],
"aarch64-unknown-linux-gnu": [
- "aarch64-unknown-linux-gnu"
+ "aarch64-unknown-linux-gnu",
+ "aarch64-unknown-nixos-gnu"
],
"aarch64-unknown-nixos-gnu": [
"aarch64-unknown-nixos-gnu"
@@ -12597,42 +15728,6 @@
"x86_64-unknown-none",
"x86_64-unknown-uefi"
],
- "cfg(not(target_family = \"wasm\"))": [
- "aarch64-apple-darwin",
- "aarch64-apple-ios",
- "aarch64-apple-ios-sim",
- "aarch64-fuchsia",
- "aarch64-linux-android",
- "aarch64-pc-windows-msvc",
- "aarch64-unknown-linux-gnu",
- "aarch64-unknown-nixos-gnu",
- "aarch64-unknown-nto-qnx710",
- "aarch64-unknown-uefi",
- "arm-unknown-linux-gnueabi",
- "armv7-linux-androideabi",
- "armv7-unknown-linux-gnueabi",
- "i686-apple-darwin",
- "i686-linux-android",
- "i686-pc-windows-msvc",
- "i686-unknown-freebsd",
- "i686-unknown-linux-gnu",
- "powerpc-unknown-linux-gnu",
- "riscv32imc-unknown-none-elf",
- "riscv64gc-unknown-none-elf",
- "s390x-unknown-linux-gnu",
- "thumbv7em-none-eabi",
- "thumbv8m.main-none-eabi",
- "x86_64-apple-darwin",
- "x86_64-apple-ios",
- "x86_64-fuchsia",
- "x86_64-linux-android",
- "x86_64-pc-windows-msvc",
- "x86_64-unknown-freebsd",
- "x86_64-unknown-linux-gnu",
- "x86_64-unknown-nixos-gnu",
- "x86_64-unknown-none",
- "x86_64-unknown-uefi"
- ],
"cfg(not(windows))": [
"aarch64-apple-darwin",
"aarch64-apple-ios",
@@ -12798,7 +15893,8 @@
"x86_64-unknown-freebsd"
],
"x86_64-unknown-linux-gnu": [
- "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"
diff --git a/third_party/rust_efi/Cargo.Bazel.lock b/third_party/rust_efi/Cargo.Bazel.lock
index 52304d2..dcd8578 100644
--- a/third_party/rust_efi/Cargo.Bazel.lock
+++ b/third_party/rust_efi/Cargo.Bazel.lock
@@ -1,12 +1,13 @@
{
- "checksum": "a1c7a289e256f2cff7031d2be36134432ce99d39d65ff4c0838f86d55dda6107",
+ "checksum": "ae272fd8dc615bb5d51c9adb9824b2433c909c9e72a18d2de2d89916e0ed5115",
"crates": {
"anyhow 1.0.75": {
"name": "anyhow",
"version": "1.0.75",
+ "package_url": "https://github.com/dtolnay/anyhow",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/anyhow/1.0.75/download",
+ "url": "https://static.crates.io/crates/anyhow/1.0.75/download",
"sha256": "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
}
},
@@ -15,18 +16,24 @@
"Library": {
"crate_name": "anyhow",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -59,14 +66,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"bit_field 0.10.2": {
"name": "bit_field",
"version": "0.10.2",
+ "package_url": "https://github.com/phil-opp/rust-bit-field",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bit_field/0.10.2/download",
+ "url": "https://static.crates.io/crates/bit_field/0.10.2/download",
"sha256": "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
}
},
@@ -75,9 +88,12 @@
"Library": {
"crate_name": "bit_field",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -89,14 +105,20 @@
"edition": "2015",
"version": "0.10.2"
},
- "license": "Apache-2.0/MIT"
+ "license": "Apache-2.0/MIT",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"bitflags 2.4.0": {
"name": "bitflags",
"version": "2.4.0",
+ "package_url": "https://github.com/bitflags/bitflags",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bitflags/2.4.0/download",
+ "url": "https://static.crates.io/crates/bitflags/2.4.0/download",
"sha256": "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
}
},
@@ -105,9 +127,12 @@
"Library": {
"crate_name": "bitflags",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -119,14 +144,20 @@
"edition": "2021",
"version": "2.4.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"bytes 1.5.0": {
"name": "bytes",
"version": "1.5.0",
+ "package_url": "https://github.com/tokio-rs/bytes",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/bytes/1.5.0/download",
+ "url": "https://static.crates.io/crates/bytes/1.5.0/download",
"sha256": "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
}
},
@@ -135,9 +166,12 @@
"Library": {
"crate_name": "bytes",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -149,14 +183,19 @@
"edition": "2018",
"version": "1.5.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"cfg-if 1.0.0": {
"name": "cfg-if",
"version": "1.0.0",
+ "package_url": "https://github.com/alexcrichton/cfg-if",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/cfg-if/1.0.0/download",
+ "url": "https://static.crates.io/crates/cfg-if/1.0.0/download",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
}
},
@@ -165,9 +204,12 @@
"Library": {
"crate_name": "cfg_if",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -179,20 +221,29 @@
"edition": "2018",
"version": "1.0.0"
},
- "license": "MIT/Apache-2.0"
+ "license": "MIT/Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"compile_with_bazel 0.0.0": {
"name": "compile_with_bazel",
"version": "0.0.0",
+ "package_url": null,
"repository": null,
"targets": [
{
"Library": {
"crate_name": "compile_with_bazel",
"crate_root": "fake_lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -225,14 +276,17 @@
"edition": "2015",
"version": "0.0.0"
},
- "license": null
+ "license": null,
+ "license_ids": [],
+ "license_file": null
},
"either 1.9.0": {
"name": "either",
"version": "1.9.0",
+ "package_url": "https://github.com/bluss/either",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/either/1.9.0/download",
+ "url": "https://static.crates.io/crates/either/1.9.0/download",
"sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
}
},
@@ -241,9 +295,12 @@
"Library": {
"crate_name": "either",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -255,14 +312,20 @@
"edition": "2018",
"version": "1.9.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"itertools 0.11.0": {
"name": "itertools",
"version": "0.11.0",
+ "package_url": "https://github.com/rust-itertools/itertools",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/itertools/0.11.0/download",
+ "url": "https://static.crates.io/crates/itertools/0.11.0/download",
"sha256": "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
}
},
@@ -271,9 +334,12 @@
"Library": {
"crate_name": "itertools",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -300,14 +366,20 @@
"edition": "2018",
"version": "0.11.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"log 0.4.20": {
"name": "log",
"version": "0.4.20",
+ "package_url": "https://github.com/rust-lang/log",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/log/0.4.20/download",
+ "url": "https://static.crates.io/crates/log/0.4.20/download",
"sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
}
},
@@ -316,9 +388,12 @@
"Library": {
"crate_name": "log",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -330,14 +405,20 @@
"edition": "2015",
"version": "0.4.20"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"proc-macro2 1.0.67": {
"name": "proc-macro2",
"version": "1.0.67",
+ "package_url": "https://github.com/dtolnay/proc-macro2",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.67/download",
+ "url": "https://static.crates.io/crates/proc-macro2/1.0.67/download",
"sha256": "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
}
},
@@ -346,18 +427,24 @@
"Library": {
"crate_name": "proc_macro2",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -394,14 +481,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"prost 0.12.1": {
"name": "prost",
"version": "0.12.1",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost/0.12.1/download",
+ "url": "https://static.crates.io/crates/prost/0.12.1/download",
"sha256": "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d"
}
},
@@ -410,9 +503,12 @@
"Library": {
"crate_name": "prost",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -448,14 +544,19 @@
},
"version": "0.12.1"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"prost-derive 0.12.1": {
"name": "prost-derive",
"version": "0.12.1",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost-derive/0.12.1/download",
+ "url": "https://static.crates.io/crates/prost-derive/0.12.1/download",
"sha256": "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32"
}
},
@@ -464,9 +565,12 @@
"ProcMacro": {
"crate_name": "prost_derive",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -503,14 +607,19 @@
"edition": "2021",
"version": "0.12.1"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"prost-types 0.12.1": {
"name": "prost-types",
"version": "0.12.1",
+ "package_url": "https://github.com/tokio-rs/prost",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/prost-types/0.12.1/download",
+ "url": "https://static.crates.io/crates/prost-types/0.12.1/download",
"sha256": "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf"
}
},
@@ -519,9 +628,12 @@
"Library": {
"crate_name": "prost_types",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -542,14 +654,19 @@
"edition": "2021",
"version": "0.12.1"
},
- "license": "Apache-2.0"
+ "license": "Apache-2.0",
+ "license_ids": [
+ "Apache-2.0"
+ ],
+ "license_file": "LICENSE"
},
"ptr_meta 0.2.0": {
"name": "ptr_meta",
"version": "0.2.0",
+ "package_url": "https://github.com/djkoloski/ptr_meta",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ptr_meta/0.2.0/download",
+ "url": "https://static.crates.io/crates/ptr_meta/0.2.0/download",
"sha256": "bcada80daa06c42ed5f48c9a043865edea5dc44cbf9ac009fda3b89526e28607"
}
},
@@ -558,9 +675,12 @@
"Library": {
"crate_name": "ptr_meta",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -581,14 +701,19 @@
},
"version": "0.2.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"ptr_meta_derive 0.2.0": {
"name": "ptr_meta_derive",
"version": "0.2.0",
+ "package_url": "https://github.com/djkoloski/ptr_meta",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ptr_meta_derive/0.2.0/download",
+ "url": "https://static.crates.io/crates/ptr_meta_derive/0.2.0/download",
"sha256": "bca9224df2e20e7c5548aeb5f110a0f3b77ef05f8585139b7148b59056168ed2"
}
},
@@ -597,9 +722,12 @@
"ProcMacro": {
"crate_name": "ptr_meta_derive",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -628,14 +756,19 @@
"edition": "2021",
"version": "0.2.0"
},
- "license": "MIT"
+ "license": "MIT",
+ "license_ids": [
+ "MIT"
+ ],
+ "license_file": "LICENSE"
},
"quote 1.0.33": {
"name": "quote",
"version": "1.0.33",
+ "package_url": "https://github.com/dtolnay/quote",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/quote/1.0.33/download",
+ "url": "https://static.crates.io/crates/quote/1.0.33/download",
"sha256": "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
}
},
@@ -644,9 +777,12 @@
"Library": {
"crate_name": "quote",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -674,14 +810,20 @@
"edition": "2018",
"version": "1.0.33"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"syn 1.0.109": {
"name": "syn",
"version": "1.0.109",
+ "package_url": "https://github.com/dtolnay/syn",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/syn/1.0.109/download",
+ "url": "https://static.crates.io/crates/syn/1.0.109/download",
"sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
}
},
@@ -690,18 +832,24 @@
"Library": {
"crate_name": "syn",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
},
{
"BuildScript": {
"crate_name": "build_script_build",
"crate_root": "build.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -752,14 +900,20 @@
"**"
]
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"syn 2.0.37": {
"name": "syn",
"version": "2.0.37",
+ "package_url": "https://github.com/dtolnay/syn",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/syn/2.0.37/download",
+ "url": "https://static.crates.io/crates/syn/2.0.37/download",
"sha256": "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
}
},
@@ -768,9 +922,12 @@
"Library": {
"crate_name": "syn",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -813,14 +970,20 @@
"edition": "2021",
"version": "2.0.37"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"ucs2 0.3.2": {
"name": "ucs2",
"version": "0.3.2",
+ "package_url": "https://github.com/GabrielMajeri/ucs2-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/ucs2/0.3.2/download",
+ "url": "https://static.crates.io/crates/ucs2/0.3.2/download",
"sha256": "bad643914094137d475641b6bab89462505316ec2ce70907ad20102d28a79ab8"
}
},
@@ -829,9 +992,12 @@
"Library": {
"crate_name": "ucs2",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -852,14 +1018,19 @@
"edition": "2018",
"version": "0.3.2"
},
- "license": "MPL-2.0"
+ "license": "MPL-2.0",
+ "license_ids": [
+ "MPL-2.0"
+ ],
+ "license_file": "LICENSE"
},
"uefi 0.24.0": {
"name": "uefi",
"version": "0.24.0",
+ "package_url": "https://github.com/rust-osdev/uefi-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/uefi/0.24.0/download",
+ "url": "https://static.crates.io/crates/uefi/0.24.0/download",
"sha256": "3b63e82686b4bdb0db74f18b2abbd60a0470354fb640aa69e115598d714d0a10"
}
},
@@ -868,9 +1039,12 @@
"Library": {
"crate_name": "uefi",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -930,14 +1104,19 @@
},
"version": "0.24.0"
},
- "license": "MPL-2.0"
+ "license": "MPL-2.0",
+ "license_ids": [
+ "MPL-2.0"
+ ],
+ "license_file": "LICENSE"
},
"uefi-macros 0.12.0": {
"name": "uefi-macros",
"version": "0.12.0",
+ "package_url": "https://github.com/rust-osdev/uefi-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/uefi-macros/0.12.0/download",
+ "url": "https://static.crates.io/crates/uefi-macros/0.12.0/download",
"sha256": "023d94ef8e135d068b9a3bd94614ef2610b2b0419ade0a9d8f3501fa9cd08e95"
}
},
@@ -946,9 +1125,12 @@
"ProcMacro": {
"crate_name": "uefi_macros",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -977,14 +1159,19 @@
"edition": "2021",
"version": "0.12.0"
},
- "license": "MPL-2.0"
+ "license": "MPL-2.0",
+ "license_ids": [
+ "MPL-2.0"
+ ],
+ "license_file": "LICENSE"
},
"uefi-raw 0.3.0": {
"name": "uefi-raw",
"version": "0.3.0",
+ "package_url": "https://github.com/rust-osdev/uefi-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/uefi-raw/0.3.0/download",
+ "url": "https://static.crates.io/crates/uefi-raw/0.3.0/download",
"sha256": "62642516099c6441a5f41b0da8486d5fc3515a0603b0fdaea67b31600e22082e"
}
},
@@ -993,9 +1180,12 @@
"Library": {
"crate_name": "uefi_raw",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1024,14 +1214,19 @@
"edition": "2021",
"version": "0.3.0"
},
- "license": "MPL-2.0"
+ "license": "MPL-2.0",
+ "license_ids": [
+ "MPL-2.0"
+ ],
+ "license_file": "LICENSE"
},
"uefi-services 0.21.0": {
"name": "uefi-services",
"version": "0.21.0",
+ "package_url": "https://github.com/rust-osdev/uefi-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/uefi-services/0.21.0/download",
+ "url": "https://static.crates.io/crates/uefi-services/0.21.0/download",
"sha256": "44b32954ebbb4be5ebfde0df6699c2091f04e9f9c3762c65f3435dfb1a90a668"
}
},
@@ -1040,9 +1235,12 @@
"Library": {
"crate_name": "uefi_services",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1079,14 +1277,19 @@
"edition": "2021",
"version": "0.21.0"
},
- "license": "MPL-2.0"
+ "license": "MPL-2.0",
+ "license_ids": [
+ "MPL-2.0"
+ ],
+ "license_file": "LICENSE"
},
"uguid 2.2.0": {
"name": "uguid",
"version": "2.2.0",
+ "package_url": "https://github.com/google/gpt-disk-rs",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/uguid/2.2.0/download",
+ "url": "https://static.crates.io/crates/uguid/2.2.0/download",
"sha256": "ab14ea9660d240e7865ce9d54ecdbd1cd9fa5802ae6f4512f093c7907e921533"
}
},
@@ -1095,9 +1298,12 @@
"Library": {
"crate_name": "uguid",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1109,14 +1315,20 @@
"edition": "2021",
"version": "2.2.0"
},
- "license": "MIT OR Apache-2.0"
+ "license": "MIT OR Apache-2.0",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT"
+ ],
+ "license_file": "LICENSE-APACHE"
},
"unicode-ident 1.0.12": {
"name": "unicode-ident",
"version": "1.0.12",
+ "package_url": "https://github.com/dtolnay/unicode-ident",
"repository": {
"Http": {
- "url": "https://crates.io/api/v1/crates/unicode-ident/1.0.12/download",
+ "url": "https://static.crates.io/crates/unicode-ident/1.0.12/download",
"sha256": "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
}
},
@@ -1125,9 +1337,12 @@
"Library": {
"crate_name": "unicode_ident",
"crate_root": "src/lib.rs",
- "srcs": [
- "**/*.rs"
- ]
+ "srcs": {
+ "allow_empty": true,
+ "include": [
+ "**/*.rs"
+ ]
+ }
}
}
],
@@ -1139,7 +1354,13 @@
"edition": "2018",
"version": "1.0.12"
},
- "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
+ "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016",
+ "license_ids": [
+ "Apache-2.0",
+ "MIT",
+ "Unicode-DFS-2016"
+ ],
+ "license_file": "LICENSE-APACHE"
}
},
"binary_crates": [],