1
0
mirror of https://github.com/helix-editor/helix synced 2026-05-03 17:20:38 +02:00
Files
helix/helix-vcs/Cargo.toml
dependabot[bot] aace44e8b8 build(deps): bump gix from 0.80.0 to 0.83.0
Bumps [gix](https://github.com/GitoxideLabs/gitoxide) from 0.80.0 to 0.83.0.
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](https://github.com/GitoxideLabs/gitoxide/compare/gix-v0.80.0...gix-v0.83.0)

---
updated-dependencies:
- dependency-name: gix
  dependency-version: 0.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-28 23:25:05 +00: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.83.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