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