Skip to content

Commit 6f11396

Browse files
committed
refactor: set correct cfg on common::{Exec, Lazy, SyncWrapper}
1 parent ad8c7c5 commit 6f11396

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/common/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
#![allow(missing_docs)]
22

33
pub(crate) mod exec;
4-
#[cfg(feature = "client")]
4+
#[cfg(feature = "client-legacy")]
55
mod lazy;
66
pub(crate) mod rewind;
7-
#[cfg(feature = "client")]
7+
#[cfg(feature = "client-legacy")]
88
mod sync;
99
pub(crate) mod timer;
1010

11-
#[cfg(feature = "client")]
11+
#[cfg(feature = "client-legacy")]
1212
pub(crate) use exec::Exec;
1313

14-
#[cfg(feature = "client")]
14+
#[cfg(feature = "client-legacy")]
1515
pub(crate) use lazy::{lazy, Started as Lazy};
16-
#[cfg(feature = "client")]
16+
#[cfg(feature = "client-legacy")]
1717
pub(crate) use sync::SyncWrapper;
1818

1919
pub(crate) mod future;

0 commit comments

Comments
 (0)