diff options
author | Benoît CORTIER | 2021-06-18 13:48:31 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-19 01:04:59 +0000 |
commit | b48054f3ee28db64110f9ddcc13d7f01bb78b357 (patch) | |
tree | c1bbaf5adfa83d44a57e7286fa8508f95cf85c8b /helix-view | |
parent | 1c1474c3b8dbab8ca4b9a62220c079ddffb7ed9f (diff) |
cargo: add version to local dependencies
First step towards enabling us to publish on crates.io.
See: https://github.com/helix-editor/helix/issues/42
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index 593f00e0..db96c9aa 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -13,8 +13,8 @@ default = ["term"] [dependencies] anyhow = "1" -helix-core = { path = "../helix-core" } -helix-lsp = { path = "../helix-lsp"} +helix-core = { version = "0.2", path = "../helix-core" } +helix-lsp = { version = "0.2", path = "../helix-lsp"} # Conversion traits tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"], optional = true } |