🔧 Update .gitignore to exclude .vscode directory ✨ Add futures-util and url dependencies to Cargo.toml ♻️ Refactor error handling into separate error module in Rust project 💡 Add get_password method documentation in connection_details.rs ♻️ Replace String with Transport enum for forced_transport in connection_options.rs ✨ Implement WebSocket connection logic in ls_client.rs with async support ✨ Add ClientStatus, ConnectionType, and DisconnectionType enums to manage client states in ls_client.rs ✨ (main.rs): add Transport enum to LightstreamerClient imports for WebSocket support ♻️ (main.rs): refactor signal handling to use SharedState struct for clean shutdown ✨ (main.rs): implement AtomicBool for graceful disconnect handling 📝 (main.rs): update comments to reflect new signal handling logic ✨ (main.rs): set forced transport to WebSocket streaming in Lightstreamer client options ✨ (util.rs): create new util module with clean_message function for message sanitization
26 lines
992 B
TOML
26 lines
992 B
TOML
[package]
|
|
name = "lightstreamer-client"
|
|
version = "0.1.0"
|
|
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"
|
|
hyper = { version = "1", features = ["full"] }
|
|
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"
|