-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.1 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
[package]
name = "shrimple-docs"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
crossterm = "0.27.0"
rustdoc-types = "0.29"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
paste = "1"
tokio = { version = "1", features = ["macros", "rt", "process", "io-util"] }
dirs = "5"
shrimple-parser = { git = "https://github.com/its-the-shrimp/shrimple-parser" }
postcard = { version = "1", default-features = false, features = ["use-std"] }
[lints.clippy]
# complexity = { level = "warn", priority = -1 }
type_complexity = "allow"
unit_arg = "allow"
# restriction = { level = "allow", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
deref_by_slicing = "warn"
infinite_loop = "warn"
mixed_read_write_in_expression = "warn"
exit = "warn"
print_stdout = "warn"
print_stderr = "warn"
arithmetic_side_effects = "warn"
pedantic = { level = "warn", priority = -1 }
must_use_candidate = "allow"
module_name_repetitions = "allow"
ignored_unit_patterns = "allow"
unsafe_derive_deserialize = "allow"
nursery = { level = "warn", priority = -1 }
option_if_let_else = "allow"
or_fun_call = "allow"