chore(deps): update renovatebot/github-action action to v46#128
Open
elmarx wants to merge 1 commit into
Open
Annotations
3 warnings
|
Complete job
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Run crusty-pie/clippy@v1:
src/http/model.rs#L12
warning: large size difference between variants
--> src/http/model.rs:12:1
|
12 | / pub enum RequestMode {
13 | | Proxy,
| | ----- the second-largest variant carries no data at all
14 | |/ Experiment {
15 | || /// if given in config: custom key
16 | || key: Option<String>,
17 | || /// path of the route
... ||
23 | || rx: Receiver<ChannelValue>,
24 | || },
| ||_____- the largest variant contains at least 360 bytes
25 | | }
| |__^ the entire enum is at least 360 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#large_enum_variant
= note: `#[warn(clippy::large_enum_variant)]` on by default
help: consider boxing the large fields or introducing indirection in some other way to reduce the total size of the enum
|
21 - request: http::Request<Bytes>,
21 + request: Box<http::Request<Bytes>>,
|
|
|
Run crusty-pie/clippy@v1:
src/http/model.rs#L12
warning: large size difference between variants
--> src/http/model.rs:12:1
|
12 | / pub enum RequestMode {
13 | | Proxy,
| | ----- the second-largest variant carries no data at all
14 | |/ Experiment {
15 | || /// if given in config: custom key
16 | || key: Option<String>,
17 | || /// path of the route
... ||
23 | || rx: Receiver<ChannelValue>,
24 | || },
| ||_____- the largest variant contains at least 360 bytes
25 | | }
| |__^ the entire enum is at least 360 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#large_enum_variant
= note: `#[warn(clippy::large_enum_variant)]` on by default
help: consider boxing the large fields or introducing indirection in some other way to reduce the total size of the enum
|
21 - request: http::Request<Bytes>,
21 + request: Box<http::Request<Bytes>>,
|
|
background
wait
wait-all
cancel
parallel
Loading