break: bump MSRV to 1.67.1 #6
Annotations
4 warnings
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
security_audit
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
this `impl` can be derived:
src/link_style.rs#L24
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,
|
|
this `impl` can be derived:
src/fmt.rs#L18
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,
|
|