Skip to content

Commit

Permalink
Fix of forgotten export
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-kolarik committed Sep 2, 2023
1 parent f7f8ab4 commit a89042b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#[cfg(any(feature = "spawn", feature = "spawn-local"))]
mod futures_signals_spawn;
#[cfg(any(feature = "spawn", feature = "spawn-local"))]
pub use futures_signals_spawn::{SignalSpawn, SignalVecSpawn};
pub use futures_signals_spawn::*;

mod futures_signals_ext;
pub use futures_signals_ext::{MutableExt, MutableVecExt, SignalExtMapBool, SignalExtMapOption};
pub use futures_signals_ext::*;

#[cfg(feature = "option")]
mod option;
Expand Down

0 comments on commit a89042b

Please sign in to comment.