-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48ad975
commit 0e412eb
Showing
2 changed files
with
178 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,97 +16,104 @@ | |
# under the License. | ||
|
||
[package] | ||
name = "datafusion" | ||
authors = ["Apache Arrow <[email protected]>"] | ||
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model" | ||
version = "6.0.0" | ||
edition = "2021" | ||
homepage = "https://github.com/apache/arrow-datafusion" | ||
repository = "https://github.com/apache/arrow-datafusion" | ||
readme = "../README.md" | ||
authors = ["Apache Arrow <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = [ "arrow", "query", "sql" ] | ||
include = [ | ||
"benches/*.rs", | ||
"src/**/*.rs", | ||
"Cargo.toml", | ||
"benches/*.rs", | ||
"src/**/*.rs", | ||
"Cargo.toml", | ||
] | ||
edition = "2021" | ||
keywords = ["arrow", "query", "sql"] | ||
license = "Apache-2.0" | ||
name = "datafusion" | ||
readme = "../README.md" | ||
repository = "https://github.com/apache/arrow-datafusion" | ||
rust-version = "1.58" | ||
version = "6.0.0" | ||
|
||
[lib] | ||
name = "datafusion" | ||
path = "src/lib.rs" | ||
|
||
[features] | ||
default = ["crypto_expressions", "regex_expressions", "unicode_expressions"] | ||
simd = ["arrow/simd"] | ||
crypto_expressions = ["md-5", "sha2", "blake2", "blake3"] | ||
default = ["crypto_expressions", "regex_expressions", "unicode_expressions"] | ||
pyarrow = ["pyo3", "arrow/pyarrow"] | ||
regex_expressions = ["regex"] | ||
simd = ["arrow/simd"] | ||
unicode_expressions = ["unicode-segmentation"] | ||
pyarrow = ["pyo3", "arrow/pyarrow"] | ||
# Used for testing ONLY: causes all values to hash to the same value (test for collisions) | ||
force_hash_collisions = [] | ||
# Used to enable the avro format | ||
avro = ["avro-rs", "num-traits"] | ||
|
||
[dependencies] | ||
ahash = { version = "0.7", default-features = false } | ||
hashbrown = { version = "0.12", features = ["raw"] } | ||
arrow = { version = "8.0.0", features = ["prettyprint"] } | ||
parquet = { version = "8.0.0", features = ["arrow"] } | ||
sqlparser = "0.13" | ||
paste = "^1.0" | ||
num_cpus = "1.13.0" | ||
chrono = { version = "0.4", default-features = false } | ||
ahash = {version = "0.7", default-features = false} | ||
arrow = {version = "8.0.0", features = ["prettyprint"]} | ||
async-trait = "0.1.41" | ||
avro-rs = {version = "0.13", features = ["snappy"], optional = true} | ||
avro-rs = {version = "0.13", features = ["snappy"], optional = true} | ||
blake2 = {version = "^0.9.2", optional = true} | ||
blake2 = {version = "^0.10.2", optional = true} | ||
blake3 = {version = "1.0", optional = true} | ||
blake3 = {version = "1.0", optional = true} | ||
chrono = {version = "0.4", default-features = false} | ||
chrono = {version = "0.4", default-features = false} | ||
futures = "0.3" | ||
pin-project-lite= "^0.2.7" | ||
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs"] } | ||
tokio-stream = "0.1" | ||
hashbrown = {version = "0.12", features = ["raw"]} | ||
hashbrown = {version = "0.11", features = ["raw"]} | ||
lazy_static = {version = "^1.4.0"} | ||
log = "^0.4" | ||
md-5 = { version = "^0.10.0", optional = true } | ||
sha2 = { version = "^0.10.1", optional = true } | ||
blake2 = { version = "^0.10.2", optional = true } | ||
blake3 = { version = "1.0", optional = true } | ||
md-5 = {version = "^0.10.0", optional = true} | ||
num = "0.4" | ||
num-traits = {version = "0.2", optional = true} | ||
num_cpus = "1.13.0" | ||
ordered-float = "2.0" | ||
unicode-segmentation = { version = "^1.7.1", optional = true } | ||
regex = { version = "^1.4.3", optional = true } | ||
lazy_static = { version = "^1.4.0" } | ||
smallvec = { version = "1.6", features = ["union"] } | ||
parquet = {version = "8.0.0", features = ["arrow"]} | ||
parquet = {version = "7.0.0", features = ["arrow"]} | ||
paste = "^1.0" | ||
paste = "^1.0" | ||
pin-project-lite = "^0.2.7" | ||
pyo3 = {version = "0.14", optional = true} | ||
pyo3 = {version = "0.15", optional = true} | ||
rand = "0.8" | ||
avro-rs = { version = "0.13", features = ["snappy"], optional = true } | ||
num-traits = { version = "0.2", optional = true } | ||
pyo3 = { version = "0.15", optional = true } | ||
sha2 = {version = "^0.10.1", optional = true} | ||
sqlparser = "0.13" | ||
tempfile = "3" | ||
tokio = {version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs"]} | ||
tokio-stream = "0.1" | ||
unicode-segmentation = {version = "^1.7.1", optional = true} | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
doc-comment = "0.3" | ||
|
||
[[bench]] | ||
name = "aggregate_query_sql" | ||
harness = false | ||
name = "aggregate_query_sql" | ||
|
||
[[bench]] | ||
name = "sort_limit_query_sql" | ||
harness = false | ||
name = "sort_limit_query_sql" | ||
|
||
[[bench]] | ||
name = "math_query_sql" | ||
harness = false | ||
name = "math_query_sql" | ||
|
||
[[bench]] | ||
name = "filter_query_sql" | ||
harness = false | ||
name = "filter_query_sql" | ||
|
||
[[bench]] | ||
name = "window_query_sql" | ||
harness = false | ||
name = "window_query_sql" | ||
|
||
[[bench]] | ||
name = "scalar" | ||
harness = false | ||
name = "scalar" | ||
|
||
[[bench]] | ||
name = "physical_plan" | ||
harness = false | ||
name = "physical_plan" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters