Skip to content

Commit

Permalink
fix(common): Fix tokio dep enablement
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Thomas <taylor@cosmonic.com>
  • Loading branch information
thomastaylor312 committed Sep 27, 2024
1 parent 0c0085c commit 2aa08cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/wasm-pkg-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "../../README.md"

[features]
metadata-client = ["dep:reqwest"]
tokio = ["dep:tokio"]
tokio = ["tokio/io-util"]

[dependencies]
anyhow = { workspace = true }
Expand All @@ -29,7 +29,7 @@ semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
tokio = { workspace = true, features = ["io-util", "fs"], optional = true }
tokio = { workspace = true, features = ["fs"] }
toml = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
Expand Down

0 comments on commit 2aa08cd

Please sign in to comment.