Skip to content

Commit

Permalink
Bump our deps
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Oct 6, 2023
1 parent 23098d3 commit bdfe0a4
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,33 +26,33 @@ libolm-compat = []
low-level-api = []

[dependencies]
aes = "0.8.2"
arrayvec = { version = "0.7.2", features = ["serde"] }
base64 = "0.21.2"
aes = "0.8.3"
arrayvec = { version = "0.7.4", features = ["serde"] }
base64 = "0.21.4"
cbc = { version = "0.1.2", features = ["std"] }
curve25519-dalek = { git = "https://github.com/dalek-cryptography/curve25519-dalek/", rev = "e44d4b5903106dde0e5b28a2580061de7dfe8a9f", default-features = false }
ed25519-dalek = { git = "https://github.com/dalek-cryptography/curve25519-dalek/", rev = "e44d4b5903106dde0e5b28a2580061de7dfe8a9f", default-features = false, features = ["rand_core", "std", "serde", "hazmat"] }
curve25519-dalek = { version = "4.1.1", default-features = false }
ed25519-dalek = { version = "2.0.0", default-features = false, features = ["rand_core", "std", "serde", "hazmat"] }
getrandom = "0.2.10"
hkdf = "0.12.3"
hmac = "0.12.1"
matrix-pickle = { version = "0.1.0" }
matrix-pickle = { version = "0.1.1" }
pkcs7 = "0.4.1"
prost = "0.11.9"
prost = "0.12.1"
rand = "0.8.5"
serde = { version = "1.0.163", features = ["derive"] }
serde_bytes = "0.11.9"
serde_json = "1.0.96"
sha2 = "0.10.6"
serde = { version = "1.0.188", features = ["derive"] }
serde_bytes = "0.11.12"
serde_json = "1.0.107"
sha2 = "0.10.8"
subtle = "2.5.0"
thiserror = "1.0.40"
x25519-dalek = { git = "https://github.com/dalek-cryptography/curve25519-dalek/", rev = "e44d4b5903106dde0e5b28a2580061de7dfe8a9f", features = ["serde", "reusable_secrets", "static_secrets"] }
thiserror = "1.0.49"
x25519-dalek = { version = "2.0.0", features = ["serde", "reusable_secrets", "static_secrets"] }
zeroize = "1.6.0"

[dev-dependencies]
anyhow = "1.0.71"
anyhow = "1.0.75"
assert_matches = "1.5.0"
olm-rs = "2.2.0"
proptest = "1.2.0"
proptest = "1.3.1"

[patch.crates-io]
olm-rs = { git = "https://github.com/poljar/olm-rs" }

0 comments on commit bdfe0a4

Please sign in to comment.