wasmtime-runtime 20.0.2

Runtime library support for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "threads")]
mod parking_spot;

#[cfg(feature = "threads")]
mod shared_memory;
#[cfg(feature = "threads")]
pub use shared_memory::SharedMemory;

#[cfg(not(feature = "threads"))]
mod shared_memory_disabled;
#[cfg(not(feature = "threads"))]
pub use shared_memory_disabled::SharedMemory;