-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (72 loc) · 2 KB
/
Copy pathCargo.toml
File metadata and controls
85 lines (72 loc) · 2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "fastlanes"
version = "0.7.2"
description = "Rust implementation of the FastLanes compression layout"
license = "Apache-2.0"
homepage = "https://github.com/spiraldb/fastlanes"
repository = "https://github.com/spiraldb/fastlanes"
authors = ["SpiralDB <hello@spiraldb.com>"]
keywords = ["fastlanes", "compression", "codec", "encoding", "lightweight"]
edition = "2024"
rust-version = "1.91"
exclude = [".github/*", "renovate.json", ".git/*"]
[features]
default = []
# Enables runtime CPU feature detection for `transpose_bits`/`untranspose_bits`
# dispatch. Without it, the dispatch is resolved at compile time from the enabled
# `target_feature`s.
runtime = ["dep:cpufeatures"]
[dependencies]
const_for = "0.1"
num-traits = { version = "0.2", default-features = false }
pastey = "0.2"
seq-macro = "0.3"
[target.'cfg(target_arch = "x86_64")'.dependencies]
cpufeatures = { version = "0.3.0", optional = true }
[dev-dependencies]
arrayref = "0.3"
divan = { package = "codspeed-divan-compat", version = "5.0" }
hegeltest = "0.31.0"
[lints.rust]
warnings = "deny"
unsafe_op_in_unsafe_fn = "deny"
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(codspeed)'] }
[lints.clippy]
all = { level = "deny", priority = -1 }
# enable pedantic lint group with overrides
pedantic = { level = "deny", priority = -1 }
cast_possible_truncation = "allow"
needless_range_loop = "allow"
# opt-in to members of the "restrictions" lint group
if_then_some_else_none = "deny"
mem_forget = "deny"
multiple_inherent_impl = "deny"
or_fun_call = "deny"
panic = "deny"
same_name_method = "deny"
self_named_module_files = "deny"
tests_outside_test_module = "deny"
unwrap_used = "deny"
use_debug = "deny"
[[bench]]
name = "bitpacking"
harness = false
[[bench]]
name = "ffor"
harness = false
[[bench]]
name = "bitpacking_cmp"
harness = false
[[bench]]
name = "delta"
harness = false
[[bench]]
name = "transpose"
harness = false
[[bench]]
name = "bit_transpose"
harness = false
required-features = ["runtime"]
[[bench]]
name = "rle"
harness = false