-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
96 lines (87 loc) · 1.95 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[package]
name = "rs-coco"
version = "0.0.1"
edition = "2021"
description = "🥥 coco » an interactive cli for creating conventional commits."
authors = ["Lucas Colombo <[email protected]>"]
readme = "README.md"
license-file = "LICENSE"
documentation = "https://docs.rs/rs-coco"
repository = "https://github.com/lucas-labs/coco"
homepage = "https://github.com/lucas-labs/coco"
keywords = ["cli", "conventional-commits", "git", "commit", "conventional"]
categories = ["command-line-interface", "command-line-utilities", "development-tools", "config"]
[profile.release]
strip = "symbols"
lto = "fat"
codegen-units = 1
opt-level = "z"
panic = "abort"
rpath = false
overflow-checks = false
debug = 0
debug-assertions = false
[profile.dist]
inherits = "release"
strip = "symbols"
lto = "fat"
codegen-units = 1
opt-level = "z"
panic = "abort"
rpath = false
overflow-checks = false
debug = 0
debug-assertions = false
[[bin]]
name = "coco"
path = "src/bin/main.rs"
[lib]
name = "coco"
path = "src/lib/lib.rs"
[dependencies]
strum = { version = "0.26.1", features = ["derive"] }
serde = { version = "1.0.210", features = ["derive"] }
unicode-width = "0.2.0"
serde_yaml = "0.9.34"
tokio-util = "0.7.12"
sys-locale = "0.3.1"
pico-args = "0.5.0"
rust-i18n = "3.1.2"
matetui = "0.3.4"
indoc = "2.0.5"
dirs = "5.0.1"
[dependencies.tokio]
version = "1.40.0"
features = [
"tokio-macros",
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.eyre]
version = "0.6.12"
default-features = false
features = [
"auto-install",
]
[package.metadata.i18n]
available-locales = ["en", "es"]
default-locale = "en"
load-path = "locales"
minify-key = true
minify-key-len = 4
minify-key-thresh = 4
# Config for 'cargo dist'
[workspace.metadata.dist]
github-attestations = true
cargo-dist-version = "0.19.1"
pr-run-mode = "skip"
ci = "github"
installers = []
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]