forked from Eventual-Inc/Daft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
160 lines (140 loc) · 4.22 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
[dependencies]
common-daft-config = {path = "src/common/daft-config", default-features = false}
common-system-info = {path = "src/common/system-info", default-features = false}
daft-compression = {path = "src/daft-compression", default-features = false}
daft-core = {path = "src/daft-core", default-features = false}
daft-csv = {path = "src/daft-csv", default-features = false}
daft-dsl = {path = "src/daft-dsl", default-features = false}
daft-io = {path = "src/daft-io", default-features = false}
daft-json = {path = "src/daft-json", default-features = false}
daft-micropartition = {path = "src/daft-micropartition", default-features = false}
daft-parquet = {path = "src/daft-parquet", default-features = false}
daft-plan = {path = "src/daft-plan", default-features = false}
daft-scan = {path = "src/daft-scan", default-features = false}
daft-stats = {path = "src/daft-stats", 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-plan/python",
"daft-parquet/python",
"daft-csv/python",
"daft-json/python",
"daft-micropartition/python",
"daft-scan/python",
"daft-stats/python",
"common-daft-config/python",
"common-system-info/python"
]
[lib]
crate-type = ["cdylib"]
name = "daft"
[package]
edition = "2021"
name = "daft"
publish = false
version = "0.2.0-dev0"
[patch.crates-io]
arrow2 = {git = "https://github.com/Eventual-Inc/arrow2", rev = "c0764b00cc05126c80c7ce17ebd7a95d87f815c1"}
parquet2 = {git = "https://github.com/Eventual-Inc/parquet2", rev = "d4c24086c4cc824fbabef093ab2fda95d3aacb78"}
[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"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
libc = {version = "^0.2.150", default-features = false}
tikv-jemallocator = {version = "0.5.4", features = ["disable_initial_exec_tls"]}
[workspace]
members = [
"src/common/error",
"src/common/io-config",
"src/common/treenode",
"src/common/daft-config",
"src/common/system-info",
"src/daft-core",
"src/daft-io",
"src/daft-parquet",
"src/daft-csv",
"src/daft-json",
"src/daft-dsl",
"src/daft-table",
"src/daft-plan",
"src/daft-micropartition",
"src/daft-scan",
"src/daft-sketch"
]
[workspace.dependencies]
async-compat = "0.2.3"
async-compression = {version = "0.4.7", features = ["tokio", "all-algorithms"]}
async-stream = "0.3.5"
bytes = "1.6.0"
chrono = "0.4.26"
chrono-tz = "0.8.4"
comfy-table = "7.1.0"
futures = "0.3.30"
html-escape = "0.2.13"
indexmap = "2.1.0"
itertools = "0.11"
jaq-core = "1.2.0"
jaq-interpret = "1.2.0"
jaq-parse = "1.0.0"
jaq-std = "1.2.0"
num-derive = "0.3.3"
num-traits = "0.2"
rand = "^0.8"
rayon = "1.7.0"
regex = "1.10.4"
rstest = "0.18.2"
serde_json = "1.0.116"
snafu = {version = "0.7.4", features = ["futures"]}
tokio = {version = "1.37.0", features = ["net", "time", "bytes", "process", "signal", "macros", "rt", "rt-multi-thread"]}
tokio-stream = {version = "0.1.14", features = ["fs"]}
tokio-util = "0.7.8"
url = "2.4.0"
[workspace.dependencies.arrow2]
# branch = "daft-fork"
git = "https://github.com/Eventual-Inc/arrow2"
package = "arrow2"
rev = "c0764b00cc05126c80c7ce17ebd7a95d87f815c1"
[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.parquet2]
# branch = "sammy/owned-page-stream"
features = ['async']
git = "https://github.com/Eventual-Inc/parquet2"
package = "parquet2"
rev = "d4c24086c4cc824fbabef093ab2fda95d3aacb78"
[workspace.dependencies.pyo3]
features = ["extension-module", "multiple-pymethods", "abi3-py37"]
version = "0.19.2"
[workspace.dependencies.pyo3-log]
version = "0.8.3"
[workspace.dependencies.serde]
features = ["derive", "rc"]
version = "1.0.190"
[workspace.package]
edition = "2021"
version = "0.2.0-dev0"