aboutsummaryrefslogtreecommitdiff
path: root/client-native-rift/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-09-13 17:18:12 +0200
committermetamuffin <metamuffin@disroot.org>2022-09-13 17:18:12 +0200
commit7e88c11cbf817cb6cdbaf9b9f55564c4f9081e26 (patch)
tree23c151e7cc7a6650f34b1db6b6ce94f3871ea3f7 /client-native-rift/Cargo.toml
parent1b7116fedcfaef6410e3ff48ea16e893d8bb5989 (diff)
downloadkeks-meet-7e88c11cbf817cb6cdbaf9b9f55564c4f9081e26.tar
keks-meet-7e88c11cbf817cb6cdbaf9b9f55564c4f9081e26.tar.bz2
keks-meet-7e88c11cbf817cb6cdbaf9b9f55564c4f9081e26.tar.zst
port crypto to rust
Diffstat (limited to 'client-native-rift/Cargo.toml')
-rw-r--r--client-native-rift/Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/client-native-rift/Cargo.toml b/client-native-rift/Cargo.toml
new file mode 100644
index 0000000..a9324e7
--- /dev/null
+++ b/client-native-rift/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "client-native-rift"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+tokio = { version = "1.21", features = ["full"] }
+tokio-tungstenite = "*"
+
+serde = { version = "1.0.144", features = ["derive"] }
+serde_json = "*"
+
+env_logger = "0.8"
+log = "0.4"
+
+fastpbkdf2 = "0.1.0"
+aes-gcm = "0.10.1"
+base64 = "0.13.0"
+rand = "0.8.5"
+rand_chacha = "0.3.1"