diff options
Diffstat (limited to 'client-native-rift/Cargo.toml')
| -rw-r--r-- | client-native-rift/Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client-native-rift/Cargo.toml b/client-native-rift/Cargo.toml index a9324e7..de44966 100644 --- a/client-native-rift/Cargo.toml +++ b/client-native-rift/Cargo.toml @@ -5,7 +5,11 @@ edition = "2021" [dependencies] tokio = { version = "1.21", features = ["full"] } -tokio-tungstenite = "*" +futures-util = "0.3.24" + +webrtc = "0.5.0" +tokio-tungstenite = { version = "*", features = ["rustls-tls"] } +url = "2.3.1" serde = { version = "1.0.144", features = ["derive"] } serde_json = "*" @@ -15,6 +19,7 @@ log = "0.4" fastpbkdf2 = "0.1.0" aes-gcm = "0.10.1" -base64 = "0.13.0" +sha256 = "1.0.3" rand = "0.8.5" rand_chacha = "0.3.1" +base64 = "0.13.0" |