Rick Richardson
Rick Richardson
After implementing the changes I mentioned above. The API will change because I've separated Counter from Timestamp (which I think is the correct approach). A Timestamp shouldn't know anything about...
The executable name doesn't have to match the crates.io name, but I think it has to match the Cargo.toml project name. Ripgrep is a good example. `Cargo install ripgrep` gives...
I came in searching for a way to just use a Debug as a value in the kv portion of the macro. Maybe that would be a decent middle ground?...
As someone who uses this 8-12 hours a day, I feel obliged to help out :) I don't have a ton of time, but I can review PRs, help strategize,...
I went ahead and implemented option 3, since that makes it match the BSD implementation. I haven't really tested it, but it *should* work :) When I get a chance,...
It looks like the cfset*speed functions just update the termios struct. Later, tcsetattr is called, which invokes either the `TCSETS` or `TCGETS` ioctal. So it is uniform across the board,...
I can't get the tests to complete on my linux machines (unrelated to my changes) Many of the socket ones either fail or time-out. I need to test these termios...
@fy2462 - What is your bandwidth/latency as measured by iperf (https://github.com/esnet/iperf) when you have that netem delay set? `netem delay 50ms` adds a delay to every packet that is going...
I just tested this on a current MBP: On a fresh project with only a s2n-quic dependency, attempting to build with `provider-tls-rustls` results in the project still attempting to compile...
I'm taking a stab at writing a Futures 0.3+ version of this. It seems to me that this would alter the architecture even more than @habnabit's async_bus rewrite. The biggest...