coil-wasm 0.1.1

WASM extension runtime and host APIs for the Coil framework.
Documentation
#[path = "auth.rs"]
mod auth;
#[path = "cache.rs"]
mod cache;
#[path = "data.rs"]
mod data;
#[path = "journal.rs"]
mod journal;
#[path = "render.rs"]
mod render;
#[path = "storage.rs"]
mod storage;
#[path = "synthetic.rs"]
mod synthetic;
#[path = "types.rs"]
mod types;

pub use auth::{AuthServiceDetails, AuthServiceExecution};
pub use cache::CacheIntentExecution;
pub use data::DataServiceExecution;
pub use journal::{DeniedHostServiceExecutor, HostServiceExecutor, HostServiceJournal};
pub use render::RenderServiceExecution;
pub use storage::StorageServiceExecution;
pub use synthetic::SyntheticHostServiceExecutor;
pub use types::{
    HostServiceExecution, HostServiceResult, JobExecution, MetadataExecution, NetworkExecution,
    SecretExecution,
};