Taiki Endo
Taiki Endo
I guess the current behavior is based on `futures-await` (https://github.com/alexcrichton/futures-await/pull/32) or `futures-async-stream` (https://github.com/rust-lang/futures-rs/pull/1548), but I have no strong opinion on this at this time (to be exact: there isn't enough...
cc @carllerche @Darksonn @Kestrer: any thoughts on this?
I think it's intentional that `From` has not been provided. See also previous discussion: https://github.com/tokio-rs/bytes/pull/414
rustfmt does not format macros that use braces. A known workaround is to combine parentheses and blocks. ```diff - let s = async_stream::stream! { + let s = async_stream::stream!({ let...
> * [ ] `std::sync::atomic::AtomicI*` integer types (the signed ones) Seems `AtomicI*` other than `AtomicI128` was added in #189.
[features should be additive](https://doc.rust-lang.org/cargo/reference/features.html#feature-unification) and we cannot use features to disable APIs.
Oh, sorry, you seem to be suggesting an additive feature that is enabled by default. However, note that for users using slab with `default-features = false` the approach you suggest...
(At this time there are no plans for 0.5...)
@danburkert Could you resolve merge conflicts?
tokio 0.3 removed `FromStream` impl for `bytes` types... (https://github.com/tokio-rs/tokio/issues/2879)