1
0
mirror of https://github.com/helix-editor/helix synced 2026-03-11 10:28:27 +01:00
helix/helix-vcs/Cargo.toml
2026-02-18 09:31:40 -05:00

31 lines
749 B
INI

[package]
name = "helix-vcs"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
categories.workspace = true
repository.workspace = true
homepage.workspace = true
[dependencies]
helix-core = { path = "../helix-core" }
helix-event = { path = "../helix-event" }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] }
parking_lot.workspace = true
arc-swap.workspace = true
gix = { version = "0.79.0", features = ["attributes", "status", "max-performance"], default-features = false, optional = true }
imara-diff = "0.2.0"
anyhow = "1"
log = "0.4"
[features]
git = ["gix"]
[dev-dependencies]
tempfile.workspace = true