-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (41 loc) · 1.04 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
[package]
name = "koji"
version = "2.2.0"
edition = "2021"
authors = [
"Finley Thomalla <finley@thomalla.ch>",
"Danny Tatom <its.danny@hey.com>",
]
description = "An interactive CLI for creating conventional commits."
documentation = "https://docs.rs/koji"
repository = "https://github.com/cococonscious/koji"
license = "MIT"
[[bin]]
name = "koji"
path = "src/bin/main.rs"
[lib]
name = "koji"
path = "src/lib/lib.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
cocogitto = { version = "6.1", default-features = false }
conventional_commit_parser = "0.9"
dirs = "5.0"
emojis = "0.6"
git2 = "0.18"
indexmap = "2.1"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
inquire = "0.7.5"
clap_complete_command = { version = "0.6.1", features = ["nushell"]}
[features]
vendored-openssl = ["git2/vendored-openssl"]
[dev-dependencies]
rusty-hook = "0.11"
tempfile = "3.12.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
[profile.release]
opt-level = "z"
codegen-units = 1