|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +[package] |
| 19 | +name = "datafusion-wasmtest" |
| 20 | +description = "Test library to compile datafusion crates to wasm" |
| 21 | +version = { workspace = true } |
| 22 | +edition = { workspace = true } |
| 23 | +readme = { workspace = true } |
| 24 | +homepage = { workspace = true } |
| 25 | +repository = { workspace = true } |
| 26 | +license = { workspace = true } |
| 27 | +authors = { workspace = true } |
| 28 | +rust-version = "1.70" |
| 29 | + |
| 30 | +[lib] |
| 31 | +crate-type = ["cdylib", "rlib",] |
| 32 | + |
| 33 | +[dependencies] |
| 34 | + |
| 35 | +# The `console_error_panic_hook` crate provides better debugging of panics by |
| 36 | +# logging them with `console.error`. This is great for development, but requires |
| 37 | +# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for |
| 38 | +# code size when deploying. |
| 39 | +console_error_panic_hook = { version = "0.1.1", optional = true } |
| 40 | + |
| 41 | +datafusion-common = { path = "../common", version = "31.0.0", default-features = false } |
| 42 | +datafusion-expr = { path = "../expr" } |
| 43 | +datafusion-optimizer = { path = "../optimizer" } |
| 44 | +datafusion-physical-expr = { path = "../physical-expr" } |
| 45 | +datafusion-sql = { path = "../sql" } |
| 46 | + |
| 47 | +# getrandom must be compiled with js feature |
| 48 | +getrandom = { version = "0.2.8", features = ["js"] } |
| 49 | +parquet = { version = "47.0.0", default-features = false } |
| 50 | +wasm-bindgen = "0.2.87" |
0 commit comments