Commit graph

838 commits

Author SHA1 Message Date
David Tolnay
265e59d353
Merge pull request #185 from viruscamp/master
Follow the `default-run` field in 'Cargo.toml' just like `cargo run`
2023-07-16 13:40:15 -07:00
David Tolnay
e07f896029
Delete CI dependency on rustfmt
No longer needed since the integration of prettyplease.
2023-07-14 21:50:41 -07:00
viruscamp
60ca77b39a fix#184 Follow the default-run field in 'Cargo.toml' just like cargo run 2023-07-14 18:30:35 +08:00
David Tolnay
8ee88168f6
Update test project to 2021 edition 2023-07-06 14:30:13 -07:00
David Tolnay
a8fd257bf9
Release 1.0.59 2023-07-05 14:16:11 -07:00
David Tolnay
915e37e67c
Enforce required compiler version of 1.70 2023-07-05 14:15:47 -07:00
David Tolnay
ab40799d78
Raise minimum tested compiler to 1.70
error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:168:5
        |
    168 | use std::io::IsTerminal;
        |     ^^^^^^^^^^^^^^^^^^^

    error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:220:22
        |
    220 |     std::io::stdin().is_terminal()
        |                      ^^^^^^^^^^^

    error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:232:23
        |
    232 |     std::io::stdout().is_terminal()
        |                       ^^^^^^^^^^^

    error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:238:23
        |
    238 |     std::io::stderr().is_terminal()
        |                       ^^^^^^^^^^^
