From 7dbb21d0b85b75035d541e4ab7f9b3ecc1a9fa25 Mon Sep 17 00:00:00 2001 From: Casper Meijn Date: Fri, 6 Dec 2024 14:14:45 +0100 Subject: [PATCH] build(deps): Increase minimum version of `log` to 0.4.8 The crate `log` requires a mimimum version of 0.4.8. This version is release over 5 years ago. I found this using `cargo minimal-versions check --all-features`, which fails to compile. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b46aa56dd..7e08ba4f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ bitflags = "2.4" bytemuck = { version = "1.13.0", optional = true } cursor-icon = "1.1.0" libc = "0.2.148" -log = "0.4" +log = "0.4.8" memmap2 = "0.9.0" rustix = { version = "0.38.15", features = ["fs", "pipe", "shm"] } thiserror = "1.0.30"