Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-event/src/lib.rs')
| -rw-r--r-- | helix-event/src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/helix-event/src/lib.rs b/helix-event/src/lib.rs index 8aa6b52f..894de5e8 100644 --- a/helix-event/src/lib.rs +++ b/helix-event/src/lib.rs @@ -32,11 +32,9 @@ //! to helix-view in the future if we manage to detach the compositor from its rendering backend. use anyhow::Result; -pub use cancel::{cancelable_future, TaskController, TaskHandle}; +pub use cancel::{cancelable_future, cancelation, CancelRx, CancelTx}; pub use debounce::{send_blocking, AsyncHook}; -pub use redraw::{ - lock_frame, redraw_requested, request_redraw, start_frame, RenderLockGuard, RequestRedrawOnDrop, -}; +pub use redraw::{lock_frame, redraw_requested, request_redraw, start_frame, RenderLockGuard}; pub use registry::Event; mod cancel; |