blob: 2c5a4d6804aaee650cb72bb74b192d5ed68fd950 (
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
26
|
[package]
name = "libkeks"
version = "0.3.0"
edition = "2021"
[dependencies]
tokio = { version = "1.38", features = ["full"] }
futures-util = "0.3.30"
webrtc = "0.11.0"
tokio-tungstenite = { version = "*", features = ["rustls-tls"] }
url = "2.5.2"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "*"
log = "0.4"
fastpbkdf2 = "0.1.0"
aes-gcm = "0.10.3"
hex = "0.4.3"
sha2 = "0.10.8"
rand = "0.8.5"
rand_chacha = "0.3.1"
base64 = "0.22.1"
bytes = "1.6.0"
|