♻️ (various): refactor code to use underscore prefix for unused variables ✨ (ls_client.rs): add constants for WebSocket connection setup ✨ (various): add unimplemented!() stubs for methods to be implemented 🔥 (main.rs): remove unused imports and commented code 🔥 (ls_client.rs): remove unused HashMap import and commented code 🐛 (subscription.rs): fix get_command_value to correctly format key before lookup 🔧 (Cargo.toml): remove hyper dependency as it's no longer used
25 lines
945 B
TOML
25 lines
945 B
TOML
[package]
|
|
name = "lightstreamer-client"
|
|
version = "0.1.7"
|
|
edition = "2021"
|
|
authors = ["Daniel López Azaña <daniloaz@gmail.com>"]
|
|
description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers."
|
|
license = "GPL-3.0-only"
|
|
repository = "https://github.com/daniloaz/lightstreamer-client"
|
|
documentation = "https://github.com/daniloaz/lightstreamer-client#readme"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cookie = { version = "0", features = ["percent-encode"]}
|
|
futures = "0"
|
|
futures-util = "0"
|
|
reqwest = { version = "0", features = ["json", "stream"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1" }
|
|
serde_urlencoded = "0"
|
|
signal-hook = "0"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
tokio-tungstenite = { version = "0", features = ["native-tls"] }
|
|
url = "2"
|