-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
43 lines (36 loc) · 1.08 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
[package]
name = "compressed_vec"
version = "0.1.1"
authors = ["Evan Chan <[email protected]>"]
edition = "2021"
description = "Floating point and integer compressed vector library, SIMD-enabled for fast processing/iteration over compressed representations."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/velvia/compressed-vec"
categories = ["compression", "data-structures", "encoding"]
keywords = ["compression", "data-structures", "simd", "columnar", "float"]
[dependencies]
memoffset = "0.6.3"
plain = "0.2.3"
scroll = { version = "0.11", features = ["derive"] }
arrayref = "0.3.7"
enum_dispatch = "0.3.12"
num = "0.4.1"
smallvec = "1.11.2"
num_enum = "0.7.1"
# TODO: put this behind a feature flag
packed_simd = { version = "0.3.9", features = ["into_bits"] }
[dev-dependencies]
criterion = "0.3"
proptest = "0.9.1"
[[bench]]
name = "bench"
harness = false
[profile.bench]
opt-level = 3
debug = true
[profile.release]
debug = true
[lib]
# NOTE: Type "cdylib" is for JVM integration; "lib" is needed for benchmarks
crate-type = ["staticlib", "cdylib", "lib"]