-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (48 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (48 loc) · 1.25 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
[package]
name = "onpair"
version = "0.0.4"
description = "Short-strings compression for fast random access"
authors = ["SpiralDB Developers <hello@spiraldb.com>"]
license = "Apache-2.0"
repository = "https://github.com/spiraldb/onpair"
readme = "README.md"
keywords = ["compression", "strings", "onpair", "random-access", "lightweight"]
categories = ["compression"]
rust-version = "1.91.0"
edition = "2024"
exclude = [".github/*"]
[lib]
name = "onpair"
[lints.rust]
warnings = "deny"
missing_docs = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
if_then_some_else_none = { level = "deny" }
mem_forget = { level = "deny" }
or_fun_call = "deny"
panic_in_result_fn = { level = "deny" }
same_name_method = { level = "deny" }
tests_outside_test_module = { level = "deny" }
unwrap_in_result = { level = "deny" }
use_debug = { level = "deny" }
[dependencies]
hashbrown = "0.16.1"
rand = "0.9.0"
[dev-dependencies]
divan = { package = "codspeed-divan-compat", version = "4.0.4" }
rstest = "0.26.1"
arrow-array = "57.1"
arrow-schema = "57.1"
parquet = "57.1"
tpchgen = "2.0.2"
tpchgen-arrow = "2.0.2"
[[bench]]
name = "tpch"
harness = false
[[bench]]
name = "clickbench"
harness = false