wasmtime-wasi 48.0.2

WASI implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Functions that perform path lookup manually, one component
//! at a time, with manual symlink resolution.

mod canonical_path;
mod cow_component;
mod open;
mod read_link_one;

use canonical_path::CanonicalPath;
use cow_component::CowComponent;
use read_link_one::read_link_one;

pub(crate) use open::{open, stat};