Cargo.toml

 1[package]
 2name = "git"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/git.rs"
 8
 9[dependencies]
10anyhow = "1.0.38"
11clock = { path = "../clock" }
12git2 = { version = "0.15", default-features = false }
13lazy_static = "1.4.0"
14sum_tree = { path = "../sum_tree" }
15text = { path = "../text" }
16util = { path = "../util" }
17log = { version = "0.4.16", features = ["kv_unstable_serde"] }
18smol = "1.2"
19parking_lot = "0.11.1"
20async-trait = "0.1"
21
22
23[dev-dependencies]
24unindent = "0.1.7"