2021-07-21 20:15:01 +03:00
|
|
|
[workspace]
|
2022-07-25 12:28:02 +03:00
|
|
|
members = ["crates/*"]
|
2023-07-29 15:57:01 +03:00
|
|
|
resolver = "2"
|
|
|
|
|
2024-02-17 16:12:48 +03:00
|
|
|
[workspace.dependencies]
|
|
|
|
|
|
|
|
simplexpr = { version = "0.1.0", path = "crates/simplexpr" }
|
|
|
|
eww_shared_util = { version = "0.1.0", path = "crates/eww_shared_util" }
|
2024-08-01 21:08:15 +03:00
|
|
|
yuck = { version = "0.1.0", path = "crates/yuck", default-features = false }
|
2024-03-30 12:55:01 +03:00
|
|
|
notifier_host = { version = "0.1.0", path = "crates/notifier_host" }
|
2024-02-17 16:12:48 +03:00
|
|
|
|
2024-08-01 21:08:15 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-02-17 16:12:48 +03:00
|
|
|
bincode = "1.3.3"
|
2024-08-01 21:08:15 +03:00
|
|
|
cached = "0.53.1"
|
|
|
|
chrono = "0.4.38"
|
2024-09-26 20:22:24 +03:00
|
|
|
chrono-tz = "0.10.0"
|
2024-08-01 21:08:15 +03:00
|
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
|
|
clap_complete = "4.5.12"
|
2024-02-17 16:12:48 +03:00
|
|
|
codespan-reporting = "0.11"
|
2024-08-08 12:12:22 +03:00
|
|
|
derive_more = { version = "1", features = [
|
|
|
|
"as_ref",
|
|
|
|
"debug",
|
|
|
|
"display",
|
|
|
|
"from",
|
|
|
|
"from_str",
|
|
|
|
] }
|
2024-02-17 16:12:48 +03:00
|
|
|
extend = "1.2"
|
2024-08-01 21:08:15 +03:00
|
|
|
futures = "0.3.30"
|
2024-08-05 17:25:49 +03:00
|
|
|
grass = "0.13.4"
|
2024-08-01 21:36:54 +03:00
|
|
|
gtk = "0.18.1"
|
2024-02-17 16:12:48 +03:00
|
|
|
insta = "1.7"
|
2024-08-01 21:29:55 +03:00
|
|
|
itertools = "0.13.0"
|
2024-08-01 21:08:15 +03:00
|
|
|
jaq-core = "1.5.1"
|
|
|
|
jaq-parse = "1.0.3"
|
|
|
|
jaq-std = "1.6.0"
|
|
|
|
jaq-interpret = "1.5.0"
|
|
|
|
jaq-syn = "1.6.0"
|
2024-09-26 20:22:24 +03:00
|
|
|
lalrpop = { version = "0.21", features = ["unicode"] }
|
|
|
|
lalrpop-util = { version = "0.21", features = ["unicode"] }
|
2024-02-17 16:12:48 +03:00
|
|
|
libc = "0.2"
|
|
|
|
log = "0.4"
|
|
|
|
maplit = "1"
|
2024-08-01 21:08:15 +03:00
|
|
|
nix = "0.29.0"
|
2024-02-17 16:26:44 +03:00
|
|
|
notify = "6.1.1"
|
|
|
|
once_cell = "1.19"
|
|
|
|
pretty_assertions = "1.4.0"
|
|
|
|
pretty_env_logger = "0.5.0"
|
2024-02-17 16:12:48 +03:00
|
|
|
ref-cast = "1.0.22"
|
2024-08-01 21:08:15 +03:00
|
|
|
regex = "1.10.5"
|
2024-02-17 16:12:48 +03:00
|
|
|
serde_json = "1.0"
|
2024-08-01 21:08:15 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-02-17 16:12:48 +03:00
|
|
|
simple-signal = "1.1"
|
2024-02-17 16:26:44 +03:00
|
|
|
smart-default = "0.7.1"
|
|
|
|
static_assertions = "1.1.0"
|
|
|
|
strsim = "0.11"
|
|
|
|
strum = { version = "0.26", features = ["derive"] }
|
2024-08-01 21:08:15 +03:00
|
|
|
sysinfo = "0.31.2"
|
2024-02-17 16:12:48 +03:00
|
|
|
thiserror = "1.0"
|
2024-08-01 21:08:15 +03:00
|
|
|
tokio-util = "0.7.11"
|
|
|
|
tokio = { version = "1.39.2", features = ["full"] }
|
2024-02-17 16:12:48 +03:00
|
|
|
unescape = "0.1"
|
|
|
|
wait-timeout = "0.2"
|
2024-09-26 20:22:24 +03:00
|
|
|
zbus = { version = "3.15.2", default-features = false, features = ["tokio"] }
|
2024-02-17 16:12:48 +03:00
|
|
|
|
2021-07-29 16:30:00 +03:00
|
|
|
[profile.dev]
|
|
|
|
split-debuginfo = "unpacked"
|