forked from git-ai-project/git-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1022 Bytes
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1022 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
40
41
42
43
44
45
[package]
name = "git-ai"
version = "2.0.0"
edition = "2024"
[dependencies]
clap = { version = "4.5", 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.41", features = ["serde"] }
humantime = "2.3"
indicatif = "0.17"
smol = "1.3"
futures = "0.3"
rusqlite = { version = "0.31", features = ["bundled"] }
libc = "0.2"
git2 = { version = "0.20.2", optional = true }
jsonc-parser = { version = "0.27", features = ["cst"] }
dirs = "5.0"
minreq = { version = "2.12", features = ["https-rustls"] }
url = "2.5"
glob = "0.3"
uuid = { version = "1.11", features = ["v4"] }
ratatui = "0.28"
crossterm = "0.28"
[features]
test-support = ["git2"]
[dev-dependencies]
git-ai = { path = ".", features = ["test-support"] }
tempfile = "3.8"
assert_cmd = "2.0"
predicates = "3.0"
insta = "1.38"
rand = "0.8"
regex = "1.10"
filetime = "0.2"
serial_test = "3.2"
rstest = "0.23"
paste = "1.0"