From e810f2a67a1fd6cf3fa54205d77c1712ee9e99f1 Mon Sep 17 00:00:00 2001 From: elkowar <5300871+elkowar@users.noreply.github.com> Date: Mon, 9 May 2022 18:58:55 +0200 Subject: [PATCH] Add version to workspace dependencies --- crates/eww/Cargo.toml | 6 +++--- crates/simplexpr/Cargo.toml | 2 +- crates/yuck/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/eww/Cargo.toml b/crates/eww/Cargo.toml index a47d737..0388f5c 100644 --- a/crates/eww/Cargo.toml +++ b/crates/eww/Cargo.toml @@ -67,6 +67,6 @@ notify = "5.0.0-pre.7" codespan-reporting = "0.11" -simplexpr = { path = "../simplexpr" } -eww_shared_util = { path = "../eww_shared_util" } -yuck = { path = "../yuck", default-features = false} +simplexpr = { version = "0.1.0", path = "../simplexpr" } +eww_shared_util = { version = "0.1.0", path = "../eww_shared_util" } +yuck = { version = "0.1.0", path = "../yuck", default-features = false} diff --git a/crates/simplexpr/Cargo.toml b/crates/simplexpr/Cargo.toml index c88e503..acee3b3 100644 --- a/crates/simplexpr/Cargo.toml +++ b/crates/simplexpr/Cargo.toml @@ -24,7 +24,7 @@ levenshtein = "1.0" strum = { version = "0.21", features = ["derive"] } -eww_shared_util = { path = "../eww_shared_util" } +eww_shared_util = { version = "0.1.0", path = "../eww_shared_util" } [build-dependencies] diff --git a/crates/yuck/Cargo.toml b/crates/yuck/Cargo.toml index b95f7e2..c445a73 100644 --- a/crates/yuck/Cargo.toml +++ b/crates/yuck/Cargo.toml @@ -33,8 +33,8 @@ strum = { version = "0.21", features = ["derive"] } anyhow = "1" static_assertions = "1.1" -simplexpr = { path = "../simplexpr" } -eww_shared_util = { path = "../eww_shared_util" } +simplexpr = { version = "0.1.0", path = "../simplexpr" } +eww_shared_util = { version = "0.1.0", path = "../eww_shared_util" } [build-dependencies]