Skip to content

Commit

Permalink
fix build...
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer committed Aug 12, 2021
1 parent 733ee06 commit 3de40de
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion helix-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include = ["src/**/*", "README.md"]
[features]

[dependencies]
helix-syntax = { version = "0.3", path = "../helix-syntax" }
helix-syntax = { version = "0.4", path = "../helix-syntax" }

ropey = "1.3"
smallvec = "1.4"
Expand Down
2 changes: 1 addition & 1 deletion helix-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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.3", path = "../helix-core" }
helix-core = { version = "0.4", path = "../helix-core" }

anyhow = "1.0"
futures-executor = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions helix-term/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ name = "hx"
path = "src/main.rs"

[dependencies]
helix-core = { version = "0.3", path = "../helix-core" }
helix-view = { version = "0.3", path = "../helix-view" }
helix-lsp = { version = "0.3", path = "../helix-lsp" }
helix-core = { version = "0.4", path = "../helix-core" }
helix-view = { version = "0.4", path = "../helix-view" }
helix-lsp = { version = "0.4", path = "../helix-lsp" }

anyhow = "1"
once_cell = "1.8"
Expand Down
4 changes: 2 additions & 2 deletions helix-tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ cassowary = "0.3"
unicode-segmentation = "1.8"
crossterm = { version = "0.20", optional = true }
serde = { version = "1", "optional" = true, features = ["derive"]}
helix-view = { version = "0.3", path = "../helix-view", features = ["term"] }
helix-core = { version = "0.3", path = "../helix-core" }
helix-view = { version = "0.4", path = "../helix-view", features = ["term"] }
helix-core = { version = "0.4", path = "../helix-core" }
4 changes: 2 additions & 2 deletions helix-view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ term = ["crossterm"]
[dependencies]
bitflags = "1.0"
anyhow = "1"
helix-core = { version = "0.3", path = "../helix-core" }
helix-lsp = { version = "0.3", path = "../helix-lsp"}
helix-core = { version = "0.4", path = "../helix-core" }
helix-lsp = { version = "0.4", path = "../helix-lsp"}
crossterm = { version = "0.20", optional = true }

# Conversion traits
Expand Down

0 comments on commit 3de40de

Please sign in to comment.