Commit graph

475 commits

Author SHA1 Message Date
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
David Tolnay
0880139299
Release 1.0.28 2022-07-24 21:39:05 -07:00
David Tolnay
edf5827c7c
Lockfile update 2022-07-24 21:37:59 -07:00
David Tolnay
2d6f110b41
Merge pull request #160 from dtolnay/rustuprun
cargo +nightly -> rustup run nightly cargo
2022-07-24 21:36:50 -07:00
David Tolnay
646e4646b0
cargo +nightly -> rustup run nightly cargo 2022-07-24 21:23:41 -07:00
David Tolnay
4056677426
Release 1.0.27 2022-06-18 15:20:40 -07:00
David Tolnay
c613cf0630
Lockfile update 2022-06-18 15:20:21 -07:00
David Tolnay
4a17e90049
Merge pull request #156 from dtolnay/raw
Make prettyplease support expansion of core::ptr::addr_of
2022-06-18 15:19:59 -07:00
David Tolnay
23489d775e
Make prettyplease support expansion of core::ptr::addr_of 2022-06-18 15:12:36 -07:00
David Tolnay
aad74ef5de
Update to Rust 2021 edition 2022-06-16 21:54:28 -07:00
David Tolnay
8cef130bfd
Release 1.0.26 2022-06-16 16:18:01 -07:00
David Tolnay
a1d5e5429f
Merge pull request #155 from dtolnay/profile
Add support for `--profile` flag
2022-06-16 16:17:37 -07:00
David Tolnay
58f5a973d7
Add support for --profile flag 2022-06-16 16:13:36 -07:00
David Tolnay
6fcbdbb2d2
Release 1.0.25 2022-06-16 15:54:55 -07:00
David Tolnay
1a43c1c0db
Merge pull request #153 from dtolnay/version
Include prettyplease version in --version
2022-06-16 15:51:41 -07:00
David Tolnay
c5b8828563
Include prettyplease version in --version 2022-06-16 15:47:19 -07:00
David Tolnay
c92f07e606
Release 1.0.24 2022-06-16 14:24:36 -07:00
David Tolnay
422c703588
Merge pull request #151 from dtolnay/vendor
Make cargo-expand able to be vendored by cargo-vendor
2022-06-16 14:14:47 -07:00