Skip to content

Commit

Permalink
fix: disable async-std default dependency in rfd dependency when usin…
Browse files Browse the repository at this point in the history
…g tokio
  • Loading branch information
netraptor authored Jan 16, 2025
1 parent 4a97b3d commit b244970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ serde-keycode = ["iced_core/serde"]
# Prevents multiple separate process instances.
single-instance = ["dep:zbus", "ron"]
# smol async runtime
smol = ["dep:smol", "iced/smol", "zbus?/async-io"]
smol = ["dep:smol", "iced/smol", "zbus?/async-io", "rfd?/async-std"]
tokio = [
"dep:tokio",
"ashpd?/tokio",
Expand Down Expand Up @@ -104,7 +104,7 @@ libc = { version = "0.2.155", optional = true }
license = { version = "3.5.1", optional = true }
mime = { version = "0.3.17", optional = true }
palette = "0.7.3"
rfd = { version = "0.14.0", optional = true }
rfd = { version = "0.14.0", default-features = false, features = ["xdg-portal"], optional = true }
rustix = { version = "0.38.34", features = [
"pipe",
"process",
Expand Down

0 comments on commit b244970

Please sign in to comment.