From 8faa51c81f4740ee0afbc04251f6ce6864712136 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sat, 23 Sep 2023 10:15:31 -0400 Subject: [PATCH] tomlfmt --- datafusion/wasmtest/Cargo.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/datafusion/wasmtest/Cargo.toml b/datafusion/wasmtest/Cargo.toml index 2e3e392192aa..0bdb461eae73 100644 --- a/datafusion/wasmtest/Cargo.toml +++ b/datafusion/wasmtest/Cargo.toml @@ -28,10 +28,9 @@ authors = { workspace = true } rust-version = "1.70" [lib] -crate-type = [ "cdylib", "rlib",] +crate-type = [ "cdylib", "rlib", ] [dependencies] -wasm-bindgen = "0.2.87" # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires @@ -39,11 +38,13 @@ wasm-bindgen = "0.2.87" # code size when deploying. console_error_panic_hook = { version = "0.1.1", optional = true } -# getrandom must be compiled with js feature -getrandom = { version = "0.2.8", features = ["js"]} - -datafusion-common = { path = "../common", version = "31.0.0" , default-features = false } +datafusion-common = { path = "../common", version = "31.0.0", default-features = false } datafusion-expr = { path = "../expr" } datafusion-optimizer = { path = "../optimizer" } datafusion-physical-expr = { path = "../physical-expr" } datafusion-sql = { path = "../sql" } + +# getrandom must be compiled with js feature +getrandom = { version = "0.2.8", features = ["js"] } +parquet = { version = "47.0.0", default-features = false } +wasm-bindgen = "0.2.87"