Bump version to 0.14.1 #37
Annotations
9 warnings
Rustfmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, 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/
|
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
this function has too many arguments (9/7):
src/main.rs#L860
warning: this function has too many arguments (9/7)
--> src/main.rs:860:1
|
860 | / fn encode_session_record(
861 | | version: String,
862 | | from: String,
863 | | to: String,
... |
869 | | format: OutputFormat,
870 | | ) -> Result<()> {
| |_______________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
= note: `#[warn(clippy::too_many_arguments)]` on by default
|
this function has too many arguments (8/7):
src/usp_generator.rs#L938
warning: this function has too many arguments (8/7)
--> src/usp_generator.rs:938:1
|
938 | / pub fn usp_mqtt_connect_record<'a>(
939 | | version: &'a str,
940 | | to_id: &'a str,
941 | | from_id: &'a str,
... |
946 | | subscribed_topic: &'a str,
947 | | ) -> Record<'a> {
| |_______________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
= note: `#[warn(clippy::too_many_arguments)]` on by default
|
very complex type used. Consider factoring parts into `type` definitions:
src/usp_generator.rs#L753
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/usp_generator.rs:753:16
|
753 | let mut d: Vec<(&str, Result<Vec<(&str, Vec<(&str, &str)>)>, (u32, &str)>)> =
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
|
very complex type used. Consider factoring parts into `type` definitions:
src/usp_generator.rs#L671
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/usp_generator.rs:671:13
|
671 | result: Vec<(
| _____________^
672 | | &'a str,
673 | | Result<Vec<(&'a str, Vec<(&'a str, &'a str)>)>, (u32, &'a str)>,
674 | | )>,
| |______^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|