Cargo.toml

 1[package]
 2name = "git"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/git.rs"
10
11[dependencies]
12anyhow.workspace = true
13clock = { path = "../clock" }
14lazy_static.workspace = true
15sum_tree = { path = "../sum_tree" }
16text = { path = "../text" }
17collections = { path = "../collections" }
18util = { path = "../util" }
19log.workspace = true
20smol.workspace = true
21parking_lot.workspace = true
22async-trait.workspace = true
23futures.workspace = true
24git2.workspace = true
25
26[dev-dependencies]
27unindent.workspace = true
28
29[features]
30test-support = []