From 2a279e62e479863fd0de9afe068ea96b0635c1ff Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Sun, 18 Feb 2024 01:35:43 +0100 Subject: [PATCH] Require json feature of reqwest in prelude --- youmubot-prelude/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youmubot-prelude/Cargo.toml b/youmubot-prelude/Cargo.toml index bfb85b8..e970398 100644 --- a/youmubot-prelude/Cargo.toml +++ b/youmubot-prelude/Cargo.toml @@ -13,7 +13,7 @@ futures-util = "0.3.21" tokio = { version = "1.19.2", features = ["time"] } youmubot-db = { path = "../youmubot-db" } youmubot-db-sql = { path = "../youmubot-db-sql" } -reqwest = "0.11.10" +reqwest = { version = "0.11.10", features = ["json"] } chrono = "0.4.19" flume = "0.10.13" dashmap = "5.3.4"