Merge pull request #108 from OffchainLabs/cargo-readme #350
Annotations
3 warnings
(aarch64-apple-darwin, nightly)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
(aarch64-apple-darwin, stable)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
match expression looks like `matches!` macro:
main/src/main.rs#L490
warning: match expression looks like `matches!` macro
--> main/src/main.rs:490:5
|
490 | / match subcommand {
491 | | "cargo-stylus-check" | "cargo-stylus-cgen" | "cargo-stylus-replay" => true,
492 | | _ => false,
493 | | }
| |_____^ help: try: `matches!(subcommand, "cargo-stylus-check" | "cargo-stylus-cgen" | "cargo-stylus-replay")`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_like_matches_macro
= note: `#[warn(clippy::match_like_matches_macro)]` on by default
|