rust: Upgrade MSRV and dependencies

Bump MSRV to 1.85.0 and upgrade all dependencies using 'cargo upgrade'
from cargo-edit. The bump to 1.85.0 is requiered to get at least openssl
version 0.10.79 including fixes for a couple security issues.

Link: https://crates.io/crates/cargo-edit
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Jan Höppner
2026-05-13 12:03:15 +02:00
parent 51d2c92067
commit d04ea8603d
13 changed files with 436 additions and 275 deletions
+5 -5
View File
@@ -16,13 +16,13 @@ readme = "README.md"
workspace = true
[dependencies]
libc = "0.2.169"
log = { version = "0.4.25", features = ["std", "release_max_level_debug"] }
thiserror = "2.0.11"
libc = "0.2.186"
log = { version = "0.4.29", features = ["std", "release_max_level_debug"] }
thiserror = "2.0.18"
zerocopy = {version = "0.8", features = ["derive"]}
serde = { version = "1.0.217", features = ["derive"]}
serde = { version = "1.0.228", features = ["derive"]}
byteorder = "1.5"
regex = "1.10"
regex = "1.12"
sha2 = "0.10.9"
[dev-dependencies]