Cargo.toml

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