Merge pull request 'Update Rust crate sha2 to 0.11' (#12) from renovate/sha2-0.x into main
All checks were successful
Build and Test / rust-boss (push) Successful in 6m7s
All checks were successful
Build and Test / rust-boss (push) Successful in 6m7s
Reviewed-on: #12
This commit is contained in:
commit
137a1afd75
2 changed files with 3 additions and 3 deletions
|
|
@ -13,12 +13,12 @@ serde_json = "1"
|
||||||
quick-xml = { version = "0.40", features = [ "serialize" ] }
|
quick-xml = { version = "0.40", features = [ "serialize" ] }
|
||||||
chrono = { version = "0.4", features = [ "serde" ] }
|
chrono = { version = "0.4", features = [ "serde" ] }
|
||||||
sha1 = "0.11"
|
sha1 = "0.11"
|
||||||
sha2 = "0.10"
|
sha2 = "0.11"
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
hex-literal = "1.0"
|
hex-literal = "1.0"
|
||||||
aes = "0.9"
|
aes = "0.9"
|
||||||
ctr = "0.10"
|
ctr = "0.10"
|
||||||
hmac = "0.12"
|
hmac = "0.13"
|
||||||
md-5 = "0.11"
|
md-5 = "0.11"
|
||||||
rand = "0.10"
|
rand = "0.10"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
use aes::Aes128;
|
use aes::Aes128;
|
||||||
use ctr::cipher::{KeyIvInit, StreamCipher};
|
use ctr::cipher::{KeyIvInit, StreamCipher};
|
||||||
use hmac::{Hmac, Mac};
|
use hmac::{Hmac, KeyInit, Mac};
|
||||||
use sha2::Sha256;
|
use sha2::Sha256;
|
||||||
use md5::{Md5, Digest};
|
use md5::{Md5, Digest};
|
||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue