♻️ (item_update.rs): Refactor ItemUpdate struct and related methods to store only non-null changed fields ♻️ (ls_client.rs): Refactor data update handling to store updates in a HashMap and call on_item_update for each listener 🐛 (ls_client.rs): Fix item index off-by-one error in data update handling 🐛 (main.rs): Update on_item_update implementation to handle new ItemUpdate structure ♻️ (subscription_listener.rs): Refactor on_item_update method to take a reference to ItemUpdate
26 lines
962 B
TOML
26 lines
962 B
TOML
[package]
|
|
name = "lightstreamer-client"
|
|
version = "0.1.8"
|
|
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"
|
|
json-patch = "1"
|
|
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"
|