native/Cargo.toml (54 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. [workspace] default-members = ["core", "spark-expr", "proto"] members = ["core", "spark-expr", "proto", "hdfs"] resolver = "2" [workspace.package] version = "0.9.0" homepage = "https://datafusion.apache.org/comet" repository = "https://github.com/apache/datafusion-comet" authors = ["Apache DataFusion <dev@datafusion.apache.org>"] description = "Apache DataFusion Comet: High performance accelerator for Apache Spark" readme = "README.md" license = "Apache-2.0" edition = "2021" # Comet uses the same minimum Rust version as DataFusion rust-version = "1.85" [workspace.dependencies] arrow = { version = "55.0.0", features = ["prettyprint", "ffi", "chrono-tz"] } async-trait = { version = "0.1" } bytes = { version = "1.10.0" } parquet = { version = "55.0.0", default-features = false, features = ["experimental"] } datafusion = { version = "47.0.0", default-features = false, features = ["unicode_expressions", "crypto_expressions", "nested_expressions", "parquet"] } datafusion-comet-spark-expr = { path = "spark-expr" } datafusion-comet-proto = { path = "proto" } chrono = { version = "0.4", default-features = false, features = ["clock"] } chrono-tz = { version = "0.10" } futures = "0.3.28" num = "0.4" rand = "0.9" regex = "1.9.6" thiserror = "2" object_store = { version = "0.12.0", features = ["gcp", "azure", "aws", "http"] } url = "2.2" [profile.release] debug = true overflow-checks = false lto = "thin" codegen-units = 1 strip = "debuginfo"