Fix Cargo.toml files
This commit is contained in:
parent
bcf3f18a24
commit
4f2e9cf063
3 changed files with 8 additions and 7 deletions
|
|
@ -1,4 +1,6 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"crates/eww"
|
"crates/eww",
|
||||||
|
"crates/simplexpr",
|
||||||
|
"crates/yuck"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,6 @@ serde_json = "1.0"
|
||||||
extend = "1"
|
extend = "1"
|
||||||
grass = "0.10"
|
grass = "0.10"
|
||||||
num = "0.4"
|
num = "0.4"
|
||||||
roxmltree = "0.14"
|
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
debug_stub_derive = "0.3"
|
debug_stub_derive = "0.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
@ -62,12 +61,14 @@ tokio-util = "0.6"
|
||||||
|
|
||||||
sysinfo = "0.16.1"
|
sysinfo = "0.16.1"
|
||||||
|
|
||||||
nom = "6.1"
|
|
||||||
dyn-clone = "1.0"
|
dyn-clone = "1.0"
|
||||||
base64 = "0.13"
|
base64 = "0.13"
|
||||||
wait-timeout = "0.2"
|
wait-timeout = "0.2"
|
||||||
|
|
||||||
notify = "5.0.0-pre.7"
|
notify = "5.0.0-pre.7"
|
||||||
|
|
||||||
|
simplexpr = { path = "../simplexpr" }
|
||||||
|
yuck = { path = "../yuck" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pretty_assertions = "0.7.1"
|
pretty_assertions = "0.7.1"
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "eww_config"
|
name = "yuck"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
lalrpop-util = "0.19.5"
|
lalrpop-util = "0.19.5"
|
||||||
|
|
@ -27,7 +25,7 @@ strum = { version = "0.21", features = ["derive"] }
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|
||||||
|
|
||||||
simplexpr = { path = "../../projects/simplexpr" }
|
simplexpr = { path = "../simplexpr" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
lalrpop = "0.19.5"
|
lalrpop = "0.19.5"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue