-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (72 loc) · 2.17 KB
/
Cargo.toml
File metadata and controls
81 lines (72 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "git-ai"
version = "1.3.2"
edition = "2024"
default-run = "git-ai"
[dependencies]
clap = { version = "4.6", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json_canonicalizer = "0.3"
envy = "0.4"
sha2 = "0.10"
imara-diff = "0.2"
chrono = { version = "0.4.44", default-features = false, features = ["serde", "clock", "std"] }
humantime = "2.3"
indicatif = "0.18"
smol = "2.0"
futures = "0.3"
tokio = { version = "1.51", features = ["rt-multi-thread", "sync", "time", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
interprocess = "2.4"
rusqlite = { version = "0.31", features = ["bundled"] }
libc = "0.2"
git2 = { version = "0.20.4", optional = true }
jsonc-parser = { version = "0.32", features = ["cst"] }
dirs = "5.0"
ureq = { version = "2.12", default-features = false, features = ["native-tls"] }
native-tls = "0.2"
url = "2.5"
glob = "0.3"
ignore = "0.4"
uuid = { version = "1.23", features = ["v4"] }
ratatui = "0.30"
zip = { version = "8.5", default-features = false, features = ["deflate"] }
crossterm = "0.29"
keyring = { version = "3", features = ["sync-secret-service", "apple-native", "windows-native"], optional = true }
once_cell = "1.21"
gix-config = "0.53.0"
gix-index = "0.48.0"
regex = "1.12"
toml = "0.9"
unicode-normalization = "0.1"
[target.'cfg(target_os = "linux")'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.'cfg(windows)'.dependencies]
named_pipe = "0.4.1"
[features]
test-support = ["git2"]
keyring = ["dep:keyring"]
[dev-dependencies]
git-ai = { path = ".", features = ["test-support"] }
tempfile = "3.27"
insta = "1.47"
rand = "0.10"
regex = "1.12"
filetime = "0.2"
serial_test = "3.4"
rstest = "0.26"
paste = "1.0"
[profile.dev]
debug = 1 # Line tables only -- smaller binaries, faster linking
split-debuginfo = "unpacked" # macOS: dramatically faster linking
[profile.test]
debug = 1
split-debuginfo = "unpacked"
[profile.dev.build-override]
opt-level = 2 # Optimize proc macros and build scripts
[[test]]
name = "integration"
path = "tests/integration/main.rs"
harness = true