-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (37 loc) · 980 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.10.0"
authors = ["hasezoey <[email protected]>"]
edition = "2021"
license = "MIT"
rust-version = "1.70"
[workspace.dependencies]
once_cell = "1.19"
log = "0.4"
regex = "1.10"
dirs = "5.0"
tempfile = "3.10"
[workspace.lints.clippy]
correctness = { level = "deny", priority = -1 }
style = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
needless_return = "allow"
implicit_return = "deny"
needless_doctest_main = "allow"
tabs_in_doc_comments = "allow"
wildcard_imports = "warn"
semicolon_if_nothing_returned = "warn"
default_trait_access = "warn"
manual_assert = "warn"
map_unwrap_or = "warn"
ignored_unit_patterns = "warn"
manual_let_else = "warn"
single_match_else = "warn"
if_not_else = "warn"
manual_string_new = "warn"
used_underscore_binding = "warn"
return_self_not_must_use = "warn"
inefficient_to_string = "warn"