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]