[package] name = "hurrycurry-client-lib" version = "2.3.0" edition = "2021" [dependencies] hurrycurry-protocol = { path = "../protocol" } tungstenite = { version = "0.24.0", optional = true, features = [ "rustls-tls-native-roots", ] } tokio-tungstenite = { version = "0.24.0", optional = true, features = [ "rustls-tls-native-roots", ] } tokio = { version = "1.40.0", features = ["net", "sync"], optional = true } serde_json = "1.0.128" bincode = "2.0.0-rc.3" log = "0.4.22" anyhow = "1.0.89" 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"]