Skip to content

Commit

Permalink
Change rfd features to enable manual builds on Linux.
Browse files Browse the repository at this point in the history
rfd wasn't building on Linux, since its default features appear to be
for Windows. This commit changes them to work on Linux. TODO test on
Windows.
  • Loading branch information
benjamin051000 committed Jan 3, 2025
1 parent ecead36 commit 1bee908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ nalgebra = "0.33.0"
once_cell = "1.19.0"
rand = "0.8.5"
reqwest = { version = "0.12.7", features = ["blocking", "json"] }
rfd = "0.15.0"
rfd = { version = "0.15.1", default-features = false, features = ["tokio"] }
semver = "1.0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 1bee908

Please sign in to comment.