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.189
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.190
Choose a head ref
  • 8 commits
  • 9 files changed
  • 1 contributor

Commits on Oct 18, 2023

  1. Configuration menu
    Copy the full SHA
    9cdf332 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2023

  1. Resolve get_first clippy lint

        warning: accessing first element with `variant.fields.get(0)`
            --> serde_derive/src/de.rs:1843:27
             |
        1843 |             let default = variant.fields.get(0).map(|field| {
             |                           ^^^^^^^^^^^^^^^^^^^^^ help: try: `variant.fields.first()`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
             = note: `-W clippy::get-first` implied by `-W clippy::all`
             = help: to override `-W clippy::all` add `#[allow(clippy::get_first)]`
    
        warning: accessing first element with `variant.fields.get(0)`
            --> serde_derive/src/de.rs:1888:27
             |
        1888 |             let default = variant.fields.get(0).map(|field| {
             |                           ^^^^^^^^^^^^^^^^^^^^^ help: try: `variant.fields.first()`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
    dtolnay committed Oct 22, 2023
    Configuration menu
    Copy the full SHA
    8de84b7 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Fix unused imports

        warning: unused imports: `cmp`, `mem`, `slice`
           --> serde/src/lib.rs:171:26
            |
        171 |     pub use self::core::{cmp, iter, mem, num, ptr, slice, str};
            |                          ^^^        ^^^            ^^^^^
            |
            = note: `#[warn(unused_imports)]` on by default
    dtolnay committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    bb4135c View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Add float NaN tests

    dtolnay committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    a091a07 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2fcc34 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ba9c12 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2637 from dtolnay/nansign

    Ensure f32 deserialized from f64 and vice versa preserve NaN sign
    dtolnay authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    11c2917 View commit details
    Browse the repository at this point in the history
  5. Release 1.0.190

    dtolnay committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    edb1a58 View commit details
    Browse the repository at this point in the history
Loading