58 lines
1.6 KiB
TOML
58 lines
1.6 KiB
TOML
[package]
|
|
name = "eww"
|
|
version = "0.6.0"
|
|
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
|
description = "Widgets for everyone!"
|
|
license = "MIT"
|
|
repository = "https://github.com/elkowar/eww"
|
|
homepage = "https://github.com/elkowar/eww"
|
|
edition = "2021"
|
|
|
|
|
|
[features]
|
|
default = ["x11", "wayland"]
|
|
x11 = ["gdkx11", "x11rb"]
|
|
wayland = ["gtk-layer-shell"]
|
|
|
|
[dependencies]
|
|
simplexpr.workspace = true
|
|
eww_shared_util.workspace = true
|
|
yuck.workspace = true
|
|
notifier_host.workspace = true
|
|
|
|
gtk = "0.18.1"
|
|
|
|
gtk-layer-shell = { version = "0.8.1", optional = true }
|
|
gdkx11 = { version = "0.18", optional = true }
|
|
x11rb = { version = "0.13.1", features = ["randr"], optional = true }
|
|
|
|
zbus = { version = "3.7.0", default-features = false, features = ["tokio"] }
|
|
ordered-stream = "0.2.0"
|
|
|
|
anyhow.workspace = true
|
|
bincode.workspace = true
|
|
chrono.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete.workspace = true
|
|
codespan-reporting.workspace = true
|
|
derive_more.workspace = true
|
|
extend.workspace = true
|
|
futures.workspace = true
|
|
grass = { workspace = true, default-features = false }
|
|
itertools.workspace = true
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
maplit.workspace = true
|
|
nix = { workspace = true, features = ["process", "fs", "signal"] }
|
|
notify.workspace = true
|
|
once_cell.workspace = true
|
|
pretty_env_logger.workspace = true
|
|
regex.workspace = true
|
|
serde_json.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
simple-signal.workspace = true
|
|
sysinfo = { workspace = true }
|
|
tokio-util.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|
|
unescape.workspace = true
|
|
wait-timeout.workspace = true
|