Update ciphersuites with old drafts + new AEGIS #123
GitHub Actions / clippy
succeeded
Mar 1, 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.76.0 (07dca489a 2024-02-04)
- cargo 1.76.0 (c84b36747 2024-01-18)
- clippy 0.1.76 (07dca48 2024-02-04)
Annotations
Check warning on line 3 in src/certificate_transparency.rs
github-actions / clippy
this is an outer doc comment and does not apply to the parent module or crate
warning: this is an outer doc comment and does not apply to the parent module or crate
--> src/certificate_transparency.rs:1:1
|
1 | / ///!
2 | | ///! Certificate Trasparency structures are defined in
3 | | ///! [RFC6962](https://datatracker.ietf.org/doc/html/rfc6962).
| |______________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_doc_comments
= note: `#[warn(clippy::suspicious_doc_comments)]` on by default
help: use an inner doc comment to document the parent module or crate
|
1 + //!
2 + //! Certificate Trasparency structures are defined in
3 + //! [RFC6962](https://datatracker.ietf.org/doc/html/rfc6962).
|
Check warning on line 35 in build.rs
github-actions / clippy
the borrowed expression implements the required traits
warning: the borrowed expression implements the required traits
--> build.rs:35:48
|
35 | let mut file = BufWriter::new(File::create(&path).unwrap());
| ^^^^^ help: change this to: `path`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
Loading