Skip to content

Bump bytes from 1.5.0 to 1.11.1

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

Bump bytes from 1.5.0 to 1.11.1 #310

Bump bytes from 1.5.0 to 1.11.1
5ec819f
Select commit
Loading
Failed to load commit list.
GitHub Actions / cargo check succeeded Feb 3, 2026 in 1m 39s

cargo check

There are 0 failures, 2 warnings, and 0 notice.

Details

Results

Compile result

Type Count
error: internal compiler error 0
error 0
warning 2
failure-note 0
note 0
help 0

Annotations

Check warning on line 85 in src\web\mod.rs

See this annotation in the file changed.

@github-actions github-actions / cargo check

unnecessary parentheses around closure body

warning: unnecessary parentheses around closure body
  --> src\web\mod.rs:85:30
   |
85 |     let method_fallback = || (|| async { ApiError::MethodNotAllowed });
   |                              ^                                       ^
   |
   = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
help: remove these parentheses
   |
85 -     let method_fallback = || (|| async { ApiError::MethodNotAllowed });
85 +     let method_fallback = || || async { ApiError::MethodNotAllowed } ;
   |

Raw output
[
  {
    "children": [],
    "code": null,
    "level": "note",
    "message": "`#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default",
    "rendered": null,
    "spans": []
  },
  {
    "children": [],
    "code": null,
    "level": "help",
    "message": "remove these parentheses",
    "rendered": null,
    "spans": [
      {
        "byte_end": 2486,
        "byte_start": 2485,
        "column_end": 31,
        "column_start": 30,
        "expansion": null,
        "file_name": "src\\web\\mod.rs",
        "is_primary": true,
        "label": null,
        "line_end": 85,
        "line_start": 85,
        "suggested_replacement": "",
        "suggestion_applicability": "MachineApplicable",
        "text": [
          {
            "highlight_end": 31,
            "highlight_start": 30,
            "text": "    let method_fallback = || (|| async { ApiError::MethodNotAllowed });"
          }
        ]
      },
      {
        "byte_end": 2526,
        "byte_start": 2525,
        "column_end": 71,
        "column_start": 70,
        "expansion": null,
        "file_name": "src\\web\\mod.rs",
        "is_primary": true,
        "label": null,
        "line_end": 85,
        "line_start": 85,
        "suggested_replacement": " ",
        "suggestion_applicability": "MachineApplicable",
        "text": [
          {
            "highlight_end": 71,
            "highlight_start": 70,
            "text": "    let method_fallback = || (|| async { ApiError::MethodNotAllowed });"
          }
        ]
      }
    ]
  }
]

Check warning on line 87 in src\web\auth.rs

See this annotation in the file changed.

@github-actions github-actions / cargo check

struct `GetAuthorizationQueryOptions` is never constructed

warning: struct `GetAuthorizationQueryOptions` is never constructed
  --> src\web\auth.rs:87:12
   |
87 | pub struct GetAuthorizationQueryOptions {
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default

Raw output
[
  {
    "children": [],
    "code": null,
    "level": "note",
    "message": "`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default",
    "rendered": null,
    "spans": []
  }
]