Skip to content

Commit

Permalink
Allow multiple versions of bitflags
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat-Lafon committed Jun 30, 2023
1 parent 1433707 commit a2a9d4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bril-rs/brillvm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a2a9d4c

Please sign in to comment.