-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
55 lines (48 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "fastlanes"
version = "0.1.8"
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 <[email protected]>"]
keywords = ["fastlanes", "compression", "codec"]
edition = "2021"
[dependencies]
arrayref = "0.3.7"
const_for = "0.1.4"
num-traits = "0.2.19"
paste = "1.0.15"
seq-macro = "0.3.5"
[dev-dependencies]
arrayref = "0.3.7"
criterion = "0.5.1"
[lints.rust]
warnings = "deny"
unsafe_op_in_unsafe_fn = "deny"
[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 = "delta"
harness = false
[[bench]]
name = "transpose"
harness = false