lightstreamer-rs 0.3.1

A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers.
Documentation
/******************************************************************************
   Author: Joaquín Béjar García
   Email: jb@taunais.com
   Date: 16/5/25
******************************************************************************/

/// Module containing custom error types used throughout the library.
///
/// This module provides specialized error types for handling different error scenarios,
/// such as illegal arguments and illegal states.
pub mod error;
mod proxy;
mod util;

mod logger;

pub use error::{LightstreamerError, Result};
pub use logger::{setup_logger, setup_logger_with_level};
pub use proxy::Proxy;
pub use util::{clean_message, parse_arguments, setup_signal_hook};