From 46cd2fd0af59d562e9aff31193b3d43c155d0a1e Mon Sep 17 00:00:00 2001 From: Daniel López Azaña Date: Fri, 5 Apr 2024 17:38:05 +0200 Subject: ⬆️ (Cargo.toml): bump version from 0.1.2 to 0.1.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✨ (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 --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 67276a8..901dd22 100644 --- a/src/main.rs +++ b/src/main.rs @@ -82,6 +82,8 @@ async fn main() -> Result<(), Box> { let client = Arc::new(Mutex::new(LightstreamerClient::new( Some("http://push.lightstreamer.com/lightstreamer"), Some("DEMO"), + None, + None, )?)); // -- cgit v1.2.3