Skip to content

Commit 770ae0c

Browse files
committed
CI: Warn on unused crates
1 parent 2f3d0f6 commit 770ae0c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

datafusion/wasmtest/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,29 @@ workspace = true
3434
crate-type = ["cdylib", "rlib"]
3535

3636
[dependencies]
37+
# chrono must be compiled with wasmbind feature
38+
chrono = { version = "0.4", features = ["wasmbind"] }
39+
3740
# The `console_error_panic_hook` crate provides better debugging of panics by
3841
# logging them with `console.error`. This is great for development, but requires
3942
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
4043
# code size when deploying.
4144
console_error_panic_hook = { version = "0.1.1", optional = true }
4245
datafusion = { workspace = true }
43-
4446
datafusion-common = { workspace = true, default-features = true }
4547
datafusion-execution = { workspace = true }
4648
datafusion-expr = { workspace = true }
4749
datafusion-optimizer = { workspace = true, default-features = true }
50+
datafusion-physical-expr = { workspace = true, default-features = true }
4851
datafusion-physical-plan = { workspace = true }
4952
datafusion-sql = { workspace = true }
5053

5154
# getrandom must be compiled with js feature
55+
getrandom = { version = "0.2.8", features = ["js"] }
56+
57+
parquet = { workspace = true }
5258
wasm-bindgen = "0.2.87"
59+
wasm-bindgen-futures = "0.4.40"
5360

5461
[dev-dependencies]
5562
tokio = { workspace = true }

0 commit comments

Comments
 (0)