Add version to workspace dependencies

This commit is contained in:
elkowar 2022-05-09 18:58:55 +02:00
parent 6f574e547a
commit e810f2a67a
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F
3 changed files with 6 additions and 6 deletions

View file

@ -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}

View file

@ -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]

View file

@ -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]