88f9cdeb3d
Bumps [git-repository](https://github.com/Byron/gitoxide) from 0.30.2 to 0.31.0. - [Release notes](https://github.com/Byron/gitoxide/releases) - [Changelog](https://github.com/Byron/gitoxide/blob/main/CHANGELOG.md) - [Commits](https://github.com/Byron/gitoxide/compare/git-repository-v0.30.2...git-repository-v0.31.0) --- updated-dependencies: - dependency-name: git-repository dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
No EOL
731 B
TOML
28 lines
No EOL
731 B
TOML
[package]
|
|
name = "helix-vcs"
|
|
version = "0.6.0"
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
categories = ["editor"]
|
|
repository = "https://github.com/helix-editor/helix"
|
|
homepage = "https://helix-editor.com"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] }
|
|
parking_lot = "0.12"
|
|
|
|
git-repository = { version = "0.31", default-features = false , optional = true }
|
|
imara-diff = "0.1.5"
|
|
|
|
log = "0.4"
|
|
|
|
[features]
|
|
git = ["git-repository"]
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3" |