From 323dba04ed332b7c3f87f038290419f9bf47d2fe Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Thu, 17 Oct 2024 21:13:18 -0400 Subject: [PATCH] Cargo.toml: omit micro version number of dependencies Cargo automatically chooses the micro version of each dependency. Do not specify the micro version number as it is ignored. --- Cargo.toml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 264e415..97cd8e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,24 +5,24 @@ edition = "2018" license = "GPL-3.0-only" [dependencies] -fontconfig = "0.9.0" +fontconfig = "0.9" # Disable freetype-sys, as it vendors libfreetype2 while fontconfig dynamically # links to it. Large dependencies should not be duplicated. -freetype = { version = "0.7.2", default-features = false } -imgref = "1.10.1" -libc = "0.2.158" -memmap2 = "0.9.4" -polling = "3.7.3" -rgb = "0.8.50" -tokio = { version = "1.40.0", features = ["macros", "rt"] } -wayland-backend = "0.3.7" -wayland-client = "0.31.6" -wayland-protocols = { version = "0.32.4", features = ["client", "staging", "unstable"] } -wayland-protocols-wlr = { version = "0.3.4", features = ["client"] } -wayland-scanner = "0.31.5" -xkeysym = "0.2.1" -yaml-rust2 = "0.8.1" -zbus = { version = "4.4.0", default-features = false, features = ["tokio"] } +freetype = { version = "0.7", default-features = false } +imgref = "1.10" +libc = "0.2" +memmap2 = "0.9" +polling = "3.7" +rgb = "0.8" +tokio = { version = "1.40", features = ["macros", "rt"] } +wayland-backend = "0.3" +wayland-client = "0.31" +wayland-protocols = { version = "0.32", features = ["client", "staging", "unstable"] } +wayland-protocols-wlr = { version = "0.3", features = ["client"] } +wayland-scanner = "0.31" +xkeysym = "0.2" +yaml-rust2 = "0.8" +zbus = { version = "4.4", default-features = false, features = ["tokio"] } [build-dependencies] bindgen = "0.70.1"