coreutils/.cargo/config

21 lines
631 B
Text
Raw Normal View History

[target.x86_64-unknown-redox]
linker = "x86_64-unknown-redox-gcc"
2022-01-30 20:25:09 +00:00
[target.'cfg(feature = "cargo-clippy")']
rustflags = [
"-Wclippy::use_self",
"-Wclippy::needless_pass_by_value",
"-Wclippy::semicolon_if_nothing_returned",
"-Wclippy::single_char_pattern",
"-Wclippy::explicit_iter_loop",
]
2022-04-23 19:32:35 +00:00
[build]
# See https://github.com/time-rs/time/issues/293#issuecomment-1005002386. The
# unsoundness here is not in the `time` library, but in the Rust stdlib, and as
# such it needs to be fixed there.
rustflags = ["--cfg", "unsound_local_offset"]
2022-04-23 19:32:35 +00:00
[target.'cfg(target_os = "linux")']
rustflags = ["--cfg", "unsound_local_offset"]