|
| 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-ffi" |
| 20 | +description = "Foreign Function Interface implementation for DataFusion" |
| 21 | +readme = "README.md" |
| 22 | +version = { workspace = true } |
| 23 | +edition = { workspace = true } |
| 24 | +homepage = { workspace = true } |
| 25 | +repository = { workspace = true } |
| 26 | +license = { workspace = true } |
| 27 | +authors = { workspace = true } |
| 28 | +rust-version = { workspace = true } |
| 29 | + |
| 30 | +[lints] |
| 31 | +workspace = true |
| 32 | + |
| 33 | +[lib] |
| 34 | +name = "datafusion_ffi" |
| 35 | +path = "src/lib.rs" |
| 36 | + |
| 37 | +[dependencies] |
| 38 | +abi_stable = "0.11.3" |
| 39 | +arrow = { workspace = true, features = ["ffi"] } |
| 40 | +async-ffi = { version = "0.5.0", features = ["abi_stable"] } |
| 41 | +async-trait = { workspace = true } |
| 42 | +datafusion = { workspace = true, default-features = false } |
| 43 | +datafusion-proto = { workspace = true } |
| 44 | +futures = { workspace = true } |
| 45 | +log = { workspace = true } |
| 46 | +prost = { workspace = true } |
| 47 | + |
| 48 | +[dev-dependencies] |
| 49 | +doc-comment = { workspace = true } |
| 50 | +tokio = { workspace = true } |
0 commit comments