Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Jan 16, 2024
1 parent 8929788 commit fc12162
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/rust/rust-actor-full/Cargo.toml._
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit fc12162

Please sign in to comment.