From a89c5897ea282847777a68f046488d7e4ac48314 Mon Sep 17 00:00:00 2001 From: Matt Bilker Date: Wed, 25 May 2022 19:24:55 +0000 Subject: [PATCH] cargo: downgrade parking_lot to stay compatible with Rust 1.48 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a7727fe..1512ed0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +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" libc = "0.2.102" -parking_lot = "0.12.0" +parking_lot = "0.11.2" serde = { version = "1.0.130", features = ["derive"] } toml = "0.5.8"