summaryrefslogtreecommitdiff
path: root/server/client-lib/Cargo.toml
blob: c1168a3d50edf37349edf86f7277d4e662870446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "hurrycurry-client-lib"
version = "2.3.5"
edition = "2021"

[dependencies]
hurrycurry-protocol = { path = "../protocol" }
tungstenite = { version = "0.26.2", optional = true, features = [
    "rustls-tls-native-roots",
] }
tokio-tungstenite = { version = "0.26.2", optional = true, features = [
    "rustls-tls-native-roots",
] }
tokio = { version = "1.45.1", features = ["net", "sync"], optional = true }
serde_json = "1.0.140"
bincode = "2.0.1"
log = "0.4.27"
anyhow = "1.0.98"
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"]