Skip to content

Commit

Permalink
feat(wasip3): add wasi:[email protected]
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Volosatovs <[email protected]>
  • Loading branch information
rvolosatovs committed Jan 28, 2025
1 parent e7d9641 commit e843a45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ members = [
"crates/test-programs",
"crates/wasi-cli",
"crates/wasi-clocks",
#"crates/wasi-filesystem",
"crates/wasi-preview1-component-adapter",
"crates/wasi-preview1-component-adapter/verify",
"crates/wasi-random",
Expand Down Expand Up @@ -237,6 +238,7 @@ wasmtime-wast = { path = "crates/wast", version = "=30.0.0" }
wasmtime-wasi = { path = "crates/wasi", version = "30.0.0", default-features = false }
wasmtime-wasi-clocks = { path = "crates/wasi-clocks", version = "30.0.0", default-features = false }
wasmtime-wasi-cli = { path = "crates/wasi-cli", version = "30.0.0", default-features = false }
#wasmtime-wasi-filesystem = { path = "crates/wasi-filesystem", version = "30.0.0", default-features = false }
wasmtime-wasi-random = { path = "crates/wasi-random", version = "30.0.0", default-features = false }
wasmtime-wasi-sockets = { path = "crates/wasi-sockets", version = "30.0.0", default-features = false }
wasmtime-wasi-io = { path = "crates/wasi-io", version = "30.0.0", default-features = false }
Expand Down
2 changes: 2 additions & 0 deletions crates/test-programs/artifacts/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ fn build_and_generate_tests() {
let kind = match target.as_str() {
s if s.starts_with("cli_0_3") => "cli_0_3",
s if s.starts_with("clocks_0_3") => "clocks_0_3",
s if s.starts_with("filesystem_0_3") => "filesystem_0_3",
s if s.starts_with("random_0_3") => "random_0_3",
s if s.starts_with("sockets_0_3") => "sockets_0_3",
s if s.starts_with("http_") => "http",
Expand Down Expand Up @@ -108,6 +109,7 @@ fn build_and_generate_tests() {
"reactor" => &reactor_adapter,
s if s.starts_with("cli_0_3") => &reactor_adapter,
s if s.starts_with("clocks_0_3") => &reactor_adapter,
s if s.starts_with("filesystem_0_3") => &reactor_adapter,
s if s.starts_with("random_0_3") => &reactor_adapter,
s if s.starts_with("sockets_0_3") => &reactor_adapter,
s if s.starts_with("async_") => &reactor_adapter,
Expand Down

0 comments on commit e843a45

Please sign in to comment.