forked from andygrove/datafusion-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1022 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "datafusion"
description = "DataFusion is a SQL query parser, planner, and distributed query processing framework for Rust inspired by Apache Calcite and Apache Spark"
version = "0.2.0"
authors = ["Andy Grove <[email protected]>"]
homepage = "https://datafusion.rs"
keywords = [ "distributed", "query", "data", "processing", "sql" ]
repository = "https://github.com/andygrove/datafusion-rs"
license = "Apache-2.0"
[lib]
name = "datafusion"
path = "src/lib.rs"
[[bin]]
name = "worker"
path = "src/bin/worker/main.rs"
[[bin]]
name = "console"
path = "src/bin/console/main.rs"
[dependencies]
csv = "1.0.0-beta.5"
futures = "0.1.18"
futures-timer = "0.1"
tokio-core = "0.1.2"
hyper = "0.11.2"
serde_derive = "1.0"
serde = "1.0"
serde_json = "1.0"
rprompt = "1.0"
etcd = "0.8.0"
clap = "2.29.4"
uuid = { version = "0.6.0-beta", features = ["v5"] }
liner = "0.4.3"
[dev-dependencies]
criterion = "0.2.0"
[[bench]]
name = "dataframe_bench"
harness = false
[[bench]]
name = "sql_bench"
harness = false