Morteza Raeisi

Results 3 issues of Morteza Raeisi

Now, it is possible to use a dynamic list of symbols for subscribing. ```rust let symbol_lst = vec!["BTCUSDT".to_string(), "BNBBUSD".to_string(), "BTCUSDT".to_string()]; let lst = symbol_lst.iter() .map(|x| BookTickerStream::from_symbol(&x).into()) .collect::() ; conn.subscribe_from_slice(&lst); ```...

review

Subscribing to multiple symbols can be done as follows: ```rust let mut conn = BinanceWebSocketClient::connect_with_url(&stream_adr)?; conn.subscribe(vec![ &BookTickerStream::from_symbol("BTCUSDT").into(), &BookTickerStream::from_symbol("BNBBUSD").into(), ]); ``` It works fine, however, I need to subscribe to a...

The crate cannot be used on the Windows operating system due to `UnixStream` usage. In the `connection.rs` file, for example, there is an import that is not valid on the...