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
13async-trait.workspace = true
14clock = { path = "../clock" }
15collections = { path = "../collections" }
16futures.workspace = true
17git2.workspace = true
18lazy_static.workspace = true
19log.workspace = true
20parking_lot.workspace = true
21smol.workspace = true
22sum_tree = { path = "../sum_tree" }
23text = { path = "../text" }
24util = { path = "../util" }
25
26[dev-dependencies]
27unindent.workspace = true
28
29[features]
30test-support = []