Yiannis Marangos
Yiannis Marangos
IMO, CLI utilities are needed to accelerate adoption. Also, FUSE support will be very useful for users that want to use zbox as their personal cloud storage.
A common pattern is to use `Selector` in an infinite loop. Now a user need to reconstruct a new `Selector` in each iteration because `wait` consumes it. This can have...
Some network protocols have dynamic length packets, so we can not have a single `buf.remaining()` check before starting parsing them. In that case before `get_*` we need to check the...
I think `piper::pipe` is very useful when you need AsyncRead/AsyncWrite on just bytes. Are you planing to move its implementation here?
I really liked your crate and wanted to test it and even migrate to it from Actix. I tried to migrate a small part but I found two missing parts:...
[`get_compiler`](https://docs.rs/cc/latest/cc/struct.Build.html#method.get_compiler) wasn't forwarding the environment variables modifications to `Tool`, however these are very useful configurations, especially under MacOS.
After `Db::open_tree` can I drop `Db` and just use `Tree`? From the code it looks safe, but I couldn't find anything in the documentation. Is this the indented behavior? Would...
# Description In some cases a compatibility layer with futures-timer is needed. This PR add a drop-in replacement for `futures_timer::Delay`. # How Has This Been Tested? Started a local node...
We want to use this crate in a WASM environment that do not have threads. To be more specific we want to use it in an [Internet Computer canister](https://internetcomputer.org/docs/current/developer-docs/backend/rust/), but...