at main 11 lines 355 B view raw
1//! Worker implementation for off-main-thread CRDT operations. 2//! 3//! Currently WASM-specific using gloo-worker, but the core state machine 4//! could be abstracted to work with any async channel pair. 5 6mod reactor; 7 8pub use reactor::{WorkerInput, WorkerOutput}; 9 10#[cfg(all(target_family = "wasm", target_os = "unknown"))] 11pub use reactor::EditorReactor;