From 229fab3381c6b964b01d90df59dab626074553cf Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sat, 24 Jan 2026 20:48:33 -0600 Subject: [PATCH] fix: enable tokio feature in iced --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index f8c50af..cdb2db1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1503,6 +1503,7 @@ dependencies = [ "iced_core", "log", "rustc-hash 2.1.1", + "tokio", "wasm-bindgen-futures", "wasmtimer", ] diff --git a/Cargo.toml b/Cargo.toml index 6750e27..14fe584 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2024" [dependencies] -iced = { version = "0.14.0", features = ["image", "markdown", "highlighter"] } +iced = { version = "0.14.0", features = ["image", "markdown", "highlighter", "tokio"] } rfd = "0.17.1" tokio = { version ="1.49.0", features = ["fs"] } uuid = { version = "1.19.0", features = ["v4"] }