Daniel López Azaña 46cd2fd0af ⬆️ (Cargo.toml): bump version from 0.1.2 to 0.1.3
 (connection_details.rs): add user and password parameters to ConnectionDetails::new

♻️ (ls_client.rs): refactor user and password handling into ConnectionDetails

🐛 (ls_client.rs): downgrade TLCP protocol version from 2.5.0 to 2.4.0

 (main.rs): update LightstreamerClient::new call to include optional username and password parameters
2024-04-05 17:38:05 +02:00

26 lines
992 B
TOML

[package]
name = "lightstreamer-client"
version = "0.1.3"
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"