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

Commits on Nov 26, 2021

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

Commits on Jan 29, 2022

  1. Resolve needless_borrow clippy lint

        error: this expression borrows a value the compiler would automatically borrow
           --> tests/../src/lexical/math.rs:597:25
            |
        597 |         for (xi, yi) in (&mut x[xstart..]).iter_mut().zip(y.iter()) {
            |                         ^^^^^^^^^^^^^^^^^^ help: change this to: `x[xstart..]`
            |
            = note: `-D clippy::needless-borrow` implied by `-D clippy::all`
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
    dtolnay committed Jan 29, 2022
    Configuration menu
    Copy the full SHA
    aa78d6c View commit details
    Browse the repository at this point in the history
  2. Ignore buggy ptr_arg clippy lint

    rust-lang/rust-clippy#8366
    
        error: writing `&mut Vec` instead of `&mut [_]` involves a new object where a slice will do
          --> src/read.rs:65:45
           |
        65 |     fn parse_str<'s>(&'s mut self, scratch: &'s mut Vec<u8>) -> Result<Reference<'de, 's, str>>;
           |                                             ^^^^^^^^^^^^^^^ help: change this to: `&'s mut [u8]`
           |
           = note: `-D clippy::ptr-arg` implied by `-D clippy::all`
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
    
        error: writing `&mut Vec` instead of `&mut [_]` involves a new object where a slice will do
          --> src/read.rs:76:18
           |
        76 |         scratch: &'s mut Vec<u8>,
           |                  ^^^^^^^^^^^^^^^ help: change this to: `&'s mut [u8]`
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
    dtolnay committed Jan 29, 2022
    Configuration menu
    Copy the full SHA
    977975e View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2022

  1. Merge pull request #830 from lucacasonato/support_lone_surrogates_in_…

    …raw_value
    
    Allow lone surrogates in raw values
    dtolnay authored Feb 12, 2022
    Configuration menu
    Copy the full SHA
    7e56a40 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.79

    dtolnay committed Feb 12, 2022
    Configuration menu
    Copy the full SHA
    7025523 View commit details
    Browse the repository at this point in the history
Loading