1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

Merge pull request #8277 from cakebaker/cargo_toml_remove_lint

Cargo.toml: remove `match_on_vec_items` lint
This commit is contained in:
Sylvestre Ledru 2025-06-27 15:45:35 +02:00 committed by GitHub
commit c23ebe2a98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -9,4 +9,4 @@ LIBSTDBUF_DIR = "/usr/lib"
# libstdbuf must be a shared library, so musl libc can't be linked statically # libstdbuf must be a shared library, so musl libc can't be linked statically
# https://github.com/rust-lang/rust/issues/82193 # https://github.com/rust-lang/rust/issues/82193
[build] [build]
rustflags = [ "-C", "target-feature=-crt-static" ] rustflags = ["-C", "target-feature=-crt-static"]

View file

@ -667,7 +667,6 @@ return_self_not_must_use = "allow" # 8
needless_pass_by_value = "allow" # 8 needless_pass_by_value = "allow" # 8
# manual_let_else = "allow" # 8 # manual_let_else = "allow" # 8
# needless_raw_string_hashes = "allow" # 7 # needless_raw_string_hashes = "allow" # 7
match_on_vec_items = "allow" # 6
inline_always = "allow" # 6 inline_always = "allow" # 6
# format_push_string = "allow" # 6 # format_push_string = "allow" # 6
fn_params_excessive_bools = "allow" # 6 fn_params_excessive_bools = "allow" # 6