Taiki Endo

Results 173 issues of Taiki Endo

[setup-cross-toolchain-action](https://github.com/taiki-e/setup-cross-toolchain-action) is a GitHub Action to set up CI environment for cross-testing, including doctest, without dockers. This also enables test for armv7hf on CI. Closes #2451 (I guess it is...

Add the `poll_read_buf` method to `AsyncRead` based on the API proposed by https://github.com/rust-lang/rfcs/pull/2930 (tracking issue: rust-lang/rust#78485). ```rust pub trait AsyncRead { fn poll_read_buf(self: Pin, cx: &mut Context) -> Poll; }...

C-feature-request
A-io

This moves type aliases (BoxFuture, LocalBoxFuture, BoxStream, LocalBoxStream) and Trait aliases (TryFuture, TryStream) to futures-util. part of #2207 > - Type aliases (BoxFuture, LocalBoxFuture, BoxStream, LocalBoxStream) > - Move to...

S-waiting-on-author
A-stream
A-future

https://github.com/rust-lang/futures-rs/pull/2433#issuecomment-836929899

A-macro

I would propose to merge these utility crates to the main `futures` crate. There are some reasons: - `futures` and `futures-util` are almost the same except that futures provide executors...

S-blocked
S-needs-api-design

We have some disabled tests: * [ ] [`tests_disabled/all.rs`](https://github.com/rust-lang/futures-rs/blob/e363f1839f78e7743209c0bc410f9f94fb82519e/futures/tests_disabled/all.rs) * [ ] [`tests_disabled/stream.rs`](https://github.com/rust-lang/futures-rs/blob/e363f1839f78e7743209c0bc410f9f94fb82519e/futures/tests_disabled/stream.rs) * [x] [`tests_disabled/bilock.rs`](https://github.com/rust-lang/futures-rs/blob/e363f1839f78e7743209c0bc410f9f94fb82519e/futures/tests_disabled/bilock.rs); done in https://github.com/rust-lang/futures-rs/pull/2715 They should be re-enabled. (or remove if it is really unneeded)...

S-needs-implementation

This is a tracking issue on how to handle stream trait compatibility between 0.3 and 1.0. I said that it's okay to use something like [semver trick](https://github.com/dtolnay/semver-trick) in #2335, but...

A-stream
futures-0.3

This is a proposal for the next major release of futures-core. (I will open issues for other crates later. They are probably 0.4 instead of 1.0.) ## About I propose...

Disabling the default features is usually more verbose and easier to forget than enabling a feature. Given that many libraries seem to disable this feature due to compile times, it...

S-needs-decision