aboutsummaryrefslogtreecommitdiff
path: root/server/client-lib/Cargo.toml
diff options
context:
space:
mode:
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"]