@@ -34,22 +34,29 @@ workspace = true
34
34
crate-type = [" cdylib" , " rlib" ]
35
35
36
36
[dependencies ]
37
+ # chrono must be compiled with wasmbind feature
38
+ chrono = { version = " 0.4" , features = [" wasmbind" ] }
39
+
37
40
# The `console_error_panic_hook` crate provides better debugging of panics by
38
41
# logging them with `console.error`. This is great for development, but requires
39
42
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
40
43
# code size when deploying.
41
44
console_error_panic_hook = { version = " 0.1.1" , optional = true }
42
45
datafusion = { workspace = true }
43
-
44
46
datafusion-common = { workspace = true , default-features = true }
45
47
datafusion-execution = { workspace = true }
46
48
datafusion-expr = { workspace = true }
47
49
datafusion-optimizer = { workspace = true , default-features = true }
50
+ datafusion-physical-expr = { workspace = true , default-features = true }
48
51
datafusion-physical-plan = { workspace = true }
49
52
datafusion-sql = { workspace = true }
50
53
51
54
# getrandom must be compiled with js feature
55
+ getrandom = { version = " 0.2.8" , features = [" js" ] }
56
+
57
+ parquet = { workspace = true }
52
58
wasm-bindgen = " 0.2.87"
59
+ wasm-bindgen-futures = " 0.4.40"
53
60
54
61
[dev-dependencies ]
55
62
tokio = { workspace = true }
0 commit comments