forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use workspace inheritance for common version (helix-editor#8925)
- Loading branch information
Showing
16 changed files
with
143 additions
and
115 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,11 @@ tree-sitter = { version = "0.20", git = "https://github.com/tree-sitter/tree-sit | |
nucleo = "0.2.0" | ||
|
||
[workspace.package] | ||
version = "23.10.0" | ||
edition = "2021" | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
license = "MPL-2.0" | ||
rust-version = "1.70" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
[package] | ||
name = "helix-core" | ||
version = "0.6.0" | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
description = "Helix editor core editing primitives" | ||
include = ["src/**/*", "README.md"] | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
description = "Helix editor core editing primitives" | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
include = ["src/**/*", "README.md"] | ||
categories.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
|
||
[features] | ||
unicode-lines = ["ropey/unicode_lines"] | ||
integration = [] | ||
|
||
[dependencies] | ||
helix-loader = { version = "0.6", path = "../helix-loader" } | ||
helix-loader = { path = "../helix-loader" } | ||
|
||
ropey = { version = "1.6.1", default-features = false, features = ["simd"] } | ||
smallvec = "1.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[package] | ||
name = "helix-dap" | ||
version = "0.6.0" | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
description = "DAP client implementation for Helix project" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
description = "DAP client implementation for Helix project" | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
categories.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
|
||
# 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" } | ||
helix-core = { path = "../helix-core" } | ||
|
||
anyhow = "1.0" | ||
log = "0.4" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "helix-event" | ||
version = "0.6.0" | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
categories.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "helix-loader" | ||
version = "0.6.0" | ||
description = "A post-modern text editor." | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
description = "Build bootstrapping for Helix crates" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
categories.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
|
||
[[bin]] | ||
name = "hx-loader" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
[package] | ||
name = "helix-lsp" | ||
version = "0.6.0" | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
description = "LSP client implementation for Helix project" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
description = "LSP client implementation for Helix project" | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
categories.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
|
||
# 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" } | ||
helix-loader = { version = "0.6", path = "../helix-loader" } | ||
helix-parsec = { version = "0.6", path = "../helix-parsec" } | ||
helix-core = { path = "../helix-core" } | ||
helix-loader = { path = "../helix-loader" } | ||
helix-parsec = { path = "../helix-parsec" } | ||
|
||
anyhow = "1.0" | ||
futures-executor = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "helix-parsec" | ||
version = "0.6.0" | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
description = "Parser combinators for Helix" | ||
include = ["src/**/*", "README.md"] | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
rust-version.workspace = true | ||
description = "Parser combinators for Helix" | ||
categories = ["editor"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
include = ["src/**/*", "README.md"] | ||
categories.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
name = "helix-term" | ||
version = "0.6.0" | ||
description = "A post-modern text editor." | ||
authors = ["Blaž Hrastnik <[email protected]>"] | ||
edition.workspace = true | ||
license.workspace = true | ||
categories = ["editor", "command-line-utilities"] | ||
repository = "https://github.com/helix-editor/helix" | ||
homepage = "https://helix-editor.com" | ||
include = ["src/**/*", "README.md"] | ||
default-run = "hx" | ||
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 | ||
|
||
[features] | ||
default = ["git"] | ||
|
@@ -23,13 +23,13 @@ name = "hx" | |
path = "src/main.rs" | ||
|
||
[dependencies] | ||
helix-core = { version = "0.6", path = "../helix-core" } | ||
helix-event = { version = "0.6", path = "../helix-event" } | ||
helix-view = { version = "0.6", path = "../helix-view" } | ||
helix-lsp = { version = "0.6", path = "../helix-lsp" } | ||
helix-dap = { version = "0.6", path = "../helix-dap" } | ||
helix-vcs = { version = "0.6", path = "../helix-vcs" } | ||
helix-loader = { version = "0.6", path = "../helix-loader" } | ||
helix-core = { path = "../helix-core" } | ||
helix-event = { path = "../helix-event" } | ||
helix-view = { path = "../helix-view" } | ||
helix-lsp = { path = "../helix-lsp" } | ||
helix-dap = { path = "../helix-dap" } | ||
helix-vcs = { path = "../helix-vcs" } | ||
helix-loader = { path = "../helix-loader" } | ||
|
||
anyhow = "1" | ||
once_cell = "1.18" | ||
|
@@ -79,7 +79,7 @@ libc = "0.2.150" | |
crossterm = { version = "0.27", features = ["event-stream", "use-dev-tty"] } | ||
|
||
[build-dependencies] | ||
helix-loader = { version = "0.6", path = "../helix-loader" } | ||
helix-loader = { path = "../helix-loader" } | ||
|
||
[dev-dependencies] | ||
smallvec = "1.11" | ||
|
Oops, something went wrong.