-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (40 loc) · 968 Bytes
/
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
[package]
name = "fsst-rs"
version = "0.4.3"
description = "Pure-Rust implementation of Fast Static Symbol Tables algorithm for string compression"
authors = ["SpiralDB Developers <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/spiraldb/fsst"
edition = "2021"
[lib]
name = "fsst"
[lints.rust]
warnings = "deny"
missing_docs = "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" }
[dev-dependencies]
criterion = "0.5"
curl = "0.4"
[[example]]
name = "round_trip"
bench = false
test = false
[[bench]]
name = "compress"
harness = false
[[bench]]
name = "micro"
harness = false
[[test]]
name = "correctness"
test = true
bench = false