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" }
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 = "0.3"
23
24[dev-dependencies]
25unindent = "0.1.7"
26
27[features]
28test-support = []