Skip to content

Commit

Permalink
Make zenity related deps optional
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyMeilex committed Aug 30, 2023
1 parent 95cb9f6 commit 3902635
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ documentation = "https://docs.rs/rfd"
default = ["gtk3"]
file-handle-inner = []
gtk3 = ["gtk-sys", "glib-sys", "gobject-sys"]
xdg-portal = ["ashpd", "urlencoding", "pollster"]
xdg-portal = ["ashpd", "urlencoding", "pollster", "async-io", "futures-util"]
common-controls-v6 = ["windows-sys/Win32_UI_Controls"]

[dev-dependencies]
Expand Down Expand Up @@ -42,8 +42,8 @@ windows-sys = { version = "0.48", features = [

[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
# Make sure that this is in sync with zbus, to avoid duplicated deps
async-io = "1.3"
futures-util = { version = "0.3", default-features = false, features = ["io"] }
async-io = { version = "1.3", optional = true }
futures-util = { version = "0.3", optional = true, default-features = false, features = ["io"] }

# XDG Desktop Portal
ashpd = { version = "0.6", optional = true }
Expand Down

0 comments on commit 3902635

Please sign in to comment.