Commit graph

838 commits

Author SHA1 Message Date
David Tolnay
0188434d48
Release 1.0.45 2023-03-25 12:48:29 -07:00
David Tolnay
ab998e137d
Pull in prettyplease qpath fix 2023-03-25 12:48:09 -07:00
David Tolnay
ca5b0e77e0
Release 1.0.44 2023-03-24 20:48:41 -07:00
David Tolnay
f1d6cf52c8
Fix printing of prettyplease 0.2.x version number 2023-03-24 20:48:08 -07:00
David Tolnay
94891bb6be
Lockfile update 2023-03-24 20:47:03 -07:00
David Tolnay
c3e787a93b
Pull in all verbatim printing fixes from prettyplease and syn 2023-03-24 20:46:48 -07:00
David Tolnay
5540d91183
Release 1.0.43 2023-03-23 19:40:09 -07:00
David Tolnay
ddbfccc893
Lockfile update 2023-03-23 19:39:20 -07:00
David Tolnay
d945830821
Merge pull request #178 from dtolnay/testrelease
Support expanding tests in release mode
2023-03-23 19:38:40 -07:00
David Tolnay
25c61dff24
Support expanding tests in release mode 2023-03-23 19:33:40 -07:00
David Tolnay
963bac6b03
Merge pull request #172 from noc7c9/fix-release-flag
Fix issue with --release being ignored by cargo
2023-03-23 19:29:12 -07:00
David Tolnay
5883913a7c
Release 1.0.42 2023-03-22 22:13:12 -07:00
David Tolnay
e9e26a9f7c
Pull in try macro fix from syn 2.0.8 2023-03-22 22:12:47 -07:00
David Tolnay
a1f18dbc08
Release 1.0.41 2023-03-22 18:22:20 -07:00
David Tolnay
5bfa04128c
Re-enable cargo outdated CI 2023-03-22 18:21:53 -07:00
David Tolnay
bc5875f8c3
Merge pull request #176 from dtolnay/syn
Update to syn 2
2023-03-22 18:21:08 -07:00
David Tolnay
3828db275e
Update to syn 2 2023-03-22 18:16:14 -07:00
David Tolnay
c5ed140f18
Lockfile update 2023-03-22 18:14:16 -07:00
David Tolnay
c28ee53d45
Ignore match_same_arms clippy false positive
https://github.com/rust-lang/rust-clippy/issues/10327

    error: this match arm has an identical body to the `_` wildcard arm
       --> src/edit.rs:103:9
        |
    103 |         Expr::Verbatim(_) => None,
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the arm
        |
        = help: or try changing either arm body
    note: `_` wildcard arm here
       --> src/edit.rs:106:9
        |
    106 |         _ => None,
        |         ^^^^^^^^^
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
        = note: `-D clippy::match-same-arms` implied by `-D clippy::pedantic`
