aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorcurly <curlybryce@protonmail.com>2023-03-02 11:51:35 -0700
committercurly <curlybryce@protonmail.com>2023-03-02 11:51:35 -0700
commit06a03ed411a7c0ffeeadd08ed08cd2cf0ebd6be5 (patch)
tree02a906660f4d5ecd5bb5ae2e4d2fc57ce901eb2c /Cargo.toml
parent531c6d1bf701af8548bc764cd977942f65bcf76f (diff)
downloadrocket_test-06a03ed411a7c0ffeeadd08ed08cd2cf0ebd6be5.tar.gz
rocket_test-06a03ed411a7c0ffeeadd08ed08cd2cf0ebd6be5.tar.bz2
rocket_test-06a03ed411a7c0ffeeadd08ed08cd2cf0ebd6be5.zip
separate websockets to websocket.rsHEADmaster
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e67a995..9e36fde 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,14 +1,15 @@
[package]
name = "rocket_test"
-version = "0.3.0"
+version = "0.3.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-serde = "1.0.130"
-serde_json = {version = "1.0.93", features = ["std"]}
-chrono = "0.4.23"
-sqlite = "0.30.4"
-rocket = {version = "0.5.0-rc.2", features = ["json"]}
-tungstenite = "0.18.0" \ No newline at end of file
+serde = "1.0.130" # Serialization
+serde_json = {version = "1.0.93", features = ["std"]} # Json serialization
+chrono = "0.4.23" # Time and date
+sqlite = "0.30.4" # Database
+rocket = {version = "0.5.0-rc.2", features = ["json"]} # Web endpoints
+tungstenite = "0.18.0" # Websockets
+rand_chacha = "0.3.1" # Session keys \ No newline at end of file