aboutsummaryrefslogtreecommitdiff
path: root/server/client-lib/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-19 20:21:27 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-19 20:21:27 +0200
commit231a5ce21fcee9195fcc504ee672e4464d627c47 (patch)
tree5d26373c2dbdaa3a4c7dfb6d2dc4e0fb63ca47a1 /server/client-lib/Cargo.toml
parent239f139e7cdc2ee9f2658a8038d2870293e20aa4 (diff)
downloadhurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar
hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar.bz2
hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar.zst
Rename client-lib crate to game-core
Diffstat (limited to 'server/client-lib/Cargo.toml')
-rw-r--r--server/client-lib/Cargo.toml23
1 files changed, 0 insertions, 23 deletions
diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml
deleted file mode 100644
index 47a75e7e..00000000
--- a/server/client-lib/Cargo.toml
+++ /dev/null
@@ -1,23 +0,0 @@
-[package]
-name = "hurrycurry-client-lib"
-version = "3.0.0"
-edition = "2024"
-
-[dependencies]
-hurrycurry-protocol = { path = "../protocol" }
-tungstenite = { version = "0.27.0", optional = true, features = [
- "rustls-tls-native-roots",
-] }
-tokio-tungstenite = { version = "0.27.0", optional = true, features = [
- "rustls-tls-native-roots",
-] }
-tokio = { version = "1.47.1", features = ["net", "sync"], optional = true }
-serde_json = "1.0.145"
-log = "0.4.28"
-anyhow = "1.0.99"
-futures-util = { version = "0.3.31", optional = true }
-
-[features]
-default = ["sync-network", "tokio-network"]
-sync-network = ["dep:tungstenite"]
-tokio-network = ["dep:tokio-tungstenite", "dep:tokio", "dep:futures-util"]