Denis
Denis
Consider providing additional methods to configure socket - SO_REUSEADDR - SO_LINGER I refrain from using async-std due to their absence. You can check these options in [socket2 ](https://docs.rs/socket2/0.3.11/socket2/)crate.
I can't compile libsip as dependency for other lib. Rust 1.54 ``` [package] name = "hello_sip" version = "0.1.0" edition = "2018" [dependencies] libsip = "0.2.6" ``` Got a bunch...
I tried to add a custom step to [fuzzing configuration](https://github.com/neonlabsorg/proxy-model.py/pull/881) to check out submodule, but it didn't help. ```yaml - name: Checkout source uses: actions/checkout@v2 id: checkout with: path: storage/proxy-model.py...
Please publish the solana-cli dependency for the newly released version 1.16.27 https://crates.io/crates/solana-cli/versions
Hey @lquerel! I've noticed that, for some reason, GZIP is not enabled for outgoing request body. Based on my data, enabling GZIP compression for request body results in faster transfer...
Hey! I've created a simple MVP using the provided examples. I've started three nodes to act as voters, and they successfully elect a leader. However, when I terminate the leader,...
Reproducible minimal example: ```rust use salvo::conn::rustls::{Keycert, RustlsConfig}; use salvo::prelude::*; use std::net::SocketAddr; pub struct Http3Server { addr: SocketAddr, rustls_config: RustlsConfig, } impl Http3Server { pub fn new(addr: SocketAddr, cert: Vec, key:...
Hi! Thanks for the project. I think it would help users if the README stated that the crate isn't currently suitable for production use. A few reasons: 1. There are...