diff options
| author | pierwill <pierwill@users.noreply.github.com> | 2022-02-10 10:54:01 -0600 |
|---|---|---|
| committer | pierwill <pierwill@users.noreply.github.com> | 2022-02-13 15:29:01 -0600 |
| commit | ef6dd124d67305edeb5e9e720cc2852936ffc044 (patch) | |
| tree | e189075b3f7f9bb1d7ee78651592167ec72292d7 /src | |
| parent | 1a8fa2af1c909ae5c6180f978275894c75a90c44 (diff) | |
| download | rust-ef6dd124d67305edeb5e9e720cc2852936ffc044.tar.gz rust-ef6dd124d67305edeb5e9e720cc2852936ffc044.zip | |
Update `sha1`, `sha2`, and `md5` dependencies
This removes the `cpuid-bool` dependency, which is deprecated, while adding `crypto-common` as a new dependency.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/build-manifest/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/tools/tidy/src/deps.rs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/build-manifest/Cargo.toml b/src/tools/build-manifest/Cargo.toml index dedafd85cfd..c022d3aa0ac 100644 --- a/src/tools/build-manifest/Cargo.toml +++ b/src/tools/build-manifest/Cargo.toml @@ -10,7 +10,7 @@ serde_json = "1.0" anyhow = "1.0.32" flate2 = "1.0.16" tar = "0.4.29" -sha2 = "0.9.1" +sha2 = "0.10.1" rayon = "1.5.1" hex = "0.4.2" num_cpus = "1.13.0" diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index da0c9b66a8c..52429fee461 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -93,11 +93,12 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[ "chrono", "cmake", "compiler_builtins", - "cpuid-bool", + "cpufeatures", "crc32fast", "crossbeam-deque", "crossbeam-epoch", "crossbeam-utils", + "crypto-common", "cstr", "datafrog", "difference", |
