-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathCargo.toml
49 lines (41 loc) · 1.22 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
43
44
45
46
47
48
49
[package]
name = "colored"
description = "The most simple way to add colors in your terminal"
version = "3.0.0"
edition = "2021"
authors = ["Thomas Wickham <[email protected]>"]
license = "MPL-2.0"
homepage = "https://github.com/mackwic/colored"
repository = "https://github.com/mackwic/colored"
readme = "README.md"
keywords = ["color", "string", "term", "ansi_term", "term-painter"]
rust-version = "1.80"
[features]
# with this feature, no color will ever be written
no-color = []
[target.'cfg(windows)'.dependencies.windows-sys]
version = ">=0.48,<=0.59"
features = ["Win32_Foundation", "Win32_System_Console"]
[dev-dependencies]
ansi_term = "0.12"
insta = "1"
rspec = "1"
[lints.rust]
unsafe_code = "warn"
deprecated = "warn"
[lints.clippy]
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
# Could be enabled in the future
too_many_lines = { level = "allow", priority = 10 }
unwrap_used = { level = "allow", priority = 10 }
expect_used = { level = "allow", priority = 10 }
wildcard_imports = { level = "allow", priority = 10 }
# not necessary
module_name_repetitions = { level = "allow", priority = 10 }
missing_const_for_fn = { level = "allow", priority = 10 }