-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (66 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
73 lines (66 loc) · 1.98 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "git-statuses"
description = "A tool to display git repository statuses in a table format"
repository = "https://github.com/bircni/git-statuses"
version = "0.8.1"
authors = ["bircni"]
edition = "2024"
license = "MIT"
readme = "README.md"
keywords = ["git", "status", "repository", "plugin", "cli"]
exclude = ["src/tests/*"]
[dependencies]
anyhow = "1"
clap = { version = "4.6", features = ["derive"] }
clap_complete = "4.6"
comfy-table = "7.2.2"
git2 = { version = "0.20", default-features = false, features = ["https", "ssh", "vendored-openssl"] }
log = "0.4.29"
parking_lot = "0.12.5"
rayon = "1.11.0"
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
simplelog = "0.12.2"
strum = { version = "0.28", features = ["strum_macros"] }
strum_macros = "0.28"
walkdir = "2.5"
[dev-dependencies]
insta = { version = "1.47", features = ["json"] }
tempfile = "3.27"
[lints.rust]
unsafe_code = "deny"
deprecated = "warn"
elided_lifetimes_in_paths = "warn"
rust_2021_prelude_collisions = "warn"
semicolon_in_expressions_from_macros = "warn"
trivial_numeric_casts = "warn"
unsafe_op_in_unsafe_fn = "warn" # `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
[lints.rustdoc]
all = "warn"
missing_crate_level_docs = "warn"
[lints.clippy]
all = "warn"
correctness = "warn"
suspicious = "warn"
style = "warn"
complexity = "warn"
perf = "warn"
pedantic = "warn"
nursery = "warn"
# Additional lints from https://rust-lang.github.io/rust-clippy/master/index.html?groups=restriction
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
assertions_on_result_states = "warn"
create_dir = "warn"
clone_on_ref_ptr = "warn"
expect_used = "warn"
missing_assert_message = "warn"
panic_in_result_fn = "warn"
str_to_string = "warn"
todo = "warn"
unwrap_used = "warn"
unimplemented = "warn"
wildcard_enum_match_arm = "warn"