This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Delete deprecated action step #12
Annotations
2 errors and 4 warnings
|
variables can be used directly in the `format!` string:
scripty_utils/src/hex_vec.rs#L7
error: variables can be used directly in the `format!` string
--> scripty_utils/src/hex_vec.rs:7:6
|
7 | if write!(hex, "{:02x}", byte).is_err() {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
7 - if write!(hex, "{:02x}", byte).is_err() {
7 + if write!(hex, "{byte:02x}").is_err() {
|
|
|
variables can be used directly in the `format!` string:
scripty_utils/src/embed_pagination.rs#L172
error: variables can be used directly in the `format!` string
--> scripty_utils/src/embed_pagination.rs:172:53
|
172 | footer_additional.map_or_else(String::new, |s| format!(" | {}", s))
| ^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-D clippy::uninlined-format-args` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
|
172 - footer_additional.map_or_else(String::new, |s| format!(" | {}", s))
172 + footer_additional.map_or_else(String::new, |s| format!(" | {s}"))
|
|
|
Build binary:
scripty_commands/src/cmds/join.rs#L10
unused import: `ThreadId`
|
|
Build binary:
scripty_bot_utils/src/lib.rs#L2
the feature `slice_as_chunks` has been stable since 1.88.0-nightly and no longer requires an attribute to enable
|
|
Build binary:
scripty_audio_handler/src/events/voice_tick.rs#L151
unused variable: `auto_detect_lang`
|
|
Build binary:
scripty_stt/src/lib.rs#L1
the feature `slice_as_chunks` has been stable since 1.88.0-nightly and no longer requires an attribute to enable
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
scripty_v2-x86_64-unknown-linux-gnu
Expired
|
43.5 MB |
sha256:812f462c04c6360fbdf2a596b0694479bf5c6251ee22fc6fcf4c919420351d6f
|
|