1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: accept newer major version of crate simple_logger
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
@@ -25,7 +25,7 @@
serde_json = "1.0.87"
serde_with = ">= 2.0.1, <= 3"
log = "0.4.17"
-simple_logger = { version = "4.0.0", features = ["stderr"], optional = false } # perhaps make this optional in the future; only required by bin targets
+simple_logger = { version = ">= 4, <= 5", features = ["stderr"], optional = false } # perhaps make this optional in the future; only required by bin targets
usb-ids = { version = "1" } # USB ID database
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
|