2022-09-28 15:43:33 +00:00
|
|
|
[package]
|
|
|
|
name = "git"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-09-28 15:43:33 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/git.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2022-09-28 15:43:33 +00:00
|
|
|
clock = { path = "../clock" }
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
2022-09-28 15:43:33 +00:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
|
|
|
text = { path = "../text" }
|
2022-09-30 19:50:55 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-09-28 15:43:33 +00:00
|
|
|
util = { path = "../util" }
|
2023-04-25 00:41:55 +00:00
|
|
|
log.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
futures.workspace = true
|
2023-09-19 20:13:47 +00:00
|
|
|
git2.workspace = true
|
2022-09-28 18:42:22 +00:00
|
|
|
|
2022-09-28 15:43:33 +00:00
|
|
|
[dev-dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
unindent.workspace = true
|
2022-09-30 19:50:55 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|