diff options
author | Skyler Hawthorne | 2023-12-05 01:54:18 +0000 |
---|---|---|
committer | GitHub | 2023-12-05 01:54:18 +0000 |
commit | bf7c4e165946f7a5be48c9d7e8abb8e68f066882 (patch) | |
tree | 2e5660f2562e0b6f424af4792348e7c3546e86ab /xtask | |
parent | 44c3d48a941c5e2d6484c808c9066b91cfbcf0ec (diff) |
use workspace inheritance for common version (#8925)
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/Cargo.toml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index ed118294..0a61536f 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,13 +1,19 @@ [package] name = "xtask" -version = "0.6.0" -edition = "2021" +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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -helix-term = { version = "0.6", path = "../helix-term" } -helix-core = { version = "0.6", path = "../helix-core" } -helix-view = { version = "0.6", path = "../helix-view" } -helix-loader = { version = "0.6", path = "../helix-loader" } +helix-term = { path = "../helix-term" } +helix-core = { path = "../helix-core" } +helix-view = { path = "../helix-view" } +helix-loader = { path = "../helix-loader" } toml = "0.7" |