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: smol-rs/futures-lite
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.0
Choose a base ref
...
head repository: smol-rs/futures-lite
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.0
Choose a head ref
  • 7 commits
  • 5 files changed
  • 2 contributors

Commits on Jan 4, 2024

  1. feat: Relax Unpin bounds on io::copy

    This commit makes it so `!Unpin` types can be passed into `io::copy`.
    
    Signed-off-by: John Nunley <[email protected]>
    notgull authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    3b14c82 View commit details
    Browse the repository at this point in the history
  2. feat: Implement size_hint for stream::Filter

    Signed-off-by: John Nunley <[email protected]>
    notgull authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    abb80b9 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2024

  1. ci: Use cargo-hack's --rust-version flag for msrv check

    This respects rust-version field in Cargo.toml, so it removes the need
    to manage MSRV in both the CI file and Cargo.toml.
    taiki-e committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    51908bd View commit details
    Browse the repository at this point in the history
  2. Relax MSRV to 1.60

    Since #77, this crate works
    on 1.60.
    taiki-e committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    e6be4dd View commit details
    Browse the repository at this point in the history
  3. Migrate to Rust 2021

    taiki-e committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    d6f2a9b View commit details
    Browse the repository at this point in the history
  4. Fix clippy::redundant_guards warning

    ```
    warning: redundant guard
        --> src/io.rs:2701:28
         |
    2701 |                 Ok(buf) if buf.is_empty() => {
         |                            ^^^^^^^^^^^^^^
         |
         = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
         = note: `#[warn(clippy::redundant_guards)]` on by default
    help: try
         |
    2701 -                 Ok(buf) if buf.is_empty() => {
    2701                   Ok([]) => {
         |
    ```
    taiki-e committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    7edb0e5 View commit details
    Browse the repository at this point in the history
  5. Release 2.2.0

    taiki-e committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    2e55568 View commit details
    Browse the repository at this point in the history
Loading