diff options
Diffstat (limited to 'client-native-rift/Cargo.toml')
-rw-r--r-- | client-native-rift/Cargo.toml | 20 |
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" |