-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 906 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 906 Bytes
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
[package]
name = "git-sc"
version = "26.9.100"
edition = "2024"
authors = ["owayo <yoheiowa@gmail.com>"]
description = "AI-powered smart commit message generator with multi-provider fallback"
license = "MIT"
[features]
apple-ai = ["fm-rs"]
[dependencies]
clap = { version = "4.6.6", features = ["derive"] }
anyhow = "1.0.104"
thiserror = "2.0.20"
regex = "1.13.1"
colored = "3.1.1"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
toml = "1.1.4"
dirs = "6.0.0"
ignore = "0.4.33"
shellexpand = "3.1.2"
chrono = { version = "0.4.45", default-features = false, features = ["clock", "std"] }
[target.'cfg(target_os = "macos")'.dependencies]
fm-rs = { version = "=0.3.0", optional = true }
[dev-dependencies]
rstest = "0.26.1"
pretty_assertions = "1.4.1"
tempfile = "3.27.0"
assert_cmd = "2.2.2"
predicates = "3.1.4"
[profile.release]
strip = true
lto = true
codegen-units = 1