diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-05-08 08:57:37 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-05-08 08:57:37 +0400 |
| commit | 38e329aab91fbcb08a930c11279d79105cd449db (patch) | |
| tree | d89d30d8f9022e1fe9538cd5801c3ab1a26886e2 /Cargo.toml | |
| parent | 95a1a01fdc831dc305472511310b95c94fc4706c (diff) | |
| download | niri-38e329aab91fbcb08a930c11279d79105cd449db.tar.gz niri-38e329aab91fbcb08a930c11279d79105cd449db.tar.bz2 niri-38e329aab91fbcb08a930c11279d79105cd449db.zip | |
Make async-channel non-optional
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |
