-
Notifications
You must be signed in to change notification settings - Fork 581
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.133
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.135
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 11 commits
- 5 files changed
- 3 contributors
Commits on Dec 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9c9aa1f - Browse repository at this point
Copy the full SHA 9c9aa1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4db66fb - Browse repository at this point
Copy the full SHA 4db66fbView commit details -
Merge pull request #1221 from bheylin/add-const-raw-values-for-null-a…
…nd-bools Add literal 'null', 'true' and 'false' consts to `RawValue` struct.
Configuration menu - View commit details
-
Copy full SHA for 96576ba - Browse repository at this point
Copy the full SHA 96576baView commit details -
Configuration menu - View commit details
-
Copy full SHA for f42c7c7 - Browse repository at this point
Copy the full SHA f42c7c7View commit details -
Merge pull request #1222 from dtolnay/rawvalueassoc
Move RawValue associated constants into same impl block as public functions
Configuration menu - View commit details
-
Copy full SHA for 4aa05b9 - Browse repository at this point
Copy the full SHA 4aa05b9View commit details
Commits on Dec 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9875785 - Browse repository at this point
Copy the full SHA 9875785View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2a1415 - Browse repository at this point
Copy the full SHA b2a1415View commit details
Commits on Dec 27, 2024
-
Resolve precedence clippy lint
warning: operator precedence can trip the unwary --> src/read.rs:963:18 | 963 | let n = (((n1 - 0xD800) as u32) << 10 | (n2 - 0xDC00) as u32) + 0x1_0000; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(((n1 - 0xD800) as u32) << 10) | (n2 - 0xDC00) as u32` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence = note: `-W clippy::precedence` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::precedence)]` warning: operator precedence can trip the unwary --> src/read.rs:991:28 | 991 | ptr.write((n >> 6 & 0b0001_1111) as u8 | 0b1100_0000); | ^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(n >> 6) & 0b0001_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence warning: operator precedence can trip the unwary --> src/read.rs:995:28 | 995 | ptr.write((n >> 12 & 0b0000_1111) as u8 | 0b1110_0000); | ^^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(n >> 12) & 0b0000_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence warning: operator precedence can trip the unwary --> src/read.rs:996:35 | 996 | ptr.add(1).write((n >> 6 & 0b0011_1111) as u8 | 0b1000_0000); | ^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(n >> 6) & 0b0011_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence warning: operator precedence can trip the unwary --> src/read.rs:1000:28 | 1000 | ptr.write((n >> 18 & 0b0000_0111) as u8 | 0b1111_0000); | ^^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(n >> 18) & 0b0000_0111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence warning: operator precedence can trip the unwary --> src/read.rs:1002:29 | 1002 | .write((n >> 12 & 0b0011_1111) as u8 | 0b1000_0000); | ^^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(n >> 12) & 0b0011_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence warning: operator precedence can trip the unwary --> src/read.rs:1003:35 | 1003 | ptr.add(2).write((n >> 6 & 0b0011_1111) as u8 | 0b1000_0000); | ^^^^^^^^^^^^^^^^^^^^ help: consider parenthesizing your expression: `(n >> 6) & 0b0011_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#precedence
Configuration menu - View commit details
-
Copy full SHA for 1e77cac - Browse repository at this point
Copy the full SHA 1e77cacView commit details
Commits on Jan 7, 2025
-
Signed-off-by: tison <wander4096@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d48c224 - Browse repository at this point
Copy the full SHA d48c224View commit details -
Merge pull request #1226 from tisonkun/map-into-values
Add Map::into_values method
Configuration menu - View commit details
-
Copy full SHA for b97935f - Browse repository at this point
Copy the full SHA b97935fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9802c08 - Browse repository at this point
Copy the full SHA 9802c08View 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.133...v1.0.135