Commit graph

492 commits

Author SHA1 Message Date
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
David Tolnay
5a10cb0134
Prevent build.rs rerunning unnecessarily on all source changes 2022-12-12 14:37:40 -08:00
David Tolnay
0a12097eb7
Time out workflows after 45 minutes
GitHub's default timeout is 6 hours. Recently some of my GitHub Actions
jobs have started randomly stalling for that long, which is inconvenient
because it ties up a chunk of my runner quota. It apepars to be very
rare for a job to recover after stalling. It's better to time out
quicker and retry on a different runner.
2022-11-25 18:56:16 -08:00
David Tolnay
b06fb4436c
Fix renamed let_underscore_drop lint
warning: lint `clippy::let_underscore_drop` has been renamed to `let_underscore_drop`
     --> src/main.rs:5:5
      |
    5 |     clippy::let_underscore_drop,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `let_underscore_drop`
      |
      = note: `#[warn(renamed_and_removed_lints)]` on by default
2022-11-22 22:27:55 -08:00
David Tolnay
2fdef81755
Remove unneeded argument of filter_err 2022-11-22 15:26:03 -08:00
David Tolnay
cf63388938
No longer any resemblance 2022-11-22 14:57:59 -08:00
David Tolnay
73365faa7e
Rename Opts enum -> Subcommand 2022-11-21 23:31:00 -08:00
David Tolnay
58d7ff4045
Rename Args -> opts::Expand 2022-11-21 23:30:23 -08:00
David Tolnay
a8f1501ef0
Release 1.0.35 2022-11-20 22:26:37 -08:00
David Tolnay
acf546ab95
Lockfile update 2022-11-20 22:26:19 -08:00
David Tolnay
dc38fc8db9
Add a sponsors link 2022-11-20 22:25:37 -08:00
David Tolnay
a7bc4bfab0
Merge pull request #169 from dtolnay/color
Parse color setting as ValueEnum
2022-11-20 22:21:48 -08:00
David Tolnay
9492c1be2f
Parse color setting as ValueEnum 2022-11-20 22:14:44 -08:00
David Tolnay
192786c487
Ignore buggy needless_borrow clippy lint
https://github.com/rust-lang/rust-clippy/issues/9710

    error[E0382]: use of moved value: `rustfmt`
       --> src/main.rs:244:47
        |
    238 |             if let Some(rustfmt) = rustfmt.or_else(which_rustfmt) {
        |                         ------- move occurs because `rustfmt` has type `PathBuf`, which does not implement the `Copy` trait
    ...
    244 |                     let output = Command::new(rustfmt)
        |                                               ^^^^^^^ value moved here, in previous iteration of loop
2022-10-24 22:09:48 -07:00
David Tolnay
66c9803e79
MIT copyright line
Delete the first paragraph of LICENSE-MIT (an inaccurate
pseudo-copyright line), leaving only the text of the MIT license.

Nothing about the license of cargo-expand has changed, only our
understanding of how to correctly communicate that license has changed.

This mirrors an equivalent change applied in the rust-lang/rust
repository years ago.
2022-10-18 02:06:02 -07:00
David Tolnay
ab754c4a68
Release 1.0.34 2022-10-15 01:52:36 -07:00
David Tolnay
5d3c20b011
Lockfile update 2022-10-15 01:52:17 -07:00
David Tolnay
eb1a31c0b8
Pull in nested comment formatting fix from prettyplease 0.1.21 2022-10-15 01:52:00 -07:00
David Tolnay
8a0d4d0c12
Release 1.0.33 2022-10-06 18:53:08 -07:00
David Tolnay
cd84e2b6a9
Lockfile update 2022-10-06 18:52:50 -07:00
David Tolnay
4e2ca58bd9
Pull in variadic comma fix from prettyplease 0.1.20 2022-10-06 18:52:24 -07:00
David Tolnay
4f80c54e63
Release 1.0.32 2022-09-28 15:11:11 -07:00
David Tolnay
4e55abfc53
Lockfile update 2022-09-28 15:10:58 -07:00
David Tolnay
54429e54a2
Merge pull request #166 from dtolnay/clap
Update argument parser to clap 4
2022-09-28 15:10:13 -07:00
David Tolnay
1a6b14a973
Update argument parser to clap 4 2022-09-28 15:07:16 -07:00
David Tolnay
f597166c59
Lockfile update 2022-09-28 14:59:22 -07:00
David Tolnay
e6e9b25c9d
Ignore bool_to_int_with_if clippy lint
error: boolean to int conversion using if
      --> src/main.rs:85:13
       |
    85 | /             if status.success() {
    86 | |                 0
    87 | |             } else {
    88 | |                 1
    89 | |             }
       | |_____________^ help: replace with from: `i32::from(!status.success())`
       |
       = note: `-D clippy::bool-to-int-with-if` implied by `-D clippy::all`
       = note: `!status.success() as i32` or `(!status.success()).into()` can also be valid options
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_to_int_with_if
2022-09-22 22:30:40 -07:00
David Tolnay
39b8acaaf0
Remove default package.readme metadata from Cargo.toml
Since cargo 1.46.0, README.md is recognized by default.
2022-09-14 09:15:57 -07:00
David Tolnay
fae3327a69
Release 1.0.31 2022-09-06 14:35:09 -07:00
David Tolnay
cbf78a9744
Lockfile update 2022-09-06 14:34:45 -07:00
David Tolnay
b65aa7ef6c
Update bat to 0.22 2022-09-06 14:31:54 -07:00
David Tolnay
560474732e
GitHub Workflows security hardening 2022-09-02 15:09:27 -07:00
David Tolnay
9708c683ad
Ignore using destructuring assignment to wildcard pattern 2022-08-31 00:23:17 -07:00
David Tolnay
8f973b8a3e
Release 1.0.30 2022-08-13 12:25:41 -07:00
David Tolnay
d4766a2804
Lockfile update 2022-08-13 12:25:23 -07:00
David Tolnay
14abc061ac
Merge pull request #163 from dtolnay/pretty
Prettyplease default, rustfmt opt-in via config
2022-08-13 12:24:46 -07:00
David Tolnay
9e6d9270e7
Prettyplease default, rustfmt opt-in via config 2022-08-13 12:21:22 -07:00
David Tolnay
5902eff89c
Ignore manual_assert pedantic clippy lint
error: only a `panic!` in `if`-then statement
       --> src/main.rs:524:5
        |
    524 | /     if sanity_check != &*hopefully_null_hook {
    525 | |         panic!("race condition on std::panic hook");
    526 | |     }
        | |_____^ help: try: `assert!(!(sanity_check != &*hopefully_null_hook), "race condition on std::panic hook");`
        |
        = note: `-D clippy::manual-assert` implied by `-D clippy::pedantic`
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_assert
2022-08-13 12:21:10 -07:00
David Tolnay
ccf513c526
Resolve borrow_as_ptr pedantic clippy lint
error: borrow as raw pointer
       --> src/main.rs:515:24
        |
    515 |     let sanity_check = &*null_hook as *const PanicHook;
        |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::ptr::addr_of!(*null_hook)`
        |
        = note: `-D clippy::borrow-as-ptr` implied by `-D clippy::pedantic`
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#borrow_as_ptr
2022-08-13 12:20:27 -07:00
David Tolnay
40279281bc
Merge pull request #162 from dtolnay/edition2021
Pass 2021 edition to rustfmt
2022-08-13 12:15:43 -07:00
David Tolnay
d256997c25
Pass 2021 edition to rustfmt 2022-08-13 12:12:15 -07:00
David Tolnay
acf8ded73b
Consolidate dependencies table in Cargo.toml 2022-08-13 11:45:49 -07:00
David Tolnay
b8b0a9d658
Release 1.0.29 2022-08-03 06:42:52 -07:00
David Tolnay
a8470a6945
Lockfile update 2022-08-03 06:37:10 -07:00
David Tolnay
b72d3c1e78
Update keywords in crates.io metadata 2022-08-02 10:38:54 -07:00
David Tolnay
b1cc1e5bb4
Add authors to Cargo.toml 2022-07-31 19:25:46 -07:00
David Tolnay
57d3d6ea39
Sort package entries in Cargo.toml 2022-07-31 19:19:01 -07:00