Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove clippy directive Running "cargo doc" gives this warning warning: unknown lint: `clippy::needless_pass_by_ref_mut` --> src/service/reload.rs:104:9 | 104 | #[allow(clippy::needless_pass_by_ref_mut)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::needless_pass_by_value` | = note: `#[warn(unknown_lints)]` on by default warning: `cargo-leptos` (lib) generated 1 warning The name "needless_pass_by_ref_mut" was not wrong at the time of writing, it is just stale https://rust-lang.github.io/rust-clippy/master/index.html#/clippy::needless_pass_by_ref_mut Additionally this "allow" is no longer needed to get cargo clippy to "pass" as of cargo clippy --version clippy 0.1.71 (8ede3aa 2023-07-12) * ran cargo update I have trimmed down the list by using the modern versions of a couple of packges. it a long list ... and can be completely cleared because of this Cargo.toml # not using notify 5.0 because it uses Crossbeam which has an issue with tokio notify = "4.0"
- Loading branch information