Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-vcs/Cargo.toml')
-rw-r--r--helix-vcs/Cargo.toml32
1 files changed, 15 insertions, 17 deletions
diff --git a/helix-vcs/Cargo.toml b/helix-vcs/Cargo.toml
index 3c9b1c7f..e54cf828 100644
--- a/helix-vcs/Cargo.toml
+++ b/helix-vcs/Cargo.toml
@@ -1,30 +1,28 @@
[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
+version = "0.6.0"
+authors = ["Blaž Hrastnik <[email protected]>"]
+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 = { path = "../helix-core" }
-helix-event = { path = "../helix-event" }
+helix-core = { version = "0.6", path = "../helix-core" }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] }
-parking_lot.workspace = true
-arc-swap = { version = "1.7.1" }
+parking_lot = "0.12"
-gix = { version = "0.74.1", features = ["attributes", "status"], default-features = false, optional = true }
-imara-diff = "0.2.0"
-anyhow = "1"
+git-repository = { version = "0.29", default-features = false , optional = true }
+imara-diff = "0.1.5"
log = "0.4"
[features]
-git = ["gix"]
+git = ["git-repository"]
[dev-dependencies]
-tempfile.workspace = true
+tempfile = "3.3" \ No newline at end of file