Skip to content

break: bump MSRV to 1.67.1 #8

break: bump MSRV to 1.67.1

break: bump MSRV to 1.67.1 #8

GitHub Actions / clippy succeeded Jul 8, 2024 in 0s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.81.0-nightly (20ae37c18 2024-07-07)
  • cargo 1.81.0-nightly (154fdac39 2024-07-07)
  • clippy 0.1.81 (20ae37c 2024-07-07)

Annotations

Check warning on line 26 in src/link_style.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `impl` can be derived

warning: this `impl` can be derived
  --> src/link_style.rs:24:1
   |
24 | / impl Default for LinkStyle {
25 | |     fn default() -> Self { LinkStyle::Github }
26 | | }
   | |_^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
   = help: remove the manual implementation...
help: ...and instead derive it...
   |
17 + #[derive(Default)]
18 | pub enum LinkStyle {
   |
help: ...and mark the default variant
   |
18 ~     #[default]
19 ~     Github,
   |

Check warning on line 20 in src/fmt.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `impl` can be derived

warning: this `impl` can be derived
  --> src/fmt.rs:18:1
   |
18 | / impl Default for ChangelogFormat {
19 | |     fn default() -> Self { ChangelogFormat::Markdown }
20 | | }
   | |_^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
   = note: `#[warn(clippy::derivable_impls)]` on by default
   = help: remove the manual implementation...
help: ...and instead derive it...
   |
13 + #[derive(Default)]
14 | pub enum ChangelogFormat {
   |
help: ...and mark the default variant
   |
15 ~     #[default]
16 ~     Markdown,
   |