Use bitflags! consistently. (#680)

This removes an `extern crate` and a `use` so that we always
call it via `bitflags::bitflags!` everywhere.
This commit is contained in:
Bruce Mitchener
2024-07-12 22:00:24 +07:00
committed by GitHub
parent 01dd200152
commit 23c0c05a5b
3 changed files with 3 additions and 8 deletions

View File

@@ -3,9 +3,6 @@
extern crate nalgebra as na;
#[macro_use]
extern crate bitflags;
#[cfg(feature = "log")]
#[macro_use]
extern crate log;