Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump reqwest from 0.11.24 to 0.11.27 in /axum1 #281

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Bump reqwest from 0.11.24 to 0.11.27 in /axum1

ca61280
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

Bump reqwest from 0.11.24 to 0.11.27 in /axum1 #281

Bump reqwest from 0.11.24 to 0.11.27 in /axum1
ca61280
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Apr 12, 2024 in 0s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.77.2 (25ef9e3d8 2024-04-09)
  • cargo 1.77.2 (e52e36006 2024-03-26)
  • clippy 0.1.77 (25ef9e3 2024-04-09)

Annotations

Check failure on line 11 in src/routes/recipe/extractors.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

error: field `0` is never read
  --> src/routes/recipe/extractors.rs:11:26
   |
11 | pub struct RecipeCreator(uuid::Uuid);
   |            ------------- ^^^^^^^^^^
   |            |
   |            field in this struct
   |
   = note: `RecipeCreator` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
   = note: `-D dead-code` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(dead_code)]`
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
   |
11 | pub struct RecipeCreator(());
   |                          ~~