crb_runtime/lib.rs
pub mod context;
pub mod error;
pub mod interruptor;
pub mod runtime;
pub mod task;
pub use context::{Context, ManagedContext};
pub use error::Failures;
pub use interruptor::{Controller, Interruptor, RegistrationTaken};
pub use runtime::{InteractiveRuntime, Runtime};
pub use task::{InteractiveTask, JobHandle, Task, TaskHandle};