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.81
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.82
Choose a head ref
  • 17 commits
  • 15 files changed
  • 3 contributors

Commits on May 5, 2022

  1. Fix a typo

    dzvon committed May 5, 2022
    Configuration menu
    Copy the full SHA
    aed7f7c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #889 from dzvon/patch-1

    Fix a typo
    dtolnay committed May 5, 2022
    Configuration menu
    Copy the full SHA
    9fcdb67 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2022

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

Commits on May 13, 2022

  1. Ignore unused_macro_rules warning in test macros

        warning: 1st rule of macro `json_str` is never used
         --> tests/macros/mod.rs:2:5
          |
        2 |     ([]) => {
          |     ^^^^
          |
          = note: `#[warn(unused_macro_rules)]` on by default
    
        warning: 3rd rule of macro `json_str` is never used
          --> tests/macros/mod.rs:11:5
           |
        11 |     ({}) => {
           |     ^^^^
    dtolnay committed May 13, 2022
    Configuration menu
    Copy the full SHA
    efa4c9f View commit details
    Browse the repository at this point in the history

Commits on May 15, 2022

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

Commits on May 22, 2022

  1. Ignore derive_partial_eq_without_eq clippy lint

        error: you are deriving `PartialEq` and can implement `Eq`
          --> tests/test.rs:65:24
           |
        65 | #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
           |                        ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
           |
           = note: `-D clippy::derive-partial-eq-without-eq` implied by `-D clippy::all`
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
          --> tests/test.rs:74:24
           |
        74 | #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
           |                        ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
           --> tests/test.rs:565:25
            |
        565 |     #[derive(Serialize, PartialEq, Debug)]
            |                         ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
            --> tests/test.rs:1278:28
             |
        1278 |     #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
             |                            ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
            --> tests/test.rs:1395:21
             |
        1395 |     #[derive(Debug, PartialEq, Deserialize)]
             |                     ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
            --> tests/test.rs:1415:21
             |
        1415 |     #[derive(Debug, PartialEq, Deserialize)]
             |                     ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
            --> tests/test.rs:1425:21
             |
        1425 |     #[derive(Debug, PartialEq, Deserialize)]
             |                     ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
            --> tests/test.rs:1627:21
             |
        1627 |     #[derive(Debug, PartialEq, Serialize, Deserialize)]
             |                     ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
             |
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    dtolnay committed May 22, 2022
    Configuration menu
    Copy the full SHA
    f901012 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

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

Commits on Jun 7, 2022

  1. Configuration menu
    Copy the full SHA
    6b91c96 View commit details
    Browse the repository at this point in the history
  2. Resolve get_first clippy lint

        error: accessing first element with `slice.as_bytes().get(0)`
           --> src/error.rs:441:11
            |
        441 |     match slice.as_bytes().get(0) {
            |           ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `slice.as_bytes().first()`
            |
            = note: `-D clippy::get-first` implied by `-D clippy::all`
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
    dtolnay committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    de5c34b View commit details
    Browse the repository at this point in the history
  3. Resolve borrow_deref_ref clippy lint

        error: deref on an immutable reference
           --> src/value/mod.rs:428:45
            |
        428 |             Value::Array(ref array) => Some(&*array),
            |                                             ^^^^^^^
            |
            = note: `-D clippy::borrow-deref-ref` implied by `-D clippy::all`
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#borrow_deref_ref
        help: if you would like to reborrow, try removing `&*`
            |
        428 |             Value::Array(ref array) => Some(array),
            |                                             ~~~~~
        help: if you would like to deref, try using `&**`
            |
        428 |             Value::Array(ref array) => Some(&**array),
            |                                             ~~~~~~~~
    dtolnay committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    45f1c4a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    05e03ee View commit details
    Browse the repository at this point in the history
  5. Merge pull request #895 from dtolnay/ref

    Eliminate all use of ref keyword
    dtolnay committed Jun 7, 2022
    Configuration menu
    Copy the full SHA
    dab5ed3 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2022

  1. Bump oldest rustc for preserve_order feature to 1.56.1

    Required by 2021 edition in hashbrown.
    
        error: failed to download `hashbrown v0.12.1`
    
        Caused by:
          unable to get packages from source
    
        Caused by:
          failed to parse manifest at github.com-1ecc6299db9ec823/hashbrown-0.12.1/Cargo.toml
    
        Caused by:
          failed to parse the `edition` key
    
        Caused by:
          this version of Cargo is older than the `2021` edition, and only supports `2015` and `2018` editions.
    dtolnay committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    3d17340 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. Configuration menu
    Copy the full SHA
    1bf61e9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b87778b View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Merge pull request #900 from kvnvelasco/implement_from_option_for_value

    Make Value be From<Option<T>>
    dtolnay committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    df704c2 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.82

    dtolnay committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    f286714 View commit details
    Browse the repository at this point in the history
Loading