From 2c694ac57ca09a472877071533e20053f0ca9996 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 25 Jul 2023 14:49:23 +0200 Subject: [PATCH] featle-sync: Add missing tokio feature Without `rt`, rustc cannot find `tokio::task::JoinHandle` and `tokio::spawn`. --- feattle-sync/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feattle-sync/Cargo.toml b/feattle-sync/Cargo.toml index 283bda6..a2811be 100644 --- a/feattle-sync/Cargo.toml +++ b/feattle-sync/Cargo.toml @@ -24,7 +24,7 @@ rusoto_s3 = { version = "0.48.0", optional = true } serde = { version = "1.0.115", features = ["derive"] } serde_json = "1.0.57" thiserror = "1.0.20" -tokio = { version = "1.4.0", features = ["time", "fs", "io-util"] } +tokio = { version = "1.4.0", features = ["time", "fs", "io-util", "rt"] } [dev-dependencies] chrono = { version = "0.4.15", features = ["serde"] }