blob: 5644a90535db0177d96b08b86b787c84161fbcb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "hurrycurry-client-lib"
version = "0.1.0"
edition = "2021"
[dependencies]
hurrycurry-protocol = { path = "../protocol" }
tungstenite = { version = "0.23.0", optional = true, features = [
"rustls-tls-native-roots",
] }
tokio-tungstenite = { version = "0.23.1", optional = true }
tokio = { version = "1.39.2", features = ["net"], optional = true }
serde_json = "1.0.122"
bincode = "2.0.0-rc.3"
log = "0.4.22"
anyhow = "1.0.86"
futures-util = { version = "0.3.30", optional = true }
[features]
default = ["sync-network", "tokio-network"]
sync-network = ["dep:tungstenite"]
tokio-network = ["dep:tokio-tungstenite", "dep:tokio", "dep:futures-util"]
|