build(deps): bump h2 from 0.3.22 to 0.3.24 (#4) #20
Annotations
2 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/
|
this function can be simplified using the `async fn` syntax:
src/lib.rs#L46
warning: this function can be simplified using the `async fn` syntax
--> src/lib.rs:46:17
|
46 | #[volo::service]
| _________________^
47 | | impl<Cx, Req, S> volo::Service<Cx, Req> for ConcurrencyLimiterService<S>
48 | | where
49 | | Req: std::fmt::Debug + Send + 'static,
... |
53 | | {
54 | | async fn call<'cx, 's>(&'s self, cx: &'cx mut Cx, req: Req) -> Result<S::Response, S::Error>
| |__________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
= note: `#[warn(clippy::manual_async_fn)]` on by default
|