ci: configure trusted publishing (#27) #63
Annotations
4 warnings
|
variables can be used directly in the `format!` string:
src/unstable.rs#L118
warning: variables can be used directly in the `format!` string
--> src/unstable.rs:118:23
|
118 | let doc = format!("The tracking issue is: `{}`.", issue);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
118 - let doc = format!("The tracking issue is: `{}`.", issue);
118 + let doc = format!("The tracking issue is: `{issue}`.");
|
|
|
variables can be used directly in the `format!` string:
src/stable.rs#L71
warning: variables can be used directly in the `format!` string
--> src/stable.rs:71:23
|
71 | let doc = format!("The tracking issue is: `{}`.", issue);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
71 - let doc = format!("The tracking issue is: `{}`.", issue);
71 + let doc = format!("The tracking issue is: `{issue}`.");
|
|
|
variables can be used directly in the `format!` string:
src/unstable.rs#L118
warning: variables can be used directly in the `format!` string
--> src/unstable.rs:118:23
|
118 | let doc = format!("The tracking issue is: `{}`.", issue);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
118 - let doc = format!("The tracking issue is: `{}`.", issue);
118 + let doc = format!("The tracking issue is: `{issue}`.");
|
|
|
variables can be used directly in the `format!` string:
src/stable.rs#L71
warning: variables can be used directly in the `format!` string
--> src/stable.rs:71:23
|
71 | let doc = format!("The tracking issue is: `{}`.", issue);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
71 - let doc = format!("The tracking issue is: `{}`.", issue);
71 + let doc = format!("The tracking issue is: `{issue}`.");
|
|