1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

seq: allow "fuzzing" as cfg condition name

in Cargo.toml
This commit is contained in:
Daniel Hofstetter 2024-07-23 15:58:57 +02:00
parent 79d7158aac
commit ef68d9778f

View file

@ -1,4 +1,4 @@
# spell-checker:ignore bigdecimal
# spell-checker:ignore bigdecimal cfgs
[package]
name = "uu_seq"
version = "0.0.27"
@ -27,3 +27,8 @@ uucore = { workspace = true, features = ["format", "quoting-style"] }
[[bin]]
name = "seq"
path = "src/main.rs"
# Allow "fuzzing" as a "cfg" condition name
# https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }