From 15530cd57d8efd83fbc0869560f5021e013bc685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 2 Apr 2025 11:53:48 +0200 Subject: [PATCH] Enable `fs` feature for `tokio` in `todos` example --- examples/todos/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/todos/Cargo.toml b/examples/todos/Cargo.toml index 981b9e5f..fd3433e6 100644 --- a/examples/todos/Cargo.toml +++ b/examples/todos/Cargo.toml @@ -15,6 +15,7 @@ uuid = { version = "1.0", features = ["v4", "fast-rng", "serde"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio.workspace = true +tokio.features = ["fs", "time"] directories = "6.0" tracing-subscriber = "0.3"