File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
2
2
#![ expect( clippy:: allow_attributes_without_reason, reason = "crate not migrated" ) ]
3
3
4
+ //! # Wasmtime's WASIp2 Implementation
5
+ //!
6
+ //! This crate provides a Wasmtime host implementations of different versions of WASI.
7
+ //! WASI is implemented with the Rust crates [`tokio`] and [`cap-std`](cap_std) primarily, meaning that
8
+ //! operations are implemented in terms of their native platform equivalents by
9
+ //! default.
10
+ //!
11
+ //! For components and WASIp2, see [`p2`].
12
+ //! For WASIp1 and core modules, see the [`preview1`] module documentation.
13
+
4
14
mod clocks;
5
15
mod error;
6
16
mod filesystem;
Original file line number Diff line number Diff line change 7
7
//! operations are implemented in terms of their native platform equivalents by
8
8
//! default.
9
9
//!
10
- //! For components and WASIp2, continue reading below. For WASIp1 and core
11
- //! modules, see the [`preview1`](crate::preview1) module documentation.
12
- //!
13
10
//! # WASIp2 interfaces
14
11
//!
15
12
//! This module contains implementations of the following interfaces:
You can’t perform that action at this time.
0 commit comments