diff --git a/Cargo.lock b/Cargo.lock index d0af63b..0d3153f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2047,11 +2047,11 @@ checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" [[package]] name = "salsa20" -version = "0.9.0" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0fbb5f676da676c260ba276a8f43a8dc67cf02d1438423aeb1c677a7212686" +checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" dependencies = [ - "cipher 0.3.0", + "cipher 0.4.3", ] [[package]] @@ -2071,9 +2071,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scrypt" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e73d6d7c6311ebdbd9184ad6c4447b2f36337e327bda107d3ba9e3c374f9d325" +checksum = "ba0aaf3911fff0d942c10a49779de7754699810fc7dbe3df515613b2ecc8195a" dependencies = [ "hmac", "pbkdf2", diff --git a/age/Cargo.toml b/age/Cargo.toml index 79e1b27..f440056 100644 --- a/age/Cargo.toml +++ b/age/Cargo.toml @@ -33,7 +33,7 @@ hmac = "0.12" sha2 = "0.10" # - scrypt from RFC 7914 -scrypt = { version = "0.8.1", default-features = false } +scrypt = { version = "0.9", default-features = false } # - CSPRNG rand = "0.8"