Added minor versions to dependencies to avoid breaking changes, fixed some type mismatch errors

This commit is contained in:
Silas Bartha 2024-12-24 22:11:21 -05:00
parent 2a28303b84
commit 3c6c63005e
4 changed files with 19 additions and 20 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lightstreamer-client" name = "lightstreamer-client"
version = "0.1.9" version = "0.1.10"
edition = "2021" edition = "2021"
authors = ["Daniel López Azaña <daniloaz@gmail.com>"] authors = ["Daniel López Azaña <daniloaz@gmail.com>"]
description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers." description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers."
@ -11,18 +11,18 @@ documentation = "https://github.com/daniloaz/lightstreamer-client#readme"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
colored = "2" colored = "2.2"
cookie = { version = "0", features = ["percent-encode"]} cookie = { version = "0.18", features = ["percent-encode"]}
futures = "0" futures = "0.3"
futures-util = "0" futures-util = "0.3"
json-patch = "1" json-patch = "3.0"
reqwest = { version = "0", features = ["json", "stream"] } reqwest = { version = "0.12", features = ["json", "stream"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1" } serde_json = "1.0"
serde_urlencoded = "0" serde_urlencoded = "0.7"
signal-hook = "0" signal-hook = "0.3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.42", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = { version = "0", features = ["native-tls"] } tokio-tungstenite = { version = "0.26", features = ["native-tls"] }
tracing = "0.1.40" tracing = "0.1"
tracing-subscriber = "0.3.18" tracing-subscriber = "0.3"
url = "2" url = "2.5"

View File

@ -1,6 +1,5 @@
use std::error::Error; use std::error::Error;
use std::fmt; use std::fmt;
use tracing::error;
#[derive(Debug)] #[derive(Debug)]
pub struct IllegalArgumentException(String); pub struct IllegalArgumentException(String);

View File

@ -424,7 +424,7 @@ impl LightstreamerClient {
} }
let encoded_params = serde_urlencoded::to_string(&params)?; let encoded_params = serde_urlencoded::to_string(&params)?;
write_stream write_stream
.send(Message::Text(format!("control\r\n{}", encoded_params))) .send(Message::Text(format!("control\r\n{}", encoded_params).into()))
.await?; .await?;
info!("Sent subscription request: '{}'", encoded_params); info!("Sent subscription request: '{}'", encoded_params);
} }
@ -712,7 +712,7 @@ impl LightstreamerClient {
params.push(("LS_protocol", Self::TLCP_VERSION)); params.push(("LS_protocol", Self::TLCP_VERSION));
let encoded_params = serde_urlencoded::to_string(&params)?; let encoded_params = serde_urlencoded::to_string(&params)?;
write_stream write_stream
.send(Message::Text(format!("create_session\r\n{}\n", encoded_params))) .send(Message::Text(format!("create_session\r\n{}\n", encoded_params).into()))
.await?; .await?;
self.make_log( Level::DEBUG, &format!("Sent create session request: '{}'", encoded_params) ); self.make_log( Level::DEBUG, &format!("Sent create session request: '{}'", encoded_params) );
}, },

View File

@ -63,7 +63,7 @@ impl SubscriptionListener for MySubscriptionListener {
]; ];
let mut output = String::new(); let mut output = String::new();
for field in fields { for field in fields {
let value = update.get_value(field).unwrap_or(&not_available).clone(); let value = update.get_value(field).unwrap_or(&not_available);
let value_str = if update.changed_fields.contains_key(field) { let value_str = if update.changed_fields.contains_key(field) {
value.yellow().to_string() value.yellow().to_string()
} else { } else {