chore(plugins): Update to Wasmtime 48.0.1 (#3155)

This commit is contained in:
Demetrius Kanios
2026-08-30 00:34:01 -07:00
committed by GitHub
parent 3667975190
commit 07be171b75
6 changed files with 286 additions and 240 deletions

View File

@@ -37,11 +37,9 @@ pub const HTTP_OUTBOUND: &str = "http.outbound";
/// Allows the plugin to read files within its own data folder (`plugins/data/<name>`).
pub const FS_READ_DATA: &str = "fs.read.data";
/// Allows the plugin to write files within its own data folder (`plugins/data/<name>`).
/// Allows the plugin to write (and read) files within its own data folder (`plugins/data/<name>`).
///
/// Note that even without `FS_READ_DATA`, this will allow the plugin to
/// inspect (e.g. list) the contents of the directory. But it will block
/// reading any file's contents.
/// Note that this permission also implies `FS_READ_DATA`
pub const FS_WRITE_DATA: &str = "fs.write.data";
/// Allows the plugin to read all environment variables.