Bump hmac version

This commit is contained in:
Jonas Platte 2020-09-17 14:26:59 +02:00 committed by Ryan Leckey
parent f155bb83e8
commit 63bfab90c5
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View file

@ -548,9 +548,9 @@ dependencies = [
[[package]]
name = "crypto-mac"
version = "0.8.0"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
checksum = "58bcd97a54c7ca5ce2f6eb16f6bede5b0ab5f0055fedc17d2f0b4466e21671ca"
dependencies = [
"generic-array",
"subtle",
@ -908,9 +908,9 @@ checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
[[package]]
name = "hmac"
version = "0.8.1"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
checksum = "deae6d9dbb35ec2c502d62b8f7b1c000a0822c3b0794ba36b3149c0a1c840dff"
dependencies = [
"crypto-mac",
"digest",

View file

@ -62,7 +62,7 @@ futures-util = { version = "0.3.5", features = [ "sink" ] }
generic-array = { version = "0.14.2", default-features = false, optional = true }
hashbrown = "0.9.0"
hex = "0.4.2"
hmac = { version = "0.8.0", default-features = false, optional = true }
hmac = { version = "0.9.0", default-features = false, optional = true }
itoa = "0.4.5"
ipnetwork = { version = "0.17.0", default-features = false, optional = true }
libc = "0.2.71"