diff --git a/Cargo.toml b/Cargo.toml index b2e98c2..bed4082 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,6 @@ [workspace] members = [ - "crates/eww" + "crates/eww", + "crates/simplexpr", + "crates/yuck" ] diff --git a/crates/eww/Cargo.toml b/crates/eww/Cargo.toml index cbb85b4..910bfbe 100644 --- a/crates/eww/Cargo.toml +++ b/crates/eww/Cargo.toml @@ -41,7 +41,6 @@ serde_json = "1.0" extend = "1" grass = "0.10" num = "0.4" -roxmltree = "0.14" itertools = "0.10" debug_stub_derive = "0.3" log = "0.4" @@ -62,12 +61,14 @@ tokio-util = "0.6" sysinfo = "0.16.1" -nom = "6.1" dyn-clone = "1.0" base64 = "0.13" wait-timeout = "0.2" notify = "5.0.0-pre.7" +simplexpr = { path = "../simplexpr" } +yuck = { path = "../yuck" } + [dev-dependencies] pretty_assertions = "0.7.1" diff --git a/crates/yuck/Cargo.toml b/crates/yuck/Cargo.toml index 81f54f2..b5ab428 100644 --- a/crates/yuck/Cargo.toml +++ b/crates/yuck/Cargo.toml @@ -1,12 +1,10 @@ [package] -name = "eww_config" +name = "yuck" version = "0.1.0" authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] edition = "2018" - build = "build.rs" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] lalrpop-util = "0.19.5" @@ -27,7 +25,7 @@ strum = { version = "0.21", features = ["derive"] } anyhow = "1" -simplexpr = { path = "../../projects/simplexpr" } +simplexpr = { path = "../simplexpr" } [build-dependencies] lalrpop = "0.19.5"