mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
ce7f6dd082
Co-Authored-By: Mikayla Maki <mikayla@zed.dev> Co-Authored-By: Max Brunsfeld <max@zed.dev>
28 lines
547 B
TOML
28 lines
547 B
TOML
[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" }
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
unindent = "0.1.7"
|
|
|
|
[features]
|
|
test-support = []
|