summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
new file mode 100644
index 0000000..98ffd29
--- /dev/null
+++ b/server/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "rollback"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+axum = { version = "0.6.12", features = ["ws"] }
+tower-http = { version = "0.4.0", features = ["fs"] }