Fix Cargo.toml files

This commit is contained in:
elkowar 2021-07-21 19:28:55 +02:00
parent bcf3f18a24
commit 4f2e9cf063
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F
3 changed files with 8 additions and 7 deletions

View file

@ -1,4 +1,6 @@
[workspace]
members = [
"crates/eww"
"crates/eww",
"crates/simplexpr",
"crates/yuck"
]

View file

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

View file

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