-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (51 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
60 lines (51 loc) · 1.37 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
[package]
name = "splinter-rs"
version = "0.12.2"
edition = "2024"
authors = ["orbitinghail <hello@orbitinghail.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orbitinghail/splinter-rs"
homepage = "https://github.com/orbitinghail/splinter-rs"
rust-version = "1.87"
keywords = ["bitmap", "compression", "zero-copy"]
categories = ["data-structures", "encoding"]
description = "A compressed bitmap format optimized for small, sparse sets of u32s with zero-copy querying."
[lints.clippy]
disallowed_methods = "deny"
uninlined-format-args = "warn"
doc-markdown = "warn"
map-unwrap-or = "warn"
[dependencies]
assert_matches = "1.5.0"
bitvec = "1.0.1"
bytes = "1.10"
crc64fast-nvme = "1.2.0"
either = "1.15"
itertools = "0.14"
num = "0.4"
proptest = { version="1.7.0", optional=true}
rand = { version = "0.10", optional = true }
range-set-blaze = "0.4.0"
static_assertions = "1.1"
thiserror = "2.0"
u24 = { version = "0.6.0", features = ["range-set-blaze"] }
zerocopy = { version = "0.8", features = ["derive"] }
[dev-dependencies]
splinter-rs = { path = ".", features = ["testutil"] }
criterion = "=0.8.2"
hegeltest = "0.1.15"
lz4 = "=1.28.1"
roaring = "=0.11.3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[features]
default = []
testutil = ["dep:rand", "dep:proptest"]
[[bench]]
name = "op_bench"
harness = false
[[bench]]
name = "count_bench"
harness = false