-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 896 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
[package]
name = "git-leave"
version = "1.6.2"
edition = "2021"
description = "Check for unsaved or uncommitted changes on your machine"
authors = ["Milo Moisson <[email protected]>"]
repository = "https://github.com/mrnossiom/git-leave"
keywords = ["crawler", "git", "cli"]
categories = ["development-tools"]
license = "CECILL-2.1"
[dependencies]
clap = { version = "4.5.13", features = ["derive"] }
color-eyre = "0.6.3"
console = "0.15.8"
crossbeam = "0.8.4"
dirs = "5.0"
git2 = "0.19.0"
indicatif = "0.17.8"
label-logger = { version = "0.2.1", features = ["indicatif"] }
num_cpus = "1.16.0"
[lints]
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
# cargo = { level = "warn", priority = -1 }
expect_used = "warn"
missing_docs_in_private_items = "warn"
print_literal = "warn"
unwrap_used = "warn"