jean-airoldie

Results 30 issues of jean-airoldie

Basically I'm wondering whether `SharedStream` could `unsafe impl Sync` but I'm not sure this is sound. The trait sync is defined as > The precise definition is: a type T...

What is the specific intend behind using tilde dependencies as a default in the repository? As far as I can tell, they don't seem to serve a specific purpose, unless...

Currently the server's certificate can only be set once at the creation of the server (AFAIK). This means that certificate rotation is basically impossible for long running servers without restarting...

When running any glutin example on master (988b070a6378533d7c296cfcd64dae0c3f162fc9) with `rustc 1.60` on `ubuntu 21.10`, linux kernel version `5.13.0`, sometimes I get this error: ``` thread 'main' panicked at 'called `Result::unwrap()`...

I think that it would make sense that `Message` be instead: ```rust pub enum Message { Text(Arc), Binary(Arc), // maybe taking `Bytes` from the `bytes` crate would be cleaner. Ping(Vec),...

enhancement

Blocked until [async await stabilization](https://github.com/rust-lang/rust/issues/50547).

feature request

When a connection succeeds the socket is no longer in mute state and can queue outgoing messages via `send`. The problem is if the authentication failed the user will never...

footgun

By leveraging the `zmq_socket_monitor` API, allow sockets to receive events that are normally discarted by `libzmq`. Allow the user to configure what events should be received or discarded. See #122...

feature request

See https://github.com/zeromq/libzmq/issues/3596. Here is a minimal rust test code to reproduce the issue. ```rust use { failure::Error, libzmq::{prelude::*, *}, std::{thread, time::Duration}, }; fn main() -> Result { let addr: TcpAddr...

bug