Merge pull request #7 from Dione-Software/changed_to_secure_dependencies

Security updates
This commit is contained in:
Hannes 2021-10-24 19:35:48 +02:00 committed by GitHub
commit e2d5567269
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ homepage = "https://github.com/Dione-Software/double-ratchet-2"
repository = "https://github.com/Dione-Software/double-ratchet-2" repository = "https://github.com/Dione-Software/double-ratchet-2"
readme = "README.md" readme = "README.md"
keywords = ["double-ratchet", "crypto", "cryptography", "signal"] keywords = ["double-ratchet", "crypto", "cryptography", "signal"]
version = "0.3.4" version = "0.3.5"
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
@ -22,14 +22,15 @@ rand_core = {version = "0.6"}
getrandom = {version = "0.2.3"} getrandom = {version = "0.2.3"}
hkdf = "0.11.0" hkdf = "0.11.0"
hmac = "0.11.0" hmac = "0.11.0"
aes-gcm-siv = {version = "0.10.0"} aes-gcm-siv = {version = "0.10.3"}
ring-compat = {version = "0.3.1", optional = true, features = ["digest"]} ring-compat = {version = "0.3.1", optional = true, features = ["digest"]}
sha2 = {version = "0.9.5", optional = true} sha2 = {version = "0.9.5", optional = true}
serde = {version = "1.0.125", default-features = false, features = ["derive"]} serde = {version = "1.0.125", default-features = false, features = ["derive"]}
serde_bytes = "0.11.5" serde_bytes = "0.11.5"
bincode = "1.3.3" bincode = "1.3.3"
hashbrown = {version = "0.11.2", features = ["serde"]} hashbrown = {version = "0.11.2", features = ["serde"]}
zeroize = {version = "1.3.0", features = ["zeroize_derive"]} zeroize = {version = "1.3", features = ["zeroize_derive"]}
const-oid = "0.6.2"
[dev-dependencies] [dev-dependencies]
criterion = "0.3.4" criterion = "0.3.4"