diff options
author | metamuffin <metamuffin@disroot.org> | 2023-10-29 16:14:06 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-10-29 16:14:06 +0100 |
commit | 695e497e86d47b14622299d5f2d47d14e0118d4f (patch) | |
tree | e9350a3b4cfc21e7807c29e54c420f07a73505a9 /client-native-lib/Cargo.toml | |
parent | 1ac7e4b6485a1d0e62c940caa687ddd2198963b0 (diff) | |
download | keks-meet-695e497e86d47b14622299d5f2d47d14e0118d4f.tar keks-meet-695e497e86d47b14622299d5f2d47d14e0118d4f.tar.bz2 keks-meet-695e497e86d47b14622299d5f2d47d14e0118d4f.tar.zst |
update native client
Diffstat (limited to 'client-native-lib/Cargo.toml')
-rw-r--r-- | client-native-lib/Cargo.toml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/client-native-lib/Cargo.toml b/client-native-lib/Cargo.toml index 43e44e0..ecfa0aa 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.28", features = ["full"] } -futures-util = "0.3.28" +tokio = { version = "1.33", features = ["full"] } +futures-util = "0.3.29" -webrtc = "0.8.0" +webrtc = "0.9.0" tokio-tungstenite = { version = "*", features = ["rustls-tls"] } -url = "2.4.0" +url = "2.4.1" -serde = { version = "1.0.164", features = ["derive"] } +serde = { version = "1.0.190", features = ["derive"] } serde_json = "*" log = "0.4" fastpbkdf2 = "0.1.0" -aes-gcm = "0.10.2" -sha256 = "1.1.4" +aes-gcm = "0.10.3" +sha256 = "1.4.0" rand = "0.8.5" rand_chacha = "0.3.1" -base64 = "0.21.2" -bytes = "1.4.0" +base64 = "0.21.5" +bytes = "1.5.0" |