1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: accept newer minor versions of crate terminal_size
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2025-09-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -30,7 +30,7 @@
heck = ">= 0.4.0, <= 0.5" # common case conversions - could be internal but simple crate with no dependencies
dirs = "6.0.0" # cross-platform XDG_CONFIG_HOME - could be internal since only this path
fastrand = "2.1.1" # fast random number generator for masking serials
-terminal_size = "0.2.5" # terminal size for automatic column width during display
+terminal_size = ">= 0.2.5, <= 0.4" # terminal size for automatic column width during display
strum = "0.26" # enum to string conversion
strum_macros = "0.26" # enum to string conversion
regex = { version = "1.10.5", optional = true } # icon name lookup with regex
|