From 40ab0df2ba86651a811607d6ffc9d5ccce9befe1 Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Mon, 11 Mar 2024 10:28:00 +0100 Subject: [PATCH] fix: use async-std as default Reverting default async runtime for rfd/ashpd/zbus since async-std is compatible with other runtimes and tokio isn't, additionally tokio requires manual setup to work. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c19d6772..aac34368 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ copypasta = { version = "0.10.0", default-features = false, features = ["wayland once_cell.workspace = true [features] -default = ["editor", "rfd-tokio"] +default = ["editor", "rfd-async-std"] # TODO: this is only winit and the editor serde, there are other dependencies that still depend on # serde serde = ["floem-winit/serde", "dep:serde"]