rust: Create a root file for modules

The new `lib.rs` file is created to refer to all modules written in Rust. This way, only one `rustc` call is needed to compile an arbitrary amount of modules. It also converges with the way crates are structured.
This commit is contained in:
Dorota Czaplejewicz
2019-07-31 09:37:09 +00:00
parent d5f8b0d83b
commit 8326bd7016
3 changed files with 8 additions and 6 deletions

3
src/lib.rs Normal file
View File

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