Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/futures-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.3.27
Choose a base ref
...
head repository: rust-lang/futures-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.3.28
Choose a head ref
  • 11 commits
  • 26 files changed
  • 5 contributors

Commits on Mar 11, 2023

  1. Tweak changelog

    taiki-e committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    8869f59 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. Configuration menu
    Copy the full SHA
    4b86e46 View commit details
    Browse the repository at this point in the history
  2. Fix rustdoc warning

    ```
    warning: `crate::task::panic_waker` is both a module and a function
      --> futures-test/src/task/mod.rs:26:23
       |
    26 | //! - [`panic_waker`](crate::task::panic_waker) creates a waker that panics when
       |                       ^^^^^^^^^^^^^^^^^^^^^^^^ ambiguous link
       |
       = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default
    help: to link to the module, prefix with `mod@`
       |
    26 | //! - [`panic_waker`](mod@crate::task::panic_waker) creates a waker that panics when
       |                       ++++
    help: to link to the function, add parentheses
       |
    26 | //! - [`panic_waker`](crate::task::panic_waker()) creates a waker that panics when
       |                                               ++
    ```
    taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    890f893 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a730a19 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94e020d View commit details
    Browse the repository at this point in the history
  5. Don't ignore empty state polling (#2728)

    * Don't ignore empty state polling
    
    * Test case
    
    * Start polling in a loop to ensure we don't wait for an outdated waker
    olegnn authored and taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    6a436eb View commit details
    Browse the repository at this point in the history
  6. SelectAll doesn't need pin-project (#2729)

    Closes #2724
    yshui authored and taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    3bee396 View commit details
    Browse the repository at this point in the history
  7. Fix unknown_lints and unused_imports warnings in test (#2732)

    ```
    error: unknown lint: `useless_anonymous_reexport`
     --> futures/tests/no-std/src/lib.rs:3:10
      |
    3 | #![allow(useless_anonymous_reexport)]
      |          ^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: `-D unknown-lints` implied by `-D warnings`
    
    error: unused import: `futures_core::task::__internal::AtomicWaker as _`
     --> futures/tests/no-std/src/lib.rs:7:9
      |
    7 | pub use futures_core::task::__internal::AtomicWaker as _;
      |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: `-D unused-imports` implied by `-D warnings`
    
    error: unused import: `futures_channel::oneshot as _`
      --> futures/tests/no-std/src/lib.rs:15:9
       |
    15 | pub use futures_channel::oneshot as _;
       |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    
    error: unused import: `futures::task::AtomicWaker as _`
      --> futures/tests/no-std/src/lib.rs:19:9
       |
    19 | pub use futures::task::AtomicWaker as _;
       |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    
    error: unused import: `futures::stream::FuturesOrdered as _`
      --> futures/tests/no-std/src/lib.rs:23:9
       |
    23 | pub use futures::stream::FuturesOrdered as _;
       |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    
    error: unused import: `futures_util::task::AtomicWaker as _`
      --> futures/tests/no-std/src/lib.rs:27:9
       |
    27 | pub use futures_util::task::AtomicWaker as _;
       |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    
    error: unused import: `futures_util::stream::FuturesOrdered as _`
      --> futures/tests/no-std/src/lib.rs:31:9
       |
    31 | pub use futures_util::stream::FuturesOrdered as _;
       |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ```
    taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    a3f80e6 View commit details
    Browse the repository at this point in the history
  8. Bump MSRV of utility crates to 1.56 (#2733)

    syn 2.0 requires 1.56.
    taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    98e80d4 View commit details
    Browse the repository at this point in the history
  9. Update to syn 2 (#2730)

    maurer authored and taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    206b12b View commit details
    Browse the repository at this point in the history
  10. Release 0.3.28

    taiki-e committed Mar 30, 2023
    Configuration menu
    Copy the full SHA
    1685f8b View commit details
    Browse the repository at this point in the history
Loading