Cargo.toml

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