-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (53 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
58 lines (53 loc) · 1.71 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
[package]
name = "vortex-python"
authors = { workspace = true }
categories = { workspace = true }
description = "Python bindings for Vortex, an Apache Arrow-compatible toolkit for working with compressed array data."
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
publish = false
readme = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
build = "build.rs"
[lints]
workspace = true
[lib]
crate-type = ["rlib", "cdylib"]
[features]
default = ["extension-module", "tui"]
# Enable this feature when building the standalone Python extension.
# Disable it when using vortex-python as a library dependency to avoid
# duplicate PyInit__lib symbols.
extension-module = []
tui = ["dep:tokio", "dep:vortex-tui"]
[dependencies]
arrow-array = { workspace = true }
arrow-data = { workspace = true }
arrow-schema = { workspace = true }
async-fs = { workspace = true }
bytes = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
object_store = { workspace = true, features = [
"fs",
"aws",
"gcp",
"azure",
"http",
] }
parking_lot = { workspace = true }
pyo3 = { workspace = true, features = ["abi3", "abi3-py311"] }
pyo3-bytes = { workspace = true }
pyo3-log = { workspace = true }
pyo3-object_store = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"], optional = true }
url = { workspace = true }
vortex = { workspace = true, features = ["object_store"] }
vortex-tui = { workspace = true, optional = true }
[dev-dependencies]
vortex-array = { path = "../vortex-array", features = ["_test-harness"] }