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 = "1.0.38"
12clock = { path = "../clock" }
13lazy_static = "1.4.0"
14sum_tree = { path = "../sum_tree" }
15text = { path = "../text" }
16collections = { path = "../collections" }
17util = { path = "../util" }
18log = { version = "0.4.16", features = ["kv_unstable_serde"] }
19smol = "1.2"
20parking_lot = "0.11.1"
21async-trait = "0.1"
22futures = { workspace = true }
23git2 = { version = "0.15", default-features = false }
24
25[dev-dependencies]
26unindent = "0.1.7"
27
28[features]
29test-support = []