omnia-wasi-sql 0.28.0

WASI SQL database interface for the Omnia runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

//! # WASI SQL Service
//!
//! This module implements a runtime service for `wasi:sql`
//! (<https://github.com/aspect-build/wasi-sql>).

#![forbid(unsafe_code)]

#[cfg(target_arch = "wasm32")]
mod guest;
#[cfg(target_arch = "wasm32")]
pub use guest::*;

#[cfg(not(target_arch = "wasm32"))]
mod host;
#[cfg(not(target_arch = "wasm32"))]
pub use host::*;