From 24898c61af4fdca032137c6c4311ddbfb63759b5 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Thu, 21 Aug 2025 20:07:16 +0200 Subject: [PATCH] Sync dependency versions of crates This is done to allow merging all dependencies into workspace dependencies. --- Cargo.toml | 2 +- crates/printf/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ba7f4b1d3..754713c6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ pcre2 = { git = "https://github.com/fish-shell/rust-pcre2", tag = "0.2.9-utf32", bitflags = "2.5.0" errno = "0.3.0" -libc = "0.2" +libc = "0.2.155" # lru pulls in hashbrown by default, which uses a faster (though less DoS resistant) hashing algo. # disabling default features uses the stdlib instead, but it doubles the time to rewrite the history # files as of 22 April 2024. diff --git a/crates/printf/Cargo.toml b/crates/printf/Cargo.toml index ddd12021f..9680196be 100644 --- a/crates/printf/Cargo.toml +++ b/crates/printf/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" [dependencies] libc = "0.2.155" -widestring = { version = "1.0.2", optional = true } +widestring = { version = "1.2.0", optional = true } unicode-segmentation = "1.12.0" unicode-width = "0.2.0"