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: serde-rs/serde
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.162
Choose a base ref
...
head repository: serde-rs/serde
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.163
Choose a head ref
  • 13 commits
  • 13 files changed
  • 4 contributors

Commits on May 5, 2023

  1. Remove build script from serde_derive

    The current serde_derive's MSRV is 1.56, and both underscore consts and
    ptr::addr_of! are always available.
    taiki-e committed May 5, 2023
    Configuration menu
    Copy the full SHA
    ef2a7c7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2442 from taiki-e/derive-build-script

    Remove build script from serde_derive
    dtolnay committed May 5, 2023
    Configuration menu
    Copy the full SHA
    25381be View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. Configuration menu
    Copy the full SHA
    c399e9c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a901f50 View commit details
    Browse the repository at this point in the history
  3. Remove constructors for FlatMapAccess and FlatStructAccess

    They are used only in one place each, so for simplifying understanding it is better to inline them
    Mingun committed May 8, 2023
    Configuration menu
    Copy the full SHA
    e11d01f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1d11f03 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ab6588e View commit details
    Browse the repository at this point in the history

Commits on May 10, 2023

  1. Merge pull request #2446 from Mingun/dedup2

    Eliminate some duplicated code
    dtolnay committed May 10, 2023
    Configuration menu
    Copy the full SHA
    9441a29 View commit details
    Browse the repository at this point in the history
  2. Resolve while_let_on_iterator clippy lint

        warning: this loop could be written as a `for` loop
            --> serde/src/private/de.rs:2905:9
             |
        2905 |         while let Some(item) = self.iter.next() {
             |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `for item in self.iter.by_ref()`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#while_let_on_iterator
             = note: `#[warn(clippy::while_let_on_iterator)]` on by default
    dtolnay committed May 10, 2023
    Configuration menu
    Copy the full SHA
    b5a9eff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee9166e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1d910a4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a139ab2 View commit details
    Browse the repository at this point in the history
  6. Release 1.0.163

    dtolnay committed May 10, 2023
    Configuration menu
    Copy the full SHA
    fccb949 View commit details
    Browse the repository at this point in the history
Loading