Only include parallel functions when enabled

This commit is contained in:
Tobie Morgan Hitchcock 2022-04-01 23:22:35 +01:00
parent f3ade9b9d8
commit 61c85e1c0f

View file

@ -1,9 +1,11 @@
pub use self::document::*;
#[cfg(feature = "parallel")]
mod compute;
mod admit;
mod allow;
mod check;
mod compute;
mod create;
mod delete;
mod document;