-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1012 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 = "scrollrun"
version = "0.1.0"
edition = "2021"
authors = ["jRimbault <[email protected]>"]
license = "MIT"
rust-version = "1.74.1"
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.13", features = ["cargo", "derive", "wrap_help"] }
clap-cargo = { version = "0.14.1", features = ["clap"] }
clap_complete = "4.5.14"
terminal_size = "0.3.0"
[dev-dependencies]
textplots = "0.8.6"
[lints.rust]
# forbid
unsafe_code = "forbid"
# deny
ambiguous_glob_imports = "deny"
ambiguous_glob_reexports = "deny"
nonstandard_style = { level = "deny", priority = -1 }
improper_ctypes = "deny"
missing_debug_implementations = "deny"
no_mangle_generic_items = "deny"
non_shorthand_field_patterns = "deny"
overflowing_literals = "deny"
path_statements = "deny"
patterns_in_fns_without_body = "deny"
unconditional_recursion = "deny"
unused = { level = "deny", priority = -1 }
while_true = "deny"
# warn
trivial_casts = "warn"
trivial_numeric_casts = "warn"
[lints.clippy]
wildcard_imports = "deny"