This crate provides the HTTP interface for the Omnia runtime.
Implements the `wasi:http` WIT interface (WASI Preview 2).
Uses `hyper` and `axum` to handle outgoing requests and incoming server connections.
Add this crate to your `Cargo.toml` and use it in your runtime configuration:
```rust,ignore
use omnia::runtime;
use omnia_wasi_http::WasiHttpCtx;
omnia::runtime!({
});
```
MIT OR Apache-2.0