+ async source

(reader and converter)
This commit is contained in:
2023-08-06 17:01:22 +03:00
parent f55b6f681c
commit ecfc34e821
6 changed files with 475 additions and 113 deletions
+7 -1
View File
@@ -1,7 +1,13 @@
#[cfg(all(feature = "convert", feature = "convert_async"))]
compile_error!(
"feature \"convert\" and feature \"convert_async\" cannot be enabled at the same time"
);
#[cfg(feature = "async")]
pub mod async_db;
#[cfg(feature = "sync")]
pub mod db;
pub mod questions;
#[cfg(feature = "source")]
#[cfg(any(feature = "source", feature = "source_async"))]
pub mod source;
pub mod util;