Skip to content

Commit 8dd32ff

Browse files
committed
chore: More bumps
1 parent 2210e08 commit 8dd32ff

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -47,37 +47,37 @@ insecure-pk-encryption = ["libolm-compat"]
4747
low-level-api = []
4848

4949
[dependencies]
50-
aes = { version = "0.9.0-rc.1" }
51-
cipher = { version = "0.5.0-rc.1", features = ["alloc"] }
50+
aes = { version = "0.9.0-rc.2" }
51+
cipher = { version = "0.5.0-rc.2", features = ["alloc"] }
5252
arrayvec = { version = "0.7.6", features = ["serde"] }
5353
base64 = "0.22.1"
5454
base64ct = { version = "1.8.0", features = ["std", "alloc"] }
55-
cbc = { version = "0.2.0-rc.1" }
56-
chacha20poly1305 = "0.11.0-rc.1"
55+
cbc = { version = "0.2.0-rc.2" }
56+
chacha20poly1305 = "0.11.0-rc.2"
5757
curve25519-dalek = { version = "5.0.0-pre.1", default-features = false, features = ["zeroize"] }
5858
ed25519-dalek = { version = "3.0.0-pre.1", default-features = false, features = ["rand_core", "serde", "hazmat", "zeroize"] }
59-
getrandom = "0.3.3"
60-
hkdf = "0.13.0-rc.1"
61-
hmac = "0.13.0-rc.1"
62-
matrix-pickle = { version = "0.2.1" }
59+
getrandom = "0.3.4"
60+
hkdf = "0.13.0-rc.3"
61+
hmac = "0.13.0-rc.3"
62+
matrix-pickle = { version = "0.2.2" }
6363
prost = "0.14.1"
6464
rand = "0.9.2"
65-
serde = { version = "1.0.219", features = ["derive"] }
66-
serde_bytes = "0.11.17"
65+
serde = { version = "1.0.228", features = ["derive"] }
66+
serde_bytes = "0.11.19"
6767
serde_json = "1.0.143"
68-
sha2 = "0.11.0-rc.2"
68+
sha2 = "0.11.0-rc.3"
6969
subtle = "2.6.1"
70-
thiserror = "2.0.16"
70+
thiserror = "2.0.17"
7171
x25519-dalek = { version = "3.0.0-pre.1", features = ["serde", "reusable_secrets", "static_secrets", "zeroize"] }
7272
zeroize = { version = "1.8.1", features = ["derive"] }
7373

7474
[dev-dependencies]
75-
anyhow = "1.0.99"
75+
anyhow = "1.0.100"
7676
assert_matches2 = "0.1.2"
77-
criterion = { version = "3.0.5", package = "codspeed-criterion-compat" }
77+
criterion = { version = "4.1.0", package = "codspeed-criterion-compat" }
7878
ntest = "0.9.3"
7979
olm-rs = "2.2.0"
80-
proptest = "1.7.0"
80+
proptest = "1.9.0"
8181
insta = "1.43.2"
8282

8383
[patch.crates-io]

src/cipher/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use aes::{
1919
Aes256,
2020
cipher::{
2121
BlockModeDecrypt, BlockModeEncrypt, KeyIvInit,
22-
block_padding::{Pkcs7, UnpadError},
22+
block_padding::{Error as UnpadError, Pkcs7},
2323
},
2424
};
2525
use hmac::{Hmac, KeyInit as _, Mac as MacT, digest::MacError};

src/megolm/inbound_group_session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
use std::cmp::Ordering;
1616

17-
use aes::cipher::block_padding::UnpadError;
17+
use aes::cipher::block_padding::Error as UnpadError;
1818
use hmac::digest::MacError;
1919
use serde::{Deserialize, Serialize};
2020
use subtle::ConstantTimeEq;

src/olm/session/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mod root_key;
2222

2323
use std::fmt::Debug;
2424

25-
use aes::cipher::block_padding::UnpadError;
25+
use aes::cipher::block_padding::Error as UnpadError;
2626
use arrayvec::ArrayVec;
2727
use chain_key::RemoteChainKey;
2828
use double_ratchet::DoubleRatchet;

0 commit comments

Comments
 (0)