Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 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
base:v1.0.142
Choose a base ref
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
Choose a head ref
Loading
  • 19commits
  • 8files changed
  • 4contributors

Commits on May 31, 2025

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

Commits on Jul 6, 2025

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

Commits on Jul 10, 2025

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

Commits on Aug 8, 2025

  1. Revert "Pin nightly toolchain used for miri job"

    This reverts commitc1826eb.
    @dtolnay
    dtolnay committedAug 8, 2025
    Configuration menu
    Copy the full SHA
    ba5b3ccView commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2025

  1. Merge pull request#1268from SOF3/compact-default

    Implement Default for CompactFormatter
    @dtolnay
    dtolnay authoredAug 19, 2025
    Configuration menu
    Copy the full SHA
    8be6647View commit details
    Browse the repository at this point in the history
  2. Merge pull request#1264from xlambein/master

    Add Clone and Debug impls to map iterators
    @dtolnay
    dtolnay authoredAug 19, 2025
    Configuration menu
    Copy the full SHA
    ec190d6View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    447170bView commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a5b853View commit details
    Browse the repository at this point in the history
  5. Release 1.0.143

    @dtolnay
    dtolnay committedAug 19, 2025
    Configuration menu
    Copy the full SHA
    10102c4View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2025

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

Commits on Sep 13, 2025

  1. Enforce trybuild >= 1.0.108

    Older versions produce slightly differently normalized outputwhen run against 1.90.0+ Rust compiler.
    @dtolnay
    dtolnay committedSep 13, 2025
    Configuration menu
    Copy the full SHA
    0bf5d87View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1dbc803View commit details
    Browse the repository at this point in the history
  3. Merge pull request#1286from dtolnay/up

    Raise required compiler to Rust 1.61
    @dtolnay
    dtolnay authoredSep 13, 2025
    Configuration menu
    Copy the full SHA
    6beb6cdView commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d21e8ceView commit details
    Browse the repository at this point in the history
  5. Merge pull request#1285from dtolnay/serdecore

    Switch serde dependency to serde_core
    @dtolnay
    dtolnay authoredSep 13, 2025
    Configuration menu
    Copy the full SHA
    81ba3aaView commit details
    Browse the repository at this point in the history
  6. 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})")        |
    @dtolnay
    dtolnay committedSep 13, 2025
    Configuration menu
    Copy the full SHA
    caef3c6View commit details
    Browse the repository at this point in the history
  7. Release 1.0.144

    @dtolnay
    dtolnay committedSep 13, 2025
    Configuration menu
    Copy the full SHA
    fc27bafView commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2025

  1. Configuration menu
    Copy the full SHA
    23679e2View commit details
    Browse the repository at this point in the history
  2. Release 1.0.145

    @dtolnay
    dtolnay committedSep 14, 2025
    Configuration menu
    Copy the full SHA
    efa66e3View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp