blob: 15a1084e6b9f44e74f16af9a8e4c1d3d92f70d20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[package]
name = "client-native-lib"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.21", features = ["full"] }
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 = "*"
log = "0.4"
fastpbkdf2 = "0.1.0"
aes-gcm = "0.10.1"
sha256 = "1.0.3"
rand = "0.8.5"
rand_chacha = "0.3.1"
base64 = "0.13.0"
bytes = "1.2.1"
|