From 9b893e474df32dd69d59e1b14509efd6bb3bb9f6 Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Mon, 21 Jul 2025 19:24:34 -0400 Subject: [PATCH] Cargo.toml: remove extra version constraint for imgref and polling The imgref and polling dependencies have an API that shouldn't break without a major version change. Rely solely on the major version number to tell Cargo which package to use. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7444004..f607ec0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,10 +11,10 @@ fontconfig = "0.9" # links to it. Large dependencies should not be duplicated. freetype = { version = "0.7", default-features = false } futures-util = "0.3" -imgref = "1.11" +imgref = "1" libc = "0.2" memmap2 = "0.9" -polling = "3.7" +polling = "3" reis = "0.4" rgb = "0.8" tokio = { version = "1", features = ["macros", "rt"] }