From faa5ce8549f4c6653329dd625aba8024df513ebb Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Wed, 2 Jul 2025 14:32:50 -0500 Subject: [PATCH] Pin crate `log` to 0.4.6 The `reqwest` crate says it can accept `log` version 0.4.5, but it uses an item (a fn, probably) that doesn't exist until 0.4.6. --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index febccc4..73b4a7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,12 @@ reqwest = { version = "0.11.13", features = ["json", "stream", "multipart"] } serde = { version = "1.0.152", features = ["derive"] } tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } +# Grand-dependency Pins ---- +# Fixes: Reqwest uses too-old version of crate `log` +log = "0.4.6" + +# End Grand-dependency Pins ---- + # Packages available in Debian (Sid) # clap = "4.5.23" # reqwest = "0.12.15"