[package]
edition = "2024"
name = "lightstreamer-rs"
version = "0.3.2"
authors = [
"Joaquin Bejar <jb@taunais.com>",
"Daniel López Azaña (original lightstreamer-client author)",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers."
homepage = "https://github.com/joaquinbejar/lightstreamer-rs"
documentation = "https://github.com/joaquinbejar/lightstreamer-rs#readme"
readme = "README.md"
license = "GPL-3.0-only"
repository = "https://github.com/joaquinbejar/lightstreamer-rs"
[lib]
name = "lightstreamer_rs"
path = "src/lib.rs"
[[test]]
name = "reconnection_tests"
path = "tests/reconnection_tests.rs"
[dependencies.cookie]
version = "0.18"
features = ["percent-encode"]
[dependencies.futures-util]
version = "0.3"
[dependencies.json-patch]
version = "4.1"
[dependencies.rand]
version = "0.10"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.50"
features = [
"sync",
"macros",
"rt-multi-thread",
"signal",
"time",
"sync",
"macros",
"rt-multi-thread",
"signal",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.29"
features = [
"native-tls",
"native-tls",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.url]
version = "2.5"