diff options
author | metamuffin <metamuffin@disroot.org> | 2023-06-25 09:18:20 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-06-25 09:18:20 +0200 |
commit | 462d9c511ad96cd2270d44bada243d981d5891e3 (patch) | |
tree | e5c62ab6d8cdbb67e132d8275e999bb091ac60e1 /client-native-lib/Cargo.toml | |
parent | e7a3c758bdd63d2a444f2fe578e54045c43ad6bb (diff) | |
download | keks-meet-462d9c511ad96cd2270d44bada243d981d5891e3.tar keks-meet-462d9c511ad96cd2270d44bada243d981d5891e3.tar.bz2 keks-meet-462d9c511ad96cd2270d44bada243d981d5891e3.tar.zst |
update all of the rusty stuff. also fixed webrtc build problems
Diffstat (limited to 'client-native-lib/Cargo.toml')
-rw-r--r-- | client-native-lib/Cargo.toml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/client-native-lib/Cargo.toml b/client-native-lib/Cargo.toml index c7c36d5..43e44e0 100644 --- a/client-native-lib/Cargo.toml +++ b/client-native-lib/Cargo.toml @@ -4,22 +4,22 @@ version = "0.1.0" edition = "2021" [dependencies] -tokio = { version = "1.25", features = ["full"] } -futures-util = "0.3.26" +tokio = { version = "1.28", features = ["full"] } +futures-util = "0.3.28" -webrtc = "0.6.0" +webrtc = "0.8.0" tokio-tungstenite = { version = "*", features = ["rustls-tls"] } -url = "2.3.1" +url = "2.4.0" -serde = { version = "1.0.152", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } serde_json = "*" log = "0.4" fastpbkdf2 = "0.1.0" -aes-gcm = "0.10.1" -sha256 = "1.1.2" +aes-gcm = "0.10.2" +sha256 = "1.1.4" rand = "0.8.5" rand_chacha = "0.3.1" -base64 = "0.21.0" +base64 = "0.21.2" bytes = "1.4.0" |