Skip to content

Commit 825f065

Browse files
committed
Auto merge of #4245 - rust-lang:renovate/hmac-0.x, r=Turbo87
Update Rust crate hmac to 0.12 [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [hmac](https://crates.io/crates/hmac) | dependencies | minor | `0.11` -> `0.12` | --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/rust-lang/crates.io).
2 parents a17759c + 883ac6a commit 825f065

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

Cargo.lock

Lines changed: 17 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-registry-s3/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ path = "lib.rs"
1515
[dependencies]
1616
base64 = "0.13"
1717
chrono = "0.4"
18-
sha-1 = "0.9"
19-
hmac = "0.11"
18+
sha-1 = "0.10"
19+
hmac = "0.12"
2020
reqwest = { version = "0.11", features = ["blocking"] }

cargo-registry-s3/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![warn(clippy::all, rust_2018_idioms)]
22

33
use chrono::prelude::Utc;
4-
use hmac::{Hmac, Mac, NewMac};
4+
use hmac::{Hmac, Mac};
55
use reqwest::{
66
blocking::{Body, Client, Response},
77
header,

0 commit comments

Comments
 (0)