-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
59 lines (54 loc) · 1.71 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
[package]
name = "simple-commit"
description = "A little CLI written in rust to improve your dirty commits into conventional ones. "
repository = "https://github.com/romancitodev/simple-commits"
authors = ["romancitodev"]
version = "1.0.2"
edition = "2021"
license = "MIT"
[[bin]]
name = "sc"
path = "src/main.rs"
[package.metadata.wix]
upgrade-guid = "C20E12CB-E616-45DF-8B01-11541D65C6CE"
path-guid = "E4D36954-1F3E-4535-A0BA-B439FA323671"
license = false
eula = false
[dependencies]
thiserror = "1"
cliclack = "0.3.4"
clap = { version = "4.5.3", features = ["derive"] }
clap_derive = { version = "4.0.0-rc.1" }
colored = "2.1.0"
directories = "5.0.1"
env_logger = "0.11.3"
fuzzy-matcher = "0.3.7"
log = "0.4.21"
merge2 = "0.3.0"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt", "macros", "sync", "rt-multi-thread"] }
toml = "0.8.8"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.18.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "homebrew", "msi"]
# A GitHub repo to push Homebrew formulas to
tap = "romancitodev/homebrew-tap"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Host jobs to run in CI
host-jobs = ["./gen_changelog"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = false