hara-native 0.1.14

HAL-free native host runtime and package launcher for Hara
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[path = "task/promise.rs"]
pub mod promise;

// Production reachability is project-owned source reached through the task
// facade until the native project model is split into its directory module.
#[cfg(all(
    feature = "bytecode-vm",
    not(any(target_arch = "wasm32", feature = "raw-wasm"))
))]
#[path = "project/production.rs"]
pub mod production;

pub use promise::{LocalPromiseProvider, Promise, PromiseProvider, PromiseRejection, PromiseState};