-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 1.26 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
[package]
name = "vortex-compressor"
authors = { workspace = true }
categories = { workspace = true }
description = "Encoding-agnostic compression framework for Vortex arrays"
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]
itertools = { workspace = true }
num-traits = { workspace = true }
parking_lot = { workspace = true }
rand = { workspace = true }
rustc-hash = { workspace = true }
tracing = { workspace = true, features = ["std", "attributes"] }
vortex-array = { workspace = true }
vortex-buffer = { workspace = true }
vortex-error = { workspace = true }
vortex-mask = { workspace = true }
vortex-utils = { workspace = true }
[dev-dependencies]
divan = { workspace = true }
rstest = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
vortex-array = { workspace = true, features = ["_test-harness"] }
vortex-session = { workspace = true }
[lints]
workspace = true
[[bench]]
name = "dict_encode"
harness = false
test = false
[[bench]]
name = "stats_calc"
harness = false
test = false