- Notifications
You must be signed in to change notification settings - Fork617
PermalinkChoose 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 orlearn 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
Uh oh!
There was an error while loading.Please reload this page.
base:1731167
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}defaultLoading
...
head repository:serde-rs/json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
Uh oh!
There was an error while loading.Please reload this page.
compare:efa66e3
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- 19commits
- 8files changed
- 4contributors
Commits on Aug 8, 2025
Revert "Pin nightly toolchain used for miri job"
This reverts commitc1826eb.
Commits on Aug 19, 2025
Merge pull request#1268from SOF3/compact-default
Implement Default for CompactFormatter
Merge pull request#1264from xlambein/master
Add Clone and Debug impls to map iterators
Commits on Sep 13, 2025
Older versions produce slightly differently normalized outputwhen run against 1.90.0+ Rust compiler.
Merge pull request#1286from dtolnay/up
Raise required compiler to Rust 1.61
Merge pull request#1285from dtolnay/serdecore
Switch serde dependency to serde_core
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 visithttps://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 visithttps://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 visithttps://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 visithttps://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})") |
Commits on Sep 14, 2025
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 1731167...efa66e3
Uh oh!
There was an error while loading.Please reload this page.