mirror of https://github.com/helix-editor/helix
use workspace inheritance for common version (#8925)
parent
44c3d48a94
commit
bf7c4e1659
@ -1,14 +1,14 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "helix-parsec"
|
name = "helix-parsec"
|
||||||
version = "0.6.0"
|
description = "Parser combinators for Helix"
|
||||||
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
include = ["src/**/*", "README.md"]
|
||||||
|
version.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
description = "Parser combinators for Helix"
|
categories.workspace = true
|
||||||
categories = ["editor"]
|
repository.workspace = true
|
||||||
repository = "https://github.com/helix-editor/helix"
|
homepage.workspace = true
|
||||||
homepage = "https://helix-editor.com"
|
|
||||||
include = ["src/**/*", "README.md"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -1,13 +1,19 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "xtask"
|
name = "xtask"
|
||||||
version = "0.6.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
authors.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
rust-version.workspace = true
|
||||||
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
helix-term = { version = "0.6", path = "../helix-term" }
|
helix-term = { path = "../helix-term" }
|
||||||
helix-core = { version = "0.6", path = "../helix-core" }
|
helix-core = { path = "../helix-core" }
|
||||||
helix-view = { version = "0.6", path = "../helix-view" }
|
helix-view = { path = "../helix-view" }
|
||||||
helix-loader = { version = "0.6", path = "../helix-loader" }
|
helix-loader = { path = "../helix-loader" }
|
||||||
toml = "0.7"
|
toml = "0.7"
|
||||||
|
Loading…
Reference in New Issue