Skip to content

Commit

Permalink
Move anyhow to a workspace dependency (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffcharles authored Oct 3, 2023
1 parent c0f9c2e commit 37b577d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ members = [
]

resolver = "2"

[workspace.dependencies]
anyhow = "1.0"
4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ path = "src/main.rs"
[dependencies]
clap = { version = "3.2.23", features = ["derive"] }
wizer = "3.0.0"
anyhow = "1.0"
anyhow = { workspace = true }
wasi-common = "9.0.0"
wasmtime = "9.0.0"
wasmtime-wasi = "9.0.0"

[dev-dependencies]

[build-dependencies]
anyhow = "1.0"
anyhow = { workspace = true }
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
[dependencies]
ruvy-wasm-sys = { path = "../wasm-sys" }
once_cell = "1.17.1"
anyhow = "1.0"
anyhow = { workspace = true }
2 changes: 1 addition & 1 deletion crates/wasm-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[build-dependencies]
anyhow = "1.0.75"
anyhow = { workspace = true }
bindgen = "0.63.0"
cc = "1.0"
hyper = { version = "0.14.27", features = ["client", "http1"] }
Expand Down

0 comments on commit 37b577d

Please sign in to comment.