bitflags: Use absolute imports

With relative import of the bitflags crate, the macros would try to fetch nonexistent paths, preventing tests form compiling.
This commit is contained in:
Dorota Czaplejewicz
2019-07-31 11:13:24 +00:00
parent fa31f8eee1
commit 18b8972029
2 changed files with 31 additions and 34 deletions

View File

@ -1,3 +1,4 @@
#[macro_use]
mod bitflags;
mod imservice;