-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (57 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
67 lines (57 loc) · 1.54 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
[package]
name = "vortex-runend"
authors = { workspace = true }
categories = { workspace = true }
description = "Vortex run end encoded array"
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
[dependencies]
arbitrary = { workspace = true, optional = true }
arrow-array = { workspace = true, optional = true }
itertools = { workspace = true }
num-traits = { workspace = true }
parking_lot = { workspace = true }
prost = { workspace = true }
vortex-array = { workspace = true }
vortex-buffer = { workspace = true }
vortex-error = { workspace = true }
vortex-mask = { workspace = true }
vortex-session = { workspace = true }
[lints]
workspace = true
[dev-dependencies]
arrow-array = { workspace = true }
arrow-schema = { workspace = true }
divan = { workspace = true }
itertools = { workspace = true }
rand = { workspace = true }
rstest = { workspace = true }
vortex-array = { workspace = true, features = ["_test-harness"] }
[features]
arbitrary = ["dep:arbitrary", "vortex-array/arbitrary"]
arrow = ["dep:arrow-array"]
[[bench]]
name = "run_end_null_count"
harness = false
[[bench]]
name = "run_end_compress"
harness = false
[[bench]]
name = "run_end_decode"
harness = false
[[bench]]
name = "run_end_scalar_fn"
harness = false
[[bench]]
name = "run_end_take"
harness = false
[[bench]]
name = "run_end_filter"
harness = false