mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-01 21:37:38 +00:00

* chore: remove crate * chore: use rust 1.81 * chore: remove build flag * fix: macos build error * chore: upgrade super_clipboard * chore: fix pb lint warning * chore: fix clippy --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
31 lines
495 B
Rust
31 lines
495 B
Rust
pub use async_trait;
|
|
pub mod box_any;
|
|
|
|
#[cfg(feature = "compression")]
|
|
pub mod compression;
|
|
|
|
if_native! {
|
|
mod native;
|
|
pub mod file_util;
|
|
pub mod future {
|
|
pub use crate::native::future::*;
|
|
}
|
|
}
|
|
|
|
if_wasm! {
|
|
mod wasm;
|
|
pub mod future {
|
|
pub use crate::wasm::future::*;
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "encryption")]
|
|
pub mod encryption;
|
|
#[cfg(feature = "isolate_flutter")]
|
|
pub mod isolate_stream;
|
|
pub mod priority_task;
|
|
pub mod ref_map;
|
|
pub mod stream_util;
|
|
pub mod util;
|
|
pub mod validator_fn;
|