Skip to content

Bump serde from 1.0.215 to 1.0.216 (#44) #105

Bump serde from 1.0.215 to 1.0.216 (#44)

Bump serde from 1.0.215 to 1.0.216 (#44) #105

Triggered via push December 11, 2024 09:23
Status Success
Total duration 15s
Artifacts

lint.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

6 warnings
Format
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
this function has too many arguments (9/7): src/filters/user.rs#L4
warning: this function has too many arguments (9/7) --> src/filters/user.rs:4:1 | 4 | / pub fn link_to_user( 5 | | user: &User, 6 | | avatar: bool, 7 | | actually_link: bool, ... | 13 | | base_url: &str, 14 | | ) -> askama::Result<String> { | |___________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments = note: `#[warn(clippy::too_many_arguments)]` on by default
fields `context_id`, `quoter_id`, `quotee_id`, and `hidden` are never read: src/model/quote.rs#L15
warning: fields `context_id`, `quoter_id`, `quotee_id`, and `hidden` are never read --> src/model/quote.rs:15:9 | 12 | pub struct Quote { | ----- fields in this struct ... 15 | pub context_id: i32, | ^^^^^^^^^^ 16 | pub quoter_id: i32, | ^^^^^^^^^ 17 | pub quotee_id: i32, | ^^^^^^^^^ ... 20 | pub hidden: bool, | ^^^^^^ | = note: `Quote` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
field `user_id` is never read: src/model/comment.rs#L14
warning: field `user_id` is never read --> src/model/comment.rs:14:9 | 11 | pub struct Comment { | ------- field in this struct ... 14 | pub user_id: i32, | ^^^^^^^ | = note: `Comment` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
field `show_comments` is never read: src/filters/quote.rs#L108
warning: field `show_comments` is never read --> src/filters/quote.rs:108:5 | 98 | struct QuoteTemplate { | ------------- field in this struct ... 108 | show_comments: bool, | ^^^^^^^^^^^^^
fields `name`, `aud`, `iss`, and `exp` are never read: src/controllers/sessions.rs#L123
warning: fields `name`, `aud`, `iss`, and `exp` are never read --> src/controllers/sessions.rs:123:9 | 120 | struct TokenClaims { | ----------- fields in this struct ... 123 | pub name: String, | ^^^^ 124 | pub aud: String, | ^^^ 125 | pub iss: String, | ^^^ 126 | pub exp: u64, | ^^^ | = note: `TokenClaims` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default