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/flate2-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.22
Choose a base ref
...
head repository: rust-lang/flate2-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.23
Choose a head ref
  • 6 commits
  • 28 files changed
  • 4 contributors

Commits on Dec 13, 2021

  1. Minor examlpe tweaks (#282)

    * generates hello_world.txt.gz file - fixes #235
    * highlights the difference between gzdecoder-bufread and -read examples
    nyurik authored Dec 13, 2021
    Configuration menu
    Copy the full SHA
    a5a38c5 View commit details
    Browse the repository at this point in the history
  2. Make Clippy happier, minor cleanups (#283)

    * Make Clippy happier, minor cleanups
    
    I ran `cargo clippy` and addressed some issues it raised, while leaving other issues for another time. Hopefully this will make this code a bit easier for newcomers to read.
    
    Biggest changes:
    * `foo.len() > 0` ➡ `!foo.is_empty()`
    * `return x;` ➡ `x`
    * `{ foo: foo }` ➡ `{ foo }`
    * adding a few `Default` trait implementations
    * some `match` statement cleanup
    
    Also, fixed two `ffi::uInt::max_value()` ➡ `ffi::uInt::MAX` due to deprecation.
    
    Biggest TODOs (please give feedback if they should be fixed too):
    * Clippy has complained about many `foo >> 0` -- which is a noop that might confuse (?)
    * some other corner cases that I don't know enough about
    
    * cargo fmt
    nyurik authored Dec 13, 2021
    Configuration menu
    Copy the full SHA
    0fa0a7b View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2021

  1. Spellchecking comments, rm trailing spaces (#284)

    * Spellchecking comments, rm trailing spaces
    
    * revert vendor file changes
    nyurik authored Dec 14, 2021
    Configuration menu
    Copy the full SHA
    b2e976d View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2022

  1. Remove tokio support (#292)

    Expyron authored Jan 20, 2022
    Configuration menu
    Copy the full SHA
    4e5e0c5 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2022

  1. Update to miniz_oxide 0.5 / quickcheck 1.0 / rand 0.8 (#293)

    * Update to miniz_oxide 0.5
    
    * Update to quickcheck 1.0 / rand 0.8
    
    * ci: Pin Windows version to 2019 instead of latest
    sdroege authored Feb 16, 2022
    Configuration menu
    Copy the full SHA
    0d22be4 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2022

  1. Bump to 1.0.23

    alexcrichton committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    3b2c3a1 View commit details
    Browse the repository at this point in the history
Loading