serde/test_suite
David Tolnay d96e181150
Resolve uninlined_format_args pedantic clippy lint in test suite
error: variables can be used directly in the `format!` string
        --> test_suite/tests/test_annotations.rs:1238:30
         |
    1238 |     serializer.serialize_str(format!("{};{:?}", f1, f2).as_str())
         |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^
         |
         = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
         = note: `-D clippy::uninlined-format-args` implied by `-D clippy::pedantic`
    help: change this to
         |
    1238 -     serializer.serialize_str(format!("{};{:?}", f1, f2).as_str())
    1238 +     serializer.serialize_str(format!("{f1};{f2:?}").as_str())
         |
2022-10-07 21:45:03 -07:00
..
no_std Add authors to Cargo.toml 2022-07-31 19:25:47 -07:00
tests Resolve uninlined_format_args pedantic clippy lint in test suite 2022-10-07 21:45:03 -07:00
build.rs Update macrotest to 1.0.9 and enable in CI 2022-06-20 03:40:49 -07:00
Cargo.toml Ui test changes for trybuild 1.0.66 2022-10-04 22:28:38 -07:00