From 953b9c6b92ca20973eed9a052dd0151cf65fd991 Mon Sep 17 00:00:00 2001 From: Matt Bilker Date: Tue, 19 Mar 2024 07:20:50 +0000 Subject: [PATCH] cargo: upgrade dependencies - Drop support for Rust 1.48 as Proxmox 8 uses Debian 12 as its base. --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 415c8eb..e1eb254 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,10 @@ edition = "2018" [lib] crate-type = ["cdylib"] -# `parking_lot` version 0.12 bumped their MSRV to 1.49, use 0.11 to stay compatible with 1.48. [dependencies] -ctor = "0.1.21" +ctor = "0.2.7" libc = "0.2.102" -parking_lot = "0.11.2" +parking_lot = "0.12.1" serde = { version = "1.0.130", features = ["derive"] } toml = "0.8.11"