aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2024-05-08 08:57:37 +0400
committerIvan Molodetskikh <yalterz@gmail.com>2024-05-08 08:57:37 +0400
commit38e329aab91fbcb08a930c11279d79105cd449db (patch)
treed89d30d8f9022e1fe9538cd5801c3ab1a26886e2 /Cargo.toml
parent95a1a01fdc831dc305472511310b95c94fc4706c (diff)
downloadniri-38e329aab91fbcb08a930c11279d79105cd449db.tar.gz
niri-38e329aab91fbcb08a930c11279d79105cd449db.tar.bz2
niri-38e329aab91fbcb08a930c11279d79105cd449db.zip
Make async-channel non-optional
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e9f10219..dd03a2a5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,7 +43,7 @@ keywords = ["wayland", "compositor", "tiling", "smithay", "wm"]
[dependencies]
anyhow.workspace = true
arrayvec = "0.7.4"
-async-channel = { version = "2.2.0", optional = true }
+async-channel = "2.2.0"
async-io = { version = "1.13.0", optional = true }
bitflags.workspace = true
bytemuck = { version = "1.15.0", features = ["derive"] }
@@ -104,7 +104,7 @@ xshell = "0.2.5"
[features]
default = ["dbus", "systemd", "xdp-gnome-screencast"]
# Enables D-Bus support (serve various freedesktop and GNOME interfaces, power button handling).
-dbus = ["zbus", "async-channel", "async-io", "notify-rust", "url"]
+dbus = ["zbus", "async-io", "notify-rust", "url"]
# Enables systemd integration (global environment, apps in transient scopes).
systemd = ["dbus"]
# Enables screencasting support through xdg-desktop-portal-gnome.