Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

App fixes #107

Merged
merged 6 commits into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions wasm-rpc-stubgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ walkdir = "2.5.0"
wit-bindgen-rust = "=0.26.0"
wit-encoder = "=0.221.2"
wit-parser = "=0.221.2"
shlex = "1.3.0"
blake3 = "1.5.5"


[dev-dependencies]
Expand Down
18 changes: 16 additions & 2 deletions wasm-rpc-stubgen/schema/golem-wasm-rpc.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,13 @@
"command": {
"type": "string",
"description": "External command to execute"
},
"mkdirs": {
"type": "array",
"description": "List of directories that should be created before running the command",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
Expand All @@ -241,14 +248,21 @@
"type": "string",
"description": "External command to execute"
},
"inputs": {
"mkdirs": {
"type": "array",
"description": "List of directories that should be created before running the command",
"items": {
"type": "string"
}
},
"sources": {
"type": "array",
"description": "Inputs (paths and globs) for the external command",
"items": {
"type": "string"
}
},
"outputs": {
"targets": {
"type": "array",
"description": "Output (paths and globs) for the external command",
"items": {
Expand Down
Loading
Loading