Skip to content

Commit

Permalink
bug(dep): fix tokio dependeny on wasm featrue
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrusso8 committed Jun 12, 2024
1 parent 395e593 commit ba74ffa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.76"
tonic = { version ="0.11", default-features = false }
tonic-web-wasm-client = { version = "0.5" }

tokio = { version = "1.37", default-features = false, features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.37", default-features = false, features = ["macros"] }

arrow = { version = "51", features = ["prettyprint"] }
arrow-ipc = { version = "51" }
Expand Down
2 changes: 2 additions & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ polars-arrow = { workspace = true, optional = true }

[dev-dependencies]
futures = "0.3"
tokio = { workspace = true, features = ["rt-multi-thread"] }

[build-dependencies]
tonic-build = "0.11.0"
Expand All @@ -71,6 +72,7 @@ wasm = [
"tonic/codegen",
"tonic/prost",
"getrandom/js",
"tokio"
]

datafusion = [
Expand Down

0 comments on commit ba74ffa

Please sign in to comment.