Chore(deps): Bump actions/checkout from 6 to 7 #4362
Annotations
2 warnings
|
large size difference between variants:
kube-client/src/client/auth/mod.rs#L378
warning: large size difference between variants
--> kube-client/src/client/auth/mod.rs:378:1
|
378 | / enum ProviderToken {
379 | | #[cfg(feature = "oidc")]
380 | | Oidc(oidc::Oidc),
| | ---------------- the largest variant contains at least 440 bytes
381 | | #[cfg(not(feature = "oidc"))]
... |
386 | | GcpOauth(oauth::Gcp),
| | -------------------- the second-largest variant contains at least 208 bytes
... |
389 | | }
| |_^ the entire enum is at least 440 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/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
|
380 - Oidc(oidc::Oidc),
380 + Oidc(Box<oidc::Oidc>),
|
|
|
redundant reference in `panic!` argument:
kube-core/src/schema.rs#L540
warning: redundant reference in `panic!` argument
--> kube-core/src/schema.rs:540:33
|
540 | ... &property,
| ^^^^^^^^^ help: remove the redundant `&`: `property`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_borrows_in_formatting
= note: `#[warn(clippy::useless_borrows_in_formatting)]` on by default
|