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