wasmtime-wasi-http-plus 0.0.2

An enhanced implementation of wasmtime-wasi-http
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(all(any(feature = "tls-self-contained", feature = "tls-platform"), not(feature = "_blanket")))]
mod tls;

#[cfg(any(not(any(feature = "tls-self-contained", feature = "tls-platform")), feature = "_blanket"))]
mod no_tls;

#[cfg(all(any(feature = "tls-self-contained", feature = "tls-platform"), not(feature = "_blanket")))]
#[allow(unused_imports)]
pub use tls::*;

#[cfg(any(not(any(feature = "tls-self-contained", feature = "tls-platform")), feature = "_blanket"))]
#[allow(unused_imports)]
pub use no_tls::*;