From a9c251db42fd16c898cfb29b174cd723d6b3c25c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Jan 2021 05:57:05 +0000 Subject: [PATCH 1/2] build(deps): bump libc from 0.2.80 to 0.2.82 Bumps [libc](https://github.com/rust-lang/libc) from 0.2.80 to 0.2.82. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.80...0.2.82) Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- sha1/Cargo.toml | 2 +- sha2/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1706b4524..296397289 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -145,9 +145,9 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "libc" -version = "0.2.80" +version = "0.2.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614" +checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929" [[package]] name = "md-5" diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index 1aac6d1e5..fbdd0e86e 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -25,7 +25,7 @@ sha1-asm = { version = "0.4", optional = true } cpuid-bool = "0.1" [target.'cfg(all(target_arch = "aarch64", target_os = "linux"))'.dependencies] -libc = { version = "0.2.80", optional = true } +libc = { version = "0.2.82", optional = true } [dev-dependencies] digest = { version = "0.9", features = ["dev"] } diff --git a/sha2/Cargo.toml b/sha2/Cargo.toml index 916fc0c87..98bd62623 100644 --- a/sha2/Cargo.toml +++ b/sha2/Cargo.toml @@ -25,7 +25,7 @@ sha2-asm = { version = "0.5", optional = true } cpuid-bool = "0.1" [target.'cfg(all(target_arch = "aarch64", target_os = "linux"))'.dependencies] -libc = { version = "0.2.80", optional = true } +libc = { version = "0.2.82", optional = true } [dev-dependencies] digest = { version = "0.9", features = ["dev"] } From 6f531971b92b7877822ec114dca2f98b0df1f23b Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Wed, 13 Jan 2021 08:47:03 +0300 Subject: [PATCH 2/2] fix workflow --- .github/workflows/sha2.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sha2.yml b/.github/workflows/sha2.yml index 0474741bb..bff236159 100644 --- a/.github/workflows/sha2.yml +++ b/.github/workflows/sha2.yml @@ -46,10 +46,10 @@ jobs: # 32-bit Linux/x86 - target: i686-unknown-linux-gnu rust: 1.41.0 # MSRV - deps: sudo apt install gcc-multilib + deps: sudo apt update && sudo apt install gcc-multilib - target: i686-unknown-linux-gnu rust: stable - deps: sudo apt install gcc-multilib + deps: sudo apt update && sudo apt install gcc-multilib # 64-bit Linux/x86_64 - target: x86_64-unknown-linux-gnu