-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 892 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
[package]
name = "ruspell"
version = "0.0.0"
edition = "2021"
description = "A port of Hunspell to Rust"
repository = "https://github.com/mrnossiom/ruspell"
license = "CECILL-2.1"
[dependencies]
clap = { version = "4", features = ["derive"] }
log = { version = "0.4", features = ["release_max_level_info"] }
nom = "7"
nom-supreme = "0.8"
pretty_env_logger = "0.5"
regex = "1"
thiserror = "1"
[features]
default = []
fully_evaluate = []
[lints]
[workspace.lints.rust]
unsafe_code = "allow"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
# cargo = { level = "warn", priority = -1 }
missing_docs = "warn"
dbg_macro = "warn"
missing_docs_in_private_items = "warn"
todo = "warn"
unwrap_used = "warn"
[workspace.lints.rustdoc]
all = "warn"
redundant_pub_crate = { level = "allow", priority = 1 }
[lints.rustdoc]
all = "warn"