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