mirror of
https://github.com/helix-editor/helix
synced 2026-07-25 22:40:56 +02:00
0d236e0576
Bumps [gix](https://github.com/GitoxideLabs/gitoxide) from 0.84.0 to 0.85.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.84.0...gix-v0.85.0) --- updated-dependencies: - dependency-name: gix dependency-version: 0.85.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
757 B
INI
31 lines
757 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.85.0", features = ["attributes", "status", "max-performance", "sha1"], default-features = false, optional = true }
|
|
imara-diff = "0.2.0"
|
|
anyhow = "1"
|
|
|
|
log = "0.4"
|
|
|
|
[features]
|
|
git = ["gix"]
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|