[package] name = "binance_client_ws" description = "A Rust SDK for working with the Binance API" version = "0.1.0" license = "Apache-2.0" repository = "https://github.com/gmosx/binance_sdk_rust/tree/main/binance_client_ws" keywords = ["binance", "websocket", "client"] authors = ["Georgios Moschovitis "] edition = "2021" [dependencies] thiserror = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" futures = "0.3" futures-util = "0.3" tokio = { version = "1", features = ["full"] } tokio-tungstenite = { version = "0.20", features = ["rustls-tls-webpki-roots"] } tracing = "0.1" async-stream = "0.3" rand = "0.8"