2022-09-28 18:43:33 +03:00
|
|
|
[package]
|
|
|
|
name = "git"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/git.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.38"
|
|
|
|
clock = { path = "../clock" }
|
|
|
|
git2 = { version = "0.15", default-features = false }
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
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" }
|
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
|
|
smol = "1.2"
|
|
|
|
parking_lot = "0.11.1"
|
2022-09-28 21:42:22 +03:00
|
|
|
async-trait = "0.1"
|
2022-10-01 03:33:34 +03:00
|
|
|
futures = "0.3"
|
2022-09-28 21:42:22 +03:00
|
|
|
|
2022-09-28 18:43:33 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
unindent = "0.1.7"
|
2022-09-30 22:50:55 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|