2023-03-22 18:09:14 -07:00
David Tolnay
15e7695e0c
Fix order of clippy allow attributes 2023-03-22 18:08:07 -07:00
David Tolnay
b7ddff13a2
Temporarily defer prettyplease update which must match syn version 2023-03-22 17:54:56 -07:00
David Tolnay
c3f226a5b8
Test exhaustiveness of expr match 2023-03-22 17:45:59 -07:00
David Tolnay
c78c0956f2
Sort attrs_mut expr list 2023-03-22 17:42:22 -07:00
David Tolnay
dcb602bea8
Lockfile update 2023-03-22 17:37:55 -07:00
David Tolnay
d7138357d0
Temporarily defer syn upgrade from failing cargo outdated job 2023-03-22 15:00:56 -07:00
David Tolnay
ea9f52b0d8
Rename .cargo/config to the preferred form .cargo/config.toml
According to https://doc.rust-lang.org/1.67.0/cargo/reference/config.html#hierarchical-structure
config.toml is the preferred form.
2023-03-05 14:43:02 -08:00
David Tolnay
690a616d80
Revert "Ignore using destructuring assignment to wildcard pattern"
This reverts commit 9708c683ad.
2023-02-27 00:16:37 -07:00
David Tolnay
b08193c0e9
Ignore let_underscore_untyped pedantic clippy lint
error: non-binding `let` without a type annotation
       --> src/main.rs:135:13
        |
    135 |             let _ = writeln!(io::stdout(), "{}", theme);
        |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
        = note: `-D clippy::let-underscore-untyped` implied by `-D clippy::pedantic`

    error: non-binding `let` without a type annotation
       --> src/main.rs:142:13
        |
    142 | /             let _ = writeln!(
    143 | |                 io::stderr(),
    144 | |                 "ERROR: cannot expand single item ({}) in ugly mode.",
    145 | |                 item,
    146 | |             );
        | |______________^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:155:13
        |
    155 | /             let _ = io::stderr().write_all(
    156 | |                 b"ERROR: cargo-expand configuration sets rustfmt=true, but \
    157 | |                 rustfmt is not found. Install rustfmt by running `rustup \
    158 | |                 component add rustfmt --toolchain nightly`.\n",
    159 | |             );
        | |______________^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:181:9
        |
    181 |         let _ = writeln!(io::stderr(), "ERROR: rustc produced no expanded output");
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:215:21
        |
    215 |                     let _ = writeln!(io::stderr(), "WARNING: no such item: {}", filter);
        |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:273:5
        |
    273 |     let _ = writeln!(io::stderr());
        |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:292:9
        |
    292 |         let _ = pretty_printer.print();
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:294:9
        |
    294 |         let _ = write!(io::stdout(), "{}", content);
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:447:5
        |
    447 |     let _ = stream.set_color(ColorSpec::new().set_bold(true).set_fg(Some(Green)));
        |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:448:5
        |
    448 |     let _ = write!(stream, "{:>12}", "Running");
        |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:449:5
        |
    449 |     let _ = stream.reset();
        |     ^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:450:5
        |
    450 |     let _ = writeln!(stream, " `{}`", line);
        |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:462:13
        |
    462 |             let _ = write!(io::stderr(), "{}", line);
        |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped

    error: non-binding `let` without a type annotation
       --> src/main.rs:533:17
        |
    533 | /                 let _ = writeln!(
    534 | |                     io::stderr(),
    535 | |                     "WARNING: invalid color in cargo config: {}",
    536 | |                     err
    537 | |                 );
        | |__________________^
        |
        = help: consider adding a type annotation or removing the `let` keyword
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
2023-02-26 21:11:09 -07:00
David Tolnay
a51269c63d
Enable type layout randomization in CI on nightly 2023-02-18 21:21:57 -08:00
David Tolnay
ba4b2b81bd
Support a manual trigger on CI workflow 2023-02-18 17:23:51 -08:00
Athir Saleem
8b63d6b5c4 Fix issue with --release being ignored by cargo 2023-02-13 19:16:18 +11:00
David Tolnay
10c3d2f125
Release 1.0.40 2023-01-27 19:04:38 -08:00
David Tolnay
60bf36172e
Update toml crate to 0.7 2023-01-27 19:02:58 -08:00
David Tolnay
9cf7099930
Lockfile update 2023-01-27 19:02:41 -08:00
David Tolnay
2f714f7304
Release 1.0.39 2023-01-26 10:59:50 -08:00
David Tolnay
5a52c74b64
Lockfile update 2023-01-26 10:59:06 -08:00
David Tolnay
f4cf71e1f3
Revert "Make cargo-expand able to be vendored by cargo-vendor"
This reverts commit df7c691898.
2023-01-26 10:58:46 -08:00
David Tolnay
7a0a3c6d86
Release 1.0.38 2023-01-23 18:31:15 -08:00
David Tolnay
50d5b52c14
Merge pull request #170 from dtolnay/toml
Update toml crate to 0.6
2023-01-23 18:30:52 -08:00
David Tolnay
3876b59108
Update toml crate to 0.6 2023-01-23 18:21:47 -08:00
David Tolnay
e622eb91b3
Lockfile update 2023-01-23 18:20:37 -08:00
David Tolnay
98376071ac
Raise minimum rustc to 1.64
Required by clap 4.1 / clap_lex 0.3.1:

    error: package `clap_lex v0.3.1` cannot be built because it requires rustc 1.64.0 or newer
2023-01-13 19:07:08 -08:00
David Tolnay
dccd84a041
Release 1.0.37 2023-01-05 09:29:31 -08:00
David Tolnay
d3a9c2fd04
Lockfile update 2023-01-05 09:22:21 -08:00
David Tolnay
ab9b4d6ead
Pull in generic associated types where-clause placement fix 2023-01-05 09:22:05 -08:00
David Tolnay
42c4bdf647
Prevent actions duplication on noop merge commits 2022-12-31 12:45:32 -08:00
David Tolnay
8761b7efbf
Sync license text with rust-lang repos 2022-12-30 12:00:46 -08:00
David Tolnay
28b5e11ca7
Release 1.0.36 2022-12-17 10:46:47 -08:00
David Tolnay
1fb141dd38
Lockfile update 2022-12-17 10:41:14 -08:00
David Tolnay
8a91483559
Update build status badge 2022-12-15 17:52:39 -08:00