-
Notifications
You must be signed in to change notification settings - Fork 413
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (64 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
68 lines (64 loc) · 1.91 KB
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
[dependencies]
arrow = {workspace = true}
arrow-row = {workspace = true}
bincode = {workspace = true}
bytemuck = {version = "1", features = ["derive"]}
chrono = {workspace = true}
chrono-tz = {workspace = true}
comfy-table = {workspace = true}
common-arrow-ffi = {path = "../common/arrow-ffi", default-features = false, optional = true}
common-display = {path = "../common/display", default-features = false}
common-error = {path = "../common/error", default-features = false}
common-hashable-float-wrapper = {path = "../common/hashable-float-wrapper"}
common-image = {workspace = true}
common-io-config = {path = "../common/io-config", default-features = false}
common-ndarray = {workspace = true}
common-py-serde = {path = "../common/py-serde", default-features = false}
daft-hash = {workspace = true}
daft-minhash = {path = "../daft-minhash", default-features = false}
daft-schema = {path = "../daft-schema", default-features = false}
daft-sketch = {path = "../daft-sketch", default-features = false}
derive_more = {workspace = true}
fastrand = "2.1.0"
fnv = "1.0.7"
html-escape = {workspace = true}
hyperloglog = {path = "../hyperloglog"}
image = {workspace = true, features = [
"gif",
"jpeg",
"ico",
"png",
"tiff",
"webp",
"bmp",
"hdr"
]}
indexmap = {workspace = true, features = ["serde"]}
itertools = {workspace = true}
mur3 = "0.1.0"
num-traits = {workspace = true}
pyo3 = {workspace = true, optional = true}
rand = "0.9.1"
serde = {workspace = true}
sketches-ddsketch = {workspace = true}
xxhash-rust = {workspace = true}
[dev-dependencies]
rstest = {workspace = true}
[features]
python = [
"dep:common-arrow-ffi",
"common-display/python",
"common-error/python",
"common-image/python",
"common-io-config/python",
"common-ndarray/python",
"common-py-serde/python",
"daft-schema/python",
"dep:pyo3"
]
[lints]
workspace = true
[package]
edition = {workspace = true}
name = "daft-core"
version = {workspace = true}