aboutsummaryrefslogtreecommitdiff
path: root/server/editor/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-12-25 21:37:01 +0100
committermetamuffin <metamuffin@disroot.org>2024-12-25 21:37:01 +0100
commit31507963a05dffb3327b62dd54629420061d6c4d (patch)
tree5f245a2abc769b5eeb30d43f1ec69d033a825a60 /server/editor/Cargo.toml
parentcc6b50debb9d5b740adbe6f803755413c972659a (diff)
downloadhurrycurry-31507963a05dffb3327b62dd54629420061d6c4d.tar
hurrycurry-31507963a05dffb3327b62dd54629420061d6c4d.tar.bz2
hurrycurry-31507963a05dffb3327b62dd54629420061d6c4d.tar.zst
draft map editor
Diffstat (limited to 'server/editor/Cargo.toml')
-rw-r--r--server/editor/Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/server/editor/Cargo.toml b/server/editor/Cargo.toml
new file mode 100644
index 00000000..c8f15b0a
--- /dev/null
+++ b/server/editor/Cargo.toml
@@ -0,0 +1,21 @@
+[package]
+name = "hurrycurry-editor"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+tokio = { version = "1.40.0", features = ["full"] }
+serde_json = "1.0.128"
+log = "0.4.22"
+env_logger = "0.11.5"
+anyhow = "1.0.89"
+tokio-tungstenite = { version = "0.24.0", features = [
+ "rustls-tls-native-roots",
+] }
+rustls = { version = "0.23.13", features = ["ring"] }
+clap = { version = "4.5.23", features = ["derive"] }
+futures-util = "0.3.31"
+shlex = "1.3.0"
+
+hurrycurry-protocol = { path = "../protocol" }
+hurrycurry-client-lib = { path = "../client-lib" }