From c810a5e05107bbb8fb757e9df991cd41a7675e86 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 23 May 2022 15:22:08 +0200 Subject: [PATCH] be consistent in the rustflag declaration --- .cargo/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index 26008597f..35da7a485 100644 --- a/.cargo/config +++ b/.cargo/config @@ -14,7 +14,7 @@ rustflags = [ # 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" +rustflags = ["--cfg", "unsound_local_offset"] [target.'cfg(target_os = "linux")'] rustflags = ["--cfg", "unsound_local_offset"]