From 1bee90889cd23b878d3b5bd23a4a3203a96f1f3b Mon Sep 17 00:00:00 2001 From: Benjamin Wheeler Date: Fri, 3 Jan 2025 09:23:24 -0500 Subject: [PATCH] Change rfd features to enable manual builds on Linux. 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. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eaca0ef..e12ea9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"