We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8c7c5 commit 00035baCopy full SHA for 00035ba
src/common/mod.rs
@@ -1,19 +1,21 @@
1
#![allow(missing_docs)]
2
3
pub(crate) mod exec;
4
-#[cfg(feature = "client")]
+#[cfg(feature = "client-legacy")]
5
mod lazy;
6
+#[cfg(feature = "server")]
7
+// #[cfg(feature = "server-auto")]
8
pub(crate) mod rewind;
9
10
mod sync;
11
pub(crate) mod timer;
12
13
14
pub(crate) use exec::Exec;
15
16
17
pub(crate) use lazy::{lazy, Started as Lazy};
18
19
pub(crate) use sync::SyncWrapper;
20
21
pub(crate) mod future;
0 commit comments