@@ -34,22 +34,29 @@ workspace = true
3434crate-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.
4144console_error_panic_hook = { version = " 0.1.1" , optional = true }
4245datafusion = { workspace = true }
43-
4446datafusion-common = { workspace = true , default-features = true }
4547datafusion-execution = { workspace = true }
4648datafusion-expr = { workspace = true }
4749datafusion-optimizer = { workspace = true , default-features = true }
50+ datafusion-physical-expr = { workspace = true , default-features = true }
4851datafusion-physical-plan = { workspace = true }
4952datafusion-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 }
5258wasm-bindgen = " 0.2.87"
59+ wasm-bindgen-futures = " 0.4.40"
5360
5461[dev-dependencies ]
5562tokio = { workspace = true }
0 commit comments