hara_native/task.rs
1#[path = "task/promise.rs"]
2pub mod promise;
3
4// Production reachability is project-owned source reached through the task
5// facade until the native project model is split into its directory module.
6#[cfg(all(
7 feature = "bytecode-vm",
8 not(any(target_arch = "wasm32", feature = "raw-wasm"))
9))]
10#[path = "project/production.rs"]
11pub mod production;
12
13pub use promise::{LocalPromiseProvider, Promise, PromiseProvider, PromiseRejection, PromiseState};