forked from Eventual-Inc/Daft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
92 lines (75 loc) · 2.02 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[dependencies]
daft-core = {path = "src/daft-core", default-features = false}
daft-dsl = {path = "src/daft-dsl", default-features = false}
daft-io = {path = "src/daft-io", default-features = false}
daft-parquet = {path = "src/daft-parquet", default-features = false}
daft-table = {path = "src/daft-table", default-features = false}
pyo3 = {workspace = true, optional = true}
pyo3-log = {workspace = true, optional = true}
[features]
default = ["python"]
python = ["dep:pyo3", "dep:pyo3-log", "daft-core/python", "daft-table/python", "daft-dsl/python", "daft-io/python", "daft-parquet/python"]
[lib]
crate-type = ["cdylib"]
name = "daft"
[package]
edition = "2021"
name = "daft"
publish = false
version = "0.1.6"
[profile.dev]
overflow-checks = false
[profile.dev-bench]
codegen-units = 16
debug = 1 # include symbols
inherits = "release"
lto = 'thin'
strip = "none" # dont strip
[profile.release-lto]
codegen-units = 1
inherits = "release"
lto = 'fat'
[profile.rust-analyzer]
inherits = "dev"
[workspace]
members = [
"src/common/error",
"src/daft-core",
"src/daft-io",
"src/daft-parquet",
"src/daft-dsl",
"src/daft-table"
]
[workspace.dependencies]
futures = "0.3.28"
html-escape = "0.2.13"
num-derive = "0.3.3"
num-traits = "0.2"
prettytable-rs = "0.10"
rand = "^0.8"
serde_json = "1.0.100"
snafu = "0.7.4"
tokio = {version = "1.29.1", features = ["net", "time", "bytes", "process", "signal", "macros", "rt", "rt-multi-thread"]}
[workspace.dependencies.arrow2]
branch = "clark/expand-casting-support"
git = "https://github.com/Eventual-Inc/arrow2"
package = "arrow2"
version = "0.17.1"
[workspace.dependencies.bincode]
version = "1.3.3"
[workspace.dependencies.lazy_static]
version = "1.4.0"
[workspace.dependencies.log]
features = ["std"]
version = "0.4.19"
[workspace.dependencies.pyo3]
features = ["extension-module", "abi3-py37"]
version = "0.19.1"
[workspace.dependencies.pyo3-log]
version = "0.8.2"
[workspace.dependencies.serde]
features = ["derive", "rc"]
version = "1.0.164"
[workspace.package]
edition = "2021"
version = "0.1.0"