diff --git a/examples/rust/rust-actor-full/Cargo.toml._ b/examples/rust/rust-actor-full/Cargo.toml._ index c6c4308..27cf258 100644 --- a/examples/rust/rust-actor-full/Cargo.toml._ +++ b/examples/rust/rust-actor-full/Cargo.toml._ @@ -16,7 +16,7 @@ cargo-component-bindings = { version = "0.5.0" } fs = "0.0.5" rand = "0.8.5" -reqwest = { git = "https://github.com/zivergetech/reqwest", branch = "update-aug-2023", features = ["json"] } +reqwest = { git = "https://github.com/zivergetech/reqwest", branch = "update-jan-2024", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" time = { version = "0.3.21", features = ["formatting"] } diff --git a/src/lib.rs b/src/lib.rs index 6cbf73a..6b0266b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -228,13 +228,14 @@ fn parse_example( wit_deps.push(Path::new("golem").to_path_buf()); } if metadata.requires_wasi.unwrap_or(false) { + wit_deps.push(Path::new("blobstore").to_path_buf()); wit_deps.push(Path::new("cli").to_path_buf()); wit_deps.push(Path::new("clocks").to_path_buf()); wit_deps.push(Path::new("filesystem").to_path_buf()); wit_deps.push(Path::new("http").to_path_buf()); wit_deps.push(Path::new("io").to_path_buf()); + wit_deps.push(Path::new("keyvalue").to_path_buf()); wit_deps.push(Path::new("logging").to_path_buf()); - wit_deps.push(Path::new("poll").to_path_buf()); wit_deps.push(Path::new("random").to_path_buf()); wit_deps.push(Path::new("sockets").to_path_buf()); }