From d73a04909118ca15acb68688128b2942858954d5 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 30 Jul 2024 14:19:23 +0200 Subject: [PATCH] fix: add missing tokio feature --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7039a352..c20563a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ serde_json = "1.0.120" reqwest = { version = "0.12.5", default-features = false, features = [ "multipart", ] } -tokio = { version = "1.39.1", features = ["rt", "macros", "rt-multi-thread"] } +tokio = { version = "1.39.1", features = ["rt", "macros", "rt-multi-thread", "process"] } itertools = "0.13.0" content_inspector = "0.2.4" serde_with = "3.9.0"