From a2a9d4ce97d2863e069911819a85f088e5f443e8 Mon Sep 17 00:00:00 2001 From: Patrick LaFontaine <32135464+Pat-Lafon@users.noreply.github.com> Date: Fri, 30 Jun 2023 10:32:30 -0700 Subject: [PATCH] Allow multiple versions of bitflags --- bril-rs/brillvm/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bril-rs/brillvm/src/lib.rs b/bril-rs/brillvm/src/lib.rs index 4419eb70b..255f2e2b9 100644 --- a/bril-rs/brillvm/src/lib.rs +++ b/bril-rs/brillvm/src/lib.rs @@ -2,6 +2,8 @@ #![allow(clippy::too_many_lines)] #![allow(clippy::needless_for_each)] #![doc = include_str!("../README.md")] +// When you run with --all-targets, you also get --target=all which includes --target=redox. This pulls in redox_sys via a chain of deps through inkwell-parking_lot which uses an older version of bitflags 1.3.2. Given backwards compatibility, it's going to be a very long time, if ever, that this gets updated(because of msrv changes). +#![allow(clippy::multiple_crate_versions)] #[doc(hidden)] pub mod cli;