-
Notifications
You must be signed in to change notification settings - Fork 606
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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.143
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: serde-rs/json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.145
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 10 commits
- 5 files changed
- 1 contributor
Commits on Aug 23, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d12e943 - Browse repository at this point
Copy the full SHA d12e943View commit details
Commits on Sep 13, 2025
-
Older versions produce slightly differently normalized output when run against 1.90.0+ Rust compiler.
Configuration menu - View commit details
-
Copy full SHA for 0bf5d87 - Browse repository at this point
Copy the full SHA 0bf5d87View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dbc803 - Browse repository at this point
Copy the full SHA 1dbc803View commit details -
Merge pull request #1286 from dtolnay/up
Raise required compiler to Rust 1.61
Configuration menu - View commit details
-
Copy full SHA for 6beb6cd - Browse repository at this point
Copy the full SHA 6beb6cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for d21e8ce - Browse repository at this point
Copy the full SHA d21e8ceView commit details -
Merge pull request #1285 from dtolnay/serdecore
Switch serde dependency to serde_core
Configuration menu - View commit details
-
Copy full SHA for 81ba3aa - Browse repository at this point
Copy the full SHA 81ba3aaView commit details -
Ignore uninlined_format_args pedantic clippy lint
warning: variables can be used directly in the `format!` string --> src/ser.rs:448:15 | 448 | match write!(adapter, "{}", value) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::uninlined_format_args)]` help: change this to | 448 - match write!(adapter, "{}", value) { 448 + match write!(adapter, "{value}") { | warning: variables can be used directly in the `format!` string --> src/value/mod.rs:182:37 | 182 | Value::Bool(boolean) => write!(formatter, "Bool({})", boolean), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 182 - Value::Bool(boolean) => write!(formatter, "Bool({})", boolean), 182 + Value::Bool(boolean) => write!(formatter, "Bool({boolean})"), | warning: variables can be used directly in the `format!` string --> src/value/mod.rs:184:38 | 184 | Value::String(string) => write!(formatter, "String({:?})", string), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 184 - Value::String(string) => write!(formatter, "String({:?})", string), 184 + Value::String(string) => write!(formatter, "String({string:?})"), | warning: variables can be used directly in the `format!` string --> src/number.rs:365:9 | 365 | write!(formatter, "Number({})", self) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 365 - write!(formatter, "Number({})", self) 365 + write!(formatter, "Number({self})") |
Configuration menu - View commit details
-
Copy full SHA for caef3c6 - Browse repository at this point
Copy the full SHA caef3c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc27baf - Browse repository at this point
Copy the full SHA fc27bafView commit details
Commits on Sep 14, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 23679e2 - Browse repository at this point
Copy the full SHA 23679e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for efa66e3 - Browse repository at this point
Copy the full SHA efa66e3View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.0.143...v1.0.145