-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (64 loc) · 1.72 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
[package]
name = "track-rename"
version = "1.27.0"
edition = "2021"
authors = ["Esgrove <[email protected]>"]
description = "CLI tool for formatting and renaming audio tracks"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Esgrove/track-rename"
keywords = ["cli", "music", "audio", "rename"]
categories = ["command-line-utilities"]
default-run = "trackrename"
[dependencies]
anyhow = { version = "1.0.95", features = ["backtrace"] }
base64 = "0.22.1"
byteorder = "1.5.0"
clap = { version = "4.5.29", features = ["derive"] }
colored = "3.0.0"
crossterm = "0.28.1"
dashmap = { version = "6.1.0", features = ["serde", "rayon", "inline"] }
difference = "2.0.0"
dirs = "6.0.0"
dunce = "1.0.5"
id3 = "1.16.2"
itertools = "0.14.0"
rand = "0.9.0"
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
titlecase = "3.3.0"
toml = "0.8.20"
trash = "5.2.1"
unicode-normalization = "0.1.24"
walkdir = "2.5.0"
[[bin]]
name = "trackrename"
path = "src/main.rs"
[[bin]]
name = "trackprint"
path = "src/bin/trackprint.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
unwrap_used = "allow"
enum_glob_use = "deny"
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"