Skip to content

feat(cli): introduce new output formatter #76

feat(cli): introduce new output formatter

feat(cli): introduce new output formatter #76

Triggered via pull request February 9, 2024 13:43
@raventidraventid
synchronize #59
new-formatter
Status Failure
Total duration 1m 55s
Artifacts

cli.yml

on: pull_request
Matrix: shell_tests
Fit to window
Zoom out
Zoom in

Annotations

79 errors and 9 warnings
Tests Advanced CLI: src/client/mod.rs#L14
unresolved import `crate::cli::simple`
Tests Advanced CLI
failed to compile `aurora-cli-rs v0.1.0 (/root/runners_workdir/runners/Aurora-GH-runner-1/aurora-cli-rs/aurora-cli-rs)`, intermediate artifacts can be found at `/root/runners_workdir/runners/Aurora-GH-runner-1/aurora-cli-rs/aurora-cli-rs/target`.
Tests Advanced CLI
The process '/root/.cargo/bin/cargo' failed with exit code 101
Tests Simple CLI
The job was canceled because "Advanced" failed.
matching over `()` is more explicit: src/utils/mod.rs#L86
error: matching over `()` is more explicit --> src/utils/mod.rs:86:15 | 86 | .map(|_| output) | ^ help: use `()` instead of `_`: `()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns = note: `#[deny(clippy::ignored_unit_patterns)]` implied by `#[deny(clippy::pedantic)]`
matching over `()` is more explicit: src/utils/mod.rs#L86
error: matching over `()` is more explicit --> src/utils/mod.rs:86:15 | 86 | .map(|_| output) | ^ help: use `()` instead of `_`: `()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns = note: `#[deny(clippy::ignored_unit_patterns)]` implied by `#[deny(clippy::pedantic)]`
this could be a `const fn`: src/client/mod.rs#L36
error: this could be a `const fn` --> src/client/mod.rs:36:5 | 36 | / pub fn new(client: Client, output_format: OutputFormat) -> Self { 37 | | Self { 38 | | client, 39 | | output_format, 40 | | } 41 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn note: the lint level is defined here --> src/main.rs:1:27 | 1 | #![deny(clippy::pedantic, clippy::nursery)] | ^^^^^^^^^^^^^^^ = note: `#[deny(clippy::missing_const_for_fn)]` implied by `#[deny(clippy::nursery)]`
this could be a `const fn`: src/client/mod.rs#L36
error: this could be a `const fn` --> src/client/mod.rs:36:5 | 36 | / pub fn new(client: Client, output_format: OutputFormat) -> Self { 37 | | Self { 38 | | client, 39 | | output_format, 40 | | } 41 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_const_for_fn note: the lint level is defined here --> src/main.rs:1:27 | 1 | #![deny(clippy::pedantic, clippy::nursery)] | ^^^^^^^^^^^^^^^ = note: `#[deny(clippy::missing_const_for_fn)]` implied by `#[deny(clippy::nursery)]`
variables can be used directly in the `format!` string: src/cli/simple/command/mod.rs#L857
error: variables can be used directly in the `format!` string --> src/cli/simple/command/mod.rs:857:21 | 857 | println!("{}", formatted); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 857 - println!("{}", formatted); 857 + println!("{formatted}"); |
variables can be used directly in the `format!` string: src/cli/simple/command/mod.rs#L853
error: variables can be used directly in the `format!` string --> src/cli/simple/command/mod.rs:853:21 | 853 | println!("{}", formatted); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[deny(clippy::uninlined_format_args)]` implied by `#[deny(clippy::pedantic)]` help: change this to | 853 - println!("{}", formatted); 853 + println!("{formatted}"); |
variables can be used directly in the `format!` string: src/cli/simple/command/mod.rs#L857
error: variables can be used directly in the `format!` string --> src/cli/simple/command/mod.rs:857:21 | 857 | println!("{}", formatted); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 857 - println!("{}", formatted); 857 + println!("{formatted}"); |
variables can be used directly in the `format!` string: src/cli/simple/command/mod.rs#L853
error: variables can be used directly in the `format!` string --> src/cli/simple/command/mod.rs:853:21 | 853 | println!("{}", formatted); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[deny(clippy::uninlined_format_args)]` implied by `#[deny(clippy::pedantic)]` help: change this to | 853 - println!("{}", formatted); 853 + println!("{formatted}"); |
unused import: `Command`: src/cli/mod.rs#L10
error: unused import: `Command` --> src/cli/mod.rs:10:37 | 10 | pub use simple::{command, run, Cli, Command}; | ^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]`
unused import: `Command`: src/cli/mod.rs#L10
error: unused import: `Command` --> src/cli/mod.rs:10:37 | 10 | pub use simple::{command, run, Cli, Command}; | ^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]`
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1270
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1270:57 | 1270 | pub const CLAP_LONG_VERSION:&str = shadow_rs::formatcp!(r#"{} | _________________________________________________________^ 1271 | | branch:{} 1272 | | commit_hash:{} 1273 | | build_time:{} 1274 | | build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1270 ~ pub const CLAP_LONG_VERSION:&str = shadow_rs::formatcp!(r"{} 1271 | branch:{} 1272 | commit_hash:{} 1273 | build_time:{} 1274 ~ build_env:{},{}",PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1258
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1258:52 | 1258 | pub const CLAP_VERSION:&str = shadow_rs::formatcp!(r#"{} | ____________________________________________________^ 1259 | | branch:{} 1260 | | commit_hash:{} 1261 | | build_time:{} 1262 | | build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1258 ~ pub const CLAP_VERSION:&str = shadow_rs::formatcp!(r"{} 1259 | branch:{} 1260 | commit_hash:{} 1261 | build_time:{} 1262 ~ build_env:{},{}",PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1248
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1248:47 | 1248 | pub const VERSION:&str = shadow_rs::formatcp!(r#" | _______________________________________________^ 1249 | | pkg_version:{} 1250 | | branch:{} 1251 | | commit_hash:{} 1252 | | build_time:{} 1253 | | build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1248 ~ pub const VERSION:&str = shadow_rs::formatcp!(r" 1249 | pkg_version:{} ... 1252 | build_time:{} 1253 ~ build_env:{},{}",PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1241
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1241:23 | 1241 | pub const TAG :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1241 - pub const TAG :&str = r#""#; 1241 + pub const TAG :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1234
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1234:32 | 1234 | pub const SHORT_COMMIT :&str = r#"e00d0d27"#; | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1234 - pub const SHORT_COMMIT :&str = r#"e00d0d27"#; 1234 + pub const SHORT_COMMIT :&str = r"e00d0d27"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1223
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1223:32 | 1223 | pub const RUST_VERSION :&str = r#"rustc 1.75.0 (82e1608df 2023-12-21)"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1223 - pub const RUST_VERSION :&str = r#"rustc 1.75.0 (82e1608df 2023-12-21)"#; 1223 + pub const RUST_VERSION :&str = r"rustc 1.75.0 (82e1608df 2023-12-21)"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1215
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1215:32 | 1215 | pub const RUST_CHANNEL :&str = r#"1.75.0-x86_64-unknown-linux-gnu"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1215 - pub const RUST_CHANNEL :&str = r#"1.75.0-x86_64-unknown-linux-gnu"#; 1215 + pub const RUST_CHANNEL :&str = r"1.75.0-x86_64-unknown-linux-gnu"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1207
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1207:32 | 1207 | pub const PROJECT_NAME :&str = r#"aurora-cli-rs"#; | ^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1207 - pub const PROJECT_NAME :&str = r#"aurora-cli-rs"#; 1207 + pub const PROJECT_NAME :&str = r"aurora-cli-rs"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1201
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1201:35 | 1201 | pub const PKG_VERSION_PRE :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1201 - pub const PKG_VERSION_PRE :&str = r#""#; 1201 + pub const PKG_VERSION_PRE :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1195
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1195:37 | 1195 | pub const PKG_VERSION_PATCH :&str = r#"0"#; | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1195 - pub const PKG_VERSION_PATCH :&str = r#"0"#; 1195 + pub const PKG_VERSION_PATCH :&str = r"0"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1189
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1189:37 | 1189 | pub const PKG_VERSION_MINOR :&str = r#"1"#; | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1189 - pub const PKG_VERSION_MINOR :&str = r#"1"#; 1189 + pub const PKG_VERSION_MINOR :&str = r"1"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1183
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1183:37 | 1183 | pub const PKG_VERSION_MAJOR :&str = r#"0"#; | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1183 - pub const PKG_VERSION_MAJOR :&str = r#"0"#; 1183 + pub const PKG_VERSION_MAJOR :&str = r"0"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1177
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1177:31 | 1177 | pub const PKG_VERSION :&str = r#"0.1.0"#; | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1177 - pub const PKG_VERSION :&str = r#"0.1.0"#; 1177 + pub const PKG_VERSION :&str = r"0.1.0"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1270
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1270:57 | 1270 | pub const CLAP_LONG_VERSION:&str = shadow_rs::formatcp!(r#"{} | _________________________________________________________^ 1271 | | branch:{} 1272 | | commit_hash:{} 1273 | | build_time:{} 1274 | | build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1270 ~ pub const CLAP_LONG_VERSION:&str = shadow_rs::formatcp!(r"{} 1271 | branch:{} 1272 | commit_hash:{} 1273 | build_time:{} 1274 ~ build_env:{},{}",PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1258
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1258:52 | 1258 | pub const CLAP_VERSION:&str = shadow_rs::formatcp!(r#"{} | ____________________________________________________^ 1259 | | branch:{} 1260 | | commit_hash:{} 1261 | | build_time:{} 1262 | | build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1258 ~ pub const CLAP_VERSION:&str = shadow_rs::formatcp!(r"{} 1259 | branch:{} 1260 | commit_hash:{} 1261 | build_time:{} 1262 ~ build_env:{},{}",PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1171
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1171:35 | 1171 | pub const PKG_DESCRIPTION :&str = r#"Aurora CLI is a command line interface to bootstrap Aurora engine"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1171 - pub const PKG_DESCRIPTION :&str = r#"Aurora CLI is a command line interface to bootstrap Aurora engine"#; 1171 + pub const PKG_DESCRIPTION :&str = r"Aurora CLI is a command line interface to bootstrap Aurora engine"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1248
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1248:47 | 1248 | pub const VERSION:&str = shadow_rs::formatcp!(r#" | _______________________________________________^ 1249 | | pkg_version:{} 1250 | | branch:{} 1251 | | commit_hash:{} 1252 | | build_time:{} 1253 | | build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL | |_________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1248 ~ pub const VERSION:&str = shadow_rs::formatcp!(r" 1249 | pkg_version:{} ... 1252 | build_time:{} 1253 ~ build_env:{},{}",PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1165
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1165:28 | 1165 | pub const LAST_TAG :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1165 - pub const LAST_TAG :&str = r#""#; 1165 + pub const LAST_TAG :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1241
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1241:23 | 1241 | pub const TAG :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1241 - pub const TAG :&str = r#""#; 1241 + pub const TAG :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1156
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1156:35 | 1156 | pub const GIT_STATUS_FILE :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1156 - pub const GIT_STATUS_FILE :&str = r#""#; 1156 + pub const GIT_STATUS_FILE :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1234
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1234:32 | 1234 | pub const SHORT_COMMIT :&str = r#"e00d0d27"#; | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1234 - pub const SHORT_COMMIT :&str = r#"e00d0d27"#; 1234 + pub const SHORT_COMMIT :&str = r"e00d0d27"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1138
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1138:31 | 1138 | pub const COMMIT_HASH :&str = r#"e00d0d271b035847c0077ee747ea050de8f8e38a"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1138 - pub const COMMIT_HASH :&str = r#"e00d0d271b035847c0077ee747ea050de8f8e38a"#; 1138 + pub const COMMIT_HASH :&str = r"e00d0d271b035847c0077ee747ea050de8f8e38a"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1223
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1223:32 | 1223 | pub const RUST_VERSION :&str = r#"rustc 1.75.0 (82e1608df 2023-12-21)"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1223 - pub const RUST_VERSION :&str = r#"rustc 1.75.0 (82e1608df 2023-12-21)"#; 1223 + pub const RUST_VERSION :&str = r"rustc 1.75.0 (82e1608df 2023-12-21)"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1129
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1129:32 | 1129 | pub const COMMIT_EMAIL :&str = r#"raventid@users.noreply.github.com"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1129 - pub const COMMIT_EMAIL :&str = r#"raventid@users.noreply.github.com"#; 1129 + pub const COMMIT_EMAIL :&str = r"raventid@users.noreply.github.com"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1215
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1215:32 | 1215 | pub const RUST_CHANNEL :&str = r#"1.75.0-x86_64-unknown-linux-gnu"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1215 - pub const RUST_CHANNEL :&str = r#"1.75.0-x86_64-unknown-linux-gnu"#; 1215 + pub const RUST_CHANNEL :&str = r"1.75.0-x86_64-unknown-linux-gnu"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1207
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1207:32 | 1207 | pub const PROJECT_NAME :&str = r#"aurora-cli-rs"#; | ^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1207 - pub const PROJECT_NAME :&str = r#"aurora-cli-rs"#; 1207 + pub const PROJECT_NAME :&str = r"aurora-cli-rs"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1121
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1121:36 | 1121 | pub const COMMIT_DATE_3339 :&str = r#"2024-02-09T13:43:39Z"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1121 - pub const COMMIT_DATE_3339 :&str = r#"2024-02-09T13:43:39Z"#; 1121 + pub const COMMIT_DATE_3339 :&str = r"2024-02-09T13:43:39Z"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1201
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1201:35 | 1201 | pub const PKG_VERSION_PRE :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1201 - pub const PKG_VERSION_PRE :&str = r#""#; 1201 + pub const PKG_VERSION_PRE :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1112
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1112:36 | 1112 | pub const COMMIT_DATE_2822 :&str = r#"Fri, 09 Feb 2024 13:43:39 +0000"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1112 - pub const COMMIT_DATE_2822 :&str = r#"Fri, 09 Feb 2024 13:43:39 +0000"#; 1112 + pub const COMMIT_DATE_2822 :&str = r"Fri, 09 Feb 2024 13:43:39 +0000"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1195
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1195:37 | 1195 | pub const PKG_VERSION_PATCH :&str = r#"0"#; | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1195 - pub const PKG_VERSION_PATCH :&str = r#"0"#; 1195 + pub const PKG_VERSION_PATCH :&str = r"0"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1103
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1103:31 | 1103 | pub const COMMIT_DATE :&str = r#"2024-02-09 13:43:39 +00:00"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1103 - pub const COMMIT_DATE :&str = r#"2024-02-09 13:43:39 +00:00"#; 1103 + pub const COMMIT_DATE :&str = r"2024-02-09 13:43:39 +00:00"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1189
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1189:37 | 1189 | pub const PKG_VERSION_MINOR :&str = r#"1"#; | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1189 - pub const PKG_VERSION_MINOR :&str = r#"1"#; 1189 + pub const PKG_VERSION_MINOR :&str = r"1"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1095
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1095:33 | 1095 | pub const COMMIT_AUTHOR :&str = r#"Julian Pokrovsky"#; | ^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1095 - pub const COMMIT_AUTHOR :&str = r#"Julian Pokrovsky"#; 1095 + pub const COMMIT_AUTHOR :&str = r"Julian Pokrovsky"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1183
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1183:37 | 1183 | pub const PKG_VERSION_MAJOR :&str = r#"0"#; | ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1183 - pub const PKG_VERSION_MAJOR :&str = r#"0"#; 1183 + pub const PKG_VERSION_MAJOR :&str = r"0"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1087
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1087:33 | 1087 | pub const CARGO_VERSION :&str = r#"cargo 1.75.0 (1d8b05cdd 2023-11-20)"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1087 - pub const CARGO_VERSION :&str = r#"cargo 1.75.0 (1d8b05cdd 2023-11-20)"#; 1087 + pub const CARGO_VERSION :&str = r"cargo 1.75.0 (1d8b05cdd 2023-11-20)"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1177
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1177:31 | 1177 | pub const PKG_VERSION :&str = r#"0.1.0"#; | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1177 - pub const PKG_VERSION :&str = r#"0.1.0"#; 1177 + pub const PKG_VERSION :&str = r"0.1.0"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1171
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1171:35 | 1171 | pub const PKG_DESCRIPTION :&str = r#"Aurora CLI is a command line interface to bootstrap Aurora engine"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1171 - pub const PKG_DESCRIPTION :&str = r#"Aurora CLI is a command line interface to bootstrap Aurora engine"#; 1171 + pub const PKG_DESCRIPTION :&str = r"Aurora CLI is a command line interface to bootstrap Aurora engine"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1165
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1165:28 | 1165 | pub const LAST_TAG :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1165 - pub const LAST_TAG :&str = r#""#; 1165 + pub const LAST_TAG :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1156
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1156:35 | 1156 | pub const GIT_STATUS_FILE :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1156 - pub const GIT_STATUS_FILE :&str = r#""#; 1156 + pub const GIT_STATUS_FILE :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1138
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1138:31 | 1138 | pub const COMMIT_HASH :&str = r#"e00d0d271b035847c0077ee747ea050de8f8e38a"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1138 - pub const COMMIT_HASH :&str = r#"e00d0d271b035847c0077ee747ea050de8f8e38a"#; 1138 + pub const COMMIT_HASH :&str = r"e00d0d271b035847c0077ee747ea050de8f8e38a"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1129
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1129:32 | 1129 | pub const COMMIT_EMAIL :&str = r#"raventid@users.noreply.github.com"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1129 - pub const COMMIT_EMAIL :&str = r#"raventid@users.noreply.github.com"#; 1129 + pub const COMMIT_EMAIL :&str = r"raventid@users.noreply.github.com"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1121
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1121:36 | 1121 | pub const COMMIT_DATE_3339 :&str = r#"2024-02-09T13:43:39Z"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1121 - pub const COMMIT_DATE_3339 :&str = r#"2024-02-09T13:43:39Z"#; 1121 + pub const COMMIT_DATE_3339 :&str = r"2024-02-09T13:43:39Z"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1112
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1112:36 | 1112 | pub const COMMIT_DATE_2822 :&str = r#"Fri, 09 Feb 2024 13:43:39 +0000"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1112 - pub const COMMIT_DATE_2822 :&str = r#"Fri, 09 Feb 2024 13:43:39 +0000"#; 1112 + pub const COMMIT_DATE_2822 :&str = r"Fri, 09 Feb 2024 13:43:39 +0000"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1103
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1103:31 | 1103 | pub const COMMIT_DATE :&str = r#"2024-02-09 13:43:39 +00:00"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1103 - pub const COMMIT_DATE :&str = r#"2024-02-09 13:43:39 +00:00"#; 1103 + pub const COMMIT_DATE :&str = r"2024-02-09 13:43:39 +00:00"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1095
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1095:33 | 1095 | pub const COMMIT_AUTHOR :&str = r#"Julian Pokrovsky"#; | ^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1095 - pub const COMMIT_AUTHOR :&str = r#"Julian Pokrovsky"#; 1095 + pub const COMMIT_AUTHOR :&str = r"Julian Pokrovsky"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L1087
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:1087:33 | 1087 | pub const CARGO_VERSION :&str = r#"cargo 1.75.0 (1d8b05cdd 2023-11-20)"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 1087 - pub const CARGO_VERSION :&str = r#"cargo 1.75.0 (1d8b05cdd 2023-11-20)"#; 1087 + pub const CARGO_VERSION :&str = r"cargo 1.75.0 (1d8b05cdd 2023-11-20)"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L67
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:67:38 | 67 | pub const CARGO_MANIFEST_DIR :&str = r#"/home/runner/work/aurora-cli-rs/aurora-cli-rs"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 67 - pub const CARGO_MANIFEST_DIR :&str = r#"/home/runner/work/aurora-cli-rs/aurora-cli-rs"#; 67 + pub const CARGO_MANIFEST_DIR :&str = r"/home/runner/work/aurora-cli-rs/aurora-cli-rs"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L60
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:60:35 | 60 | pub const BUILD_TIME_3339 :&str = r#"2024-02-09T13:45:13Z"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 60 - pub const BUILD_TIME_3339 :&str = r#"2024-02-09T13:45:13Z"#; 60 + pub const BUILD_TIME_3339 :&str = r"2024-02-09T13:45:13Z"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L54
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:54:35 | 54 | pub const BUILD_TIME_2822 :&str = r#"Fri, 09 Feb 2024 13:45:13 +0000"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 54 - pub const BUILD_TIME_2822 :&str = r#"Fri, 09 Feb 2024 13:45:13 +0000"#; 54 + pub const BUILD_TIME_2822 :&str = r"Fri, 09 Feb 2024 13:45:13 +0000"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L48
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:48:30 | 48 | pub const BUILD_TIME :&str = r#"2024-02-09 13:45:13 +00:00"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 48 - pub const BUILD_TIME :&str = r#"2024-02-09 13:45:13 +00:00"#; 48 + pub const BUILD_TIME :&str = r"2024-02-09 13:45:13 +00:00"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L42
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:42:37 | 42 | pub const BUILD_TARGET_ARCH :&str = r#"x86_64"#; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 42 - pub const BUILD_TARGET_ARCH :&str = r#"x86_64"#; 42 + pub const BUILD_TARGET_ARCH :&str = r"x86_64"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L36
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:36:32 | 36 | pub const BUILD_TARGET :&str = r#"x86_64-unknown-linux-gnu"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 36 - pub const BUILD_TARGET :&str = r#"x86_64-unknown-linux-gnu"#; 36 + pub const BUILD_TARGET :&str = r"x86_64-unknown-linux-gnu"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L29
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:29:38 | 29 | pub const BUILD_RUST_CHANNEL :&str = r#"debug"#; | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 29 - pub const BUILD_RUST_CHANNEL :&str = r#"debug"#; 29 + pub const BUILD_RUST_CHANNEL :&str = r"debug"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L67
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:67:38 | 67 | pub const CARGO_MANIFEST_DIR :&str = r#"/home/runner/work/aurora-cli-rs/aurora-cli-rs"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 67 - pub const CARGO_MANIFEST_DIR :&str = r#"/home/runner/work/aurora-cli-rs/aurora-cli-rs"#; 67 + pub const CARGO_MANIFEST_DIR :&str = r"/home/runner/work/aurora-cli-rs/aurora-cli-rs"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L60
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:60:35 | 60 | pub const BUILD_TIME_3339 :&str = r#"2024-02-09T13:45:13Z"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 60 - pub const BUILD_TIME_3339 :&str = r#"2024-02-09T13:45:13Z"#; 60 + pub const BUILD_TIME_3339 :&str = r"2024-02-09T13:45:13Z"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L54
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:54:35 | 54 | pub const BUILD_TIME_2822 :&str = r#"Fri, 09 Feb 2024 13:45:13 +0000"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 54 - pub const BUILD_TIME_2822 :&str = r#"Fri, 09 Feb 2024 13:45:13 +0000"#; 54 + pub const BUILD_TIME_2822 :&str = r"Fri, 09 Feb 2024 13:45:13 +0000"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L22
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:22:28 | 22 | pub const BUILD_OS :&str = r#"linux-x86_64"#; | ^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 22 - pub const BUILD_OS :&str = r#"linux-x86_64"#; 22 + pub const BUILD_OS :&str = r"linux-x86_64"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L48
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:48:30 | 48 | pub const BUILD_TIME :&str = r#"2024-02-09 13:45:13 +00:00"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 48 - pub const BUILD_TIME :&str = r#"2024-02-09 13:45:13 +00:00"#; 48 + pub const BUILD_TIME :&str = r"2024-02-09 13:45:13 +00:00"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L42
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:42:37 | 42 | pub const BUILD_TARGET_ARCH :&str = r#"x86_64"#; | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 42 - pub const BUILD_TARGET_ARCH :&str = r#"x86_64"#; 42 + pub const BUILD_TARGET_ARCH :&str = r"x86_64"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L36
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:36:32 | 36 | pub const BUILD_TARGET :&str = r#"x86_64-unknown-linux-gnu"#; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 36 - pub const BUILD_TARGET :&str = r#"x86_64-unknown-linux-gnu"#; 36 + pub const BUILD_TARGET :&str = r"x86_64-unknown-linux-gnu"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L13
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:13:26 | 13 | pub const BRANCH :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes note: the lint level is defined here --> src/main.rs:1:9 | 1 | #![deny(clippy::pedantic, clippy::nursery)] | ^^^^^^^^^^^^^^^^ = note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(clippy::pedantic)]` help: remove all the hashes around the string literal | 13 - pub const BRANCH :&str = r#""#; 13 + pub const BRANCH :&str = r""; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L29
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:29:38 | 29 | pub const BUILD_RUST_CHANNEL :&str = r#"debug"#; | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 29 - pub const BUILD_RUST_CHANNEL :&str = r#"debug"#; 29 + pub const BUILD_RUST_CHANNEL :&str = r"debug"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L22
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:22:28 | 22 | pub const BUILD_OS :&str = r#"linux-x86_64"#; | ^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 22 - pub const BUILD_OS :&str = r#"linux-x86_64"#; 22 + pub const BUILD_OS :&str = r"linux-x86_64"; |
unnecessary hashes around raw string literal: /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs#L13
error: unnecessary hashes around raw string literal --> /home/runner/work/aurora-cli-rs/aurora-cli-rs/target/debug/build/aurora-cli-rs-2a6762438399f513/out/shadow.rs:13:26 | 13 | pub const BRANCH :&str = r#""#; | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes note: the lint level is defined here --> src/main.rs:1:9 | 1 | #![deny(clippy::pedantic, clippy::nursery)] | ^^^^^^^^^^^^^^^^ = note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(clippy::pedantic)]` help: remove all the hashes around the string literal | 13 - pub const BRANCH :&str = r#""#; 13 + pub const BRANCH :&str = r""; |
Tests Silo CLI
The operation was canceled.
Tests Advanced CLI
This job failure may be caused by using an out of date self-hosted runner. You are currently using runner version 2.311.0. Please update to the latest version 2.312.0
Tests Advanced CLI
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests Advanced CLI
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Tests Advanced CLI: src/cli/mod.rs#L7
unused imports: `Command`, `aurora`, `near`, `process_tx_data`
Tests Advanced CLI
`aurora-cli-rs` (bin "aurora-cli") generated 1 warning
Tests Silo CLI
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests Silo CLI
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Tests Silo CLI: src/cli/mod.rs#L10
unused import: `Command`
Tests Silo CLI
`aurora-cli-rs` (bin "aurora-cli") generated 1 warning (run `cargo fix --bin "aurora-cli"` to apply 1 suggestion)