Migrate to hkdf 0.12

We need to depend on two versions of the `sha2` crate because `rsa`
doesn't have a version depending on `digest 0.10` yet.
This commit is contained in:
Jack Grigg 2021-12-23 16:48:30 +00:00
parent 8fe4667a0c
commit ed63c41eb1
10 changed files with 194 additions and 98 deletions

View file

@ -24,8 +24,8 @@ base64 = "0.13"
chacha20poly1305 = { version = "0.9", default-features = false, features = ["alloc"] }
# - HKDF from RFC 5869 with SHA-256
hkdf = "0.11"
sha2 = "0.9"
hkdf = "0.12"
sha2 = "0.10"
# - CSPRNG
rand = "0.8"