-
Notifications
You must be signed in to change notification settings - Fork 596
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.140
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.141
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 9 commits
- 5 files changed
- 3 contributors
Commits on Mar 16, 2025
-
Configuration menu - View commit details
-
Copy full SHA for af3d80d - Browse repository at this point
Copy the full SHA af3d80dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a56cfa - Browse repository at this point
Copy the full SHA 8a56cfaView commit details
Commits on May 17, 2025
-
Configuration menu - View commit details
-
Copy full SHA for c1826eb - Browse repository at this point
Copy the full SHA c1826ebView commit details
Commits on Jun 6, 2025
-
Ignore mismatched_lifetime_syntaxes lint
warning: lifetime flowing from input to output with different syntax can be confusing --> src/map.rs:274:21 | 274 | pub fn entry<S>(&mut self, key: S) -> Entry | ^^^^^^^^^ ----- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 274 | pub fn entry<S>(&mut self, key: S) -> Entry<'_> | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/map.rs:303:17 | 303 | pub fn iter(&self) -> Iter { | ^^^^^ ---- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 303 | pub fn iter(&self) -> Iter<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/map.rs:311:21 | 311 | pub fn iter_mut(&mut self) -> IterMut { | ^^^^^^^^^ ------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 311 | pub fn iter_mut(&mut self) -> IterMut<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/map.rs:319:17 | 319 | pub fn keys(&self) -> Keys { | ^^^^^ ---- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 319 | pub fn keys(&self) -> Keys<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/map.rs:327:19 | 327 | pub fn values(&self) -> Values { | ^^^^^ ------ the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 327 | pub fn values(&self) -> Values<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/map.rs:335:23 | 335 | pub fn values_mut(&mut self) -> ValuesMut { | ^^^^^^^^^ --------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 335 | pub fn values_mut(&mut self) -> ValuesMut<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/value/de.rs:1388:19 | 1388 | fn unexpected(&self) -> Unexpected { | ^^^^^ ---------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 1388 | fn unexpected(&self) -> Unexpected<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/number.rs:798:30 | 798 | pub(crate) fn unexpected(&self) -> Unexpected { | ^^^^^ ---------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 798 | pub(crate) fn unexpected(&self) -> Unexpected<'_> { | ++++
Configuration menu - View commit details
-
Copy full SHA for cd55b5a - Browse repository at this point
Copy the full SHA cd55b5aView commit details
Commits on Jul 18, 2025
-
Configuration menu - View commit details
-
Copy full SHA for f2d940d - Browse repository at this point
Copy the full SHA f2d940dView commit details -
use unreachable_unchecked for escape table. use a second match to rou…
…ndtrip EscapeChar to the u8 without actually branching
Configuration menu - View commit details
-
Copy full SHA for de70b7d - Browse repository at this point
Copy the full SHA de70b7dView commit details -
Merge pull request #1273 from conradludgate/optimise-string-escaping
string serialization escaping optimisations
Configuration menu - View commit details
-
Copy full SHA for 623d9b4 - Browse repository at this point
Copy the full SHA 623d9b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e2c210 - Browse repository at this point
Copy the full SHA 6e2c210View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6843c36 - Browse repository at this point
Copy the full SHA 6843c36View 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.140...v1.0.141