-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (69 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "cli-tools"
version = "2.7.0"
edition = "2021"
authors = ["Esgrove <[email protected]>"]
description = "A collection of CLI utilities."
license = "MIT"
readme = "README.md"
repository = "https://github.com/Esgrove/cli-tools"
keywords = ["cli", "rename"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.95"
chrono = "0.4.39"
clap = { version = "4.5.28", features = ["derive"] }
colored = "3.0.0"
difference = "2.0.0"
dirs = "6.0.0"
dunce = "1.0.5"
git2 = "0.20.0"
itertools = "0.14.0"
regex = "1.11.1"
rust_xlsxwriter = { version = "0.83.0", features = ["chrono", "serde"] }
serde = { version = "1.0.217", features = ["derive"] }
tempfile = "3.16.0"
titlecase = "3.3.0"
toml = "0.8.20"
unicode-normalization = "0.1.24"
unicode-segmentation = "1.12.0"
walkdir = "2.5.0"
[[bin]]
name = "div"
path = "src/bin/divider.rs"
[[bin]]
name = "dots"
path = "src/bin/dots.rs"
[[bin]]
name = "flipdate"
path = "src/bin/flip_date.rs"
[[bin]]
name = "visaparse"
path = "src/bin/visa_parse.rs"
[[bin]]
name = "vtag"
path = "src/bin/version_tag.rs"
[profile.dev]
incremental = true
[profile.release]
lto = true
# https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
codegen-units = 1
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
# https://rust-lang.github.io/rust-clippy/master/index.html
enum_glob_use = "deny"
unwrap_used = "deny"
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
fn_params_excessive_bools = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
unreadable_literal = "allow"