2023-07-05 14:14:20 -07:00
David Tolnay
2ce232fb30
Release 1.0.58 2023-07-05 14:11:42 -07:00
David Tolnay
485b562b21
Eliminate vulnerable/unmaintained atty dependency 2023-07-05 14:11:15 -07:00
David Tolnay
5601bcf2a7
Release 1.0.57 2023-07-05 13:53:45 -07:00
David Tolnay
a174f5fd92
Lockfile update 2023-07-05 13:50:10 -07:00
David Tolnay
247d3ae5c8
Pull in regex crate rewrite 2023-07-05 13:49:58 -07:00
David Tolnay
6803e8d89c
Sort dependencies and features 2023-07-04 12:09:17 -07:00
David Tolnay
9880cb5940
Validate that pre-existing lockfile is not stale on first check 2023-07-04 11:23:55 -07:00
David Tolnay
6e3a19fe69
Release 1.0.56 2023-06-24 19:44:16 -07:00
David Tolnay
42c5f6f155
Pull in proc-macro2 raw byte str fix 2023-06-24 19:44:02 -07:00
David Tolnay
5ad7e15dda
Release 1.0.55 2023-06-24 16:22:55 -07:00
David Tolnay
18a637c2eb
Lockfile update 2023-06-24 16:22:31 -07:00
David Tolnay
3d523a339d
Pull in support for c-string literals 2023-06-24 16:21:56 -07:00
David Tolnay
8f8a8ef8ea
Release 1.0.54 2023-06-20 20:28:48 -07:00
David Tolnay
95f3356002
Lockfile update 2023-06-20 20:28:32 -07:00
David Tolnay
54f0d33b13
Format rest of items even if some caused panic 2023-06-20 20:26:35 -07:00
David Tolnay
65699f084a
Release 1.0.53 2023-06-16 17:37:31 -07:00
David Tolnay
e76befe834
Lockfile update 2023-06-16 17:37:10 -07:00
David Tolnay
9aee4a3f8c
Update prettyplease to pull in macro formatting improvements 2023-06-16 17:37:05 -07:00
David Tolnay
0794ca4e5a
Remove .clippy.toml in favor of respecting rust-version from Cargo.toml 2023-06-15 18:38:37 -07:00
David Tolnay
4ec88dd0af
Ignore uninlined_format_args pedantic clippy lint
warning: variables can be used directly in the `format!` string
      --> src/main.rs:54:21
       |
    54 |             let _ = writeln!(io::stderr(), "{}", err);
       |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
       = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic`
    help: change this to
       |
    54 -             let _ = writeln!(io::stderr(), "{}", err);
    54 +             let _ = writeln!(io::stderr(), "{err}");
       |

    warning: variables can be used directly in the `format!` string
      --> src/main.rs:70:21
       |
    70 |             let _ = writeln!(io::stdout(), "{}", theme);
       |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
    help: change this to
       |
    70 -             let _ = writeln!(io::stdout(), "{}", theme);
    70 +             let _ = writeln!(io::stdout(), "{theme}");
       |

    warning: variables can be used directly in the `format!` string
      --> src/main.rs:77:21
       |
    77 |               let _ = writeln!(
       |  _____________________^
    78 | |                 io::stderr(),
    79 | |                 "ERROR: cannot expand single item ({}) in ugly mode.",
    80 | |                 item,
    81 | |             );
       | |_____________^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args

    warning: variables can be used directly in the `format!` string
       --> src/main.rs:151:29
        |
    151 |                     let _ = writeln!(io::stderr(), "WARNING: no such item: {}", filter);
        |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
    help: change this to
        |
    151 -                     let _ = writeln!(io::stderr(), "WARNING: no such item: {}", filter);
    151 +                     let _ = writeln!(io::stderr(), "WARNING: no such item: {filter}");
        |

    warning: variables can be used directly in the `format!` string
       --> src/main.rs:230:17
        |
    230 |         let _ = write!(io::stdout(), "{}", content);
        |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
    help: change this to
        |
    230 -         let _ = write!(io::stdout(), "{}", content);
    230 +         let _ = write!(io::stdout(), "{content}");
        |

    warning: variables can be used directly in the `format!` string
       --> src/main.rs:388:13
        |
    388 |     let _ = writeln!(stream, " `{}`", line);
        |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
    help: change this to
        |
    388 -     let _ = writeln!(stream, " `{}`", line);
    388 +     let _ = writeln!(stream, " `{line}`");
        |

    warning: variables can be used directly in the `format!` string
       --> src/main.rs:400:21
        |
    400 |             let _ = write!(io::stderr(), "{}", line);
        |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
    help: change this to
        |
    400 -             let _ = write!(io::stderr(), "{}", line);
    400 +             let _ = write!(io::stderr(), "{line}");
        |

    warning: variables can be used directly in the `format!` string
       --> src/main.rs:471:25
        |
    471 |                   let _ = writeln!(
        |  _________________________^
    472 | |                     io::stderr(),
    473 | |                     "WARNING: invalid color in cargo config: {}",
    474 | |                     err
    475 | |                 );
        | |_________________^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
2023-06-15 18:38:34 -07:00
David Tolnay
4aa058d974
Release 1.0.52 2023-05-28 20:36:22 -07:00
David Tolnay
373fe09d38
Lockfile update 2023-05-28 20:36:04 -07:00
David Tolnay
3e8c7cae96
Merge pull request #183 from dtolnay/toolchain
Eliminate nightly toolchain reinvoke
2023-05-28 20:35:24 -07:00
David Tolnay
7d33e88d4d
Eliminate nightly toolchain reinvoke 2023-05-28 20:29:15 -07:00
David Tolnay
ef5b654d1d
Update toolchain_find dependency to 0.4 2023-05-28 19:55:01 -07:00
David Tolnay
f25adadb6e
Release 1.0.51 2023-05-23 09:03:55 -07:00
David Tolnay
edd194d2ee
Switch to published version of syn-select for syn 2 2023-05-23 09:03:41 -07:00
David Tolnay
10377dc6d0
Release 1.0.50 2023-05-23 09:01:25 -07:00
David Tolnay
439c1c5d4d
Lockfile update 2023-05-23 09:00:57 -07:00
David Tolnay
a3dde27f91
Pull in prettyplease macro_rules semicolon fix 2023-05-23 09:00:47 -07:00
David Tolnay
2ea214cc9d Release 1.0.49 2023-05-14 11:50:41 +02:00
David Tolnay
979ac95f49 Lockfile update 2023-05-14 11:50:13 +02:00
David Tolnay
db973cc6f9 Pull in builtin# syntax support 2023-05-14 11:48:01 +02:00
David Tolnay
8ebe23ee8d
Release 1.0.48 2023-04-25 18:37:18 -07:00
David Tolnay
cc44f773eb
Update toolchain_find dependency to 0.3 2023-04-25 18:34:39 -07:00
David Tolnay
c91b32f03d
Lockfile update 2023-04-25 18:33:46 -07:00
David Tolnay
14fe63c04d
Release 1.0.47 2023-04-02 18:43:14 -07:00
David Tolnay
03538ff3c1
Merge pull request #181 from dtolnay/isterminal
Switch from atty crate to is-terminal
2023-04-02 18:42:49 -07:00
David Tolnay
5bc73f7880
Switch from atty crate to is-terminal 2023-04-02 18:38:55 -07:00
David Tolnay
a4f63aef55
Lockfile update 2023-04-02 18:37:34 -07:00
David Tolnay
c10e57077f
Release 1.0.46 2023-03-25 12:54:55 -07:00
David Tolnay
bb1e2455c2
Merge pull request #180 from dtolnay/bat
Update bat to 0.23
2023-03-25 12:54:33 -07:00
David Tolnay
69423e33c6
Update bat to 0.23 2023-03-25 12:50:30 -07:00