Skip to content

chore: bump version to v0.6.2 #77

chore: bump version to v0.6.2

chore: bump version to v0.6.2 #77

Triggered via push January 5, 2024 03:05
Status Success
Total duration 21s
Artifacts

rust-fmt.yml

on: push
Run rustfmt style commit
13s
Run rustfmt style commit
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
this function has too many arguments (27/7): fluereflow/src/types/fluereflow.rs#L63
warning: this function has too many arguments (27/7) --> fluereflow/src/types/fluereflow.rs:63:5 | 63 | / pub fn new( 64 | | source: IpAddr, 65 | | destination: IpAddr, 66 | | d_pkts: u32, ... | 90 | | tos: u8, 91 | | ) -> FluereRecord { | |_____________________^ | = 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
returning the result of a `let` binding from a block: fluere-config/src/init.rs#L75
warning: returning the result of a `let` binding from a block --> fluere-config/src/init.rs:75:5 | 74 | let path_config = path_base.join("fluere"); | ------------------------------------------- unnecessary `let` binding 75 | path_config | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return = note: `#[warn(clippy::let_and_return)]` on by default help: return the expression directly | 74 ~ 75 ~ path_base.join("fluere") |