-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (56 loc) 路 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (56 loc) 路 1.37 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
[package]
name = "omut"
version = "0.0.6"
edition = "2024"
description = "AI-powered conventional commit CLI"
license = "MIT"
repository = "https://github.com/dominnya/omut"
homepage = "https://github.com/dominnya/omut"
[dependencies]
clap = { version = "4.6", features = ["derive"] }
ratatui = { version = "0.30", features = ["crossterm"] }
crossterm = "0.29"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
dotenvy = "0.15"
reqwest = { version = "0.12", features = [
"blocking",
"json",
"rustls-tls",
], default-features = false }
serde_json = "1"
supports-color = "3"
unicode-width = "0.2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
dbg_macro = "deny"
print_stdout = "deny"
print_stderr = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
cargo_common_metadata = "allow"
cast_possible_truncation = "allow"
[profile.release]
strip = true
lto = true
codegen-units = 1
[profile.dist]
inherits = "release"
lto = "thin"