🎨 Specify more dependencies at the workspace level

This commit is contained in:
Max Brunsfeld 2023-04-24 17:41:55 -07:00
parent b76194db97
commit ebbe52e6b0
66 changed files with 437 additions and 425 deletions

View file

@ -8,22 +8,22 @@ publish = false
path = "src/git.rs"
[dependencies]
anyhow = "1.0.38"
anyhow.workspace = true
clock = { path = "../clock" }
lazy_static = "1.4.0"
lazy_static.workspace = true
sum_tree = { path = "../sum_tree" }
text = { path = "../text" }
collections = { path = "../collections" }
util = { path = "../util" }
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
smol = "1.2"
parking_lot = "0.11.1"
async-trait = "0.1"
futures = { workspace = true }
log.workspace = true
smol.workspace = true
parking_lot.workspace = true
async-trait.workspace = true
futures.workspace = true
git2 = { version = "0.15", default-features = false }
[dev-dependencies]
unindent = "0.1.7"
unindent.workspace = true
[features]
test-support = []