You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-once_cell/0001-Loosen-parking_lot-dep...

30 lines
855 B

From 32cd3651571477dd263f454da19123a0db89ceab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Stan=C4=9Bk?= <jstanek@redhat.com>
Date: Thu, 7 Feb 2019 17:00:34 +0100
Subject: [PATCH] Loosen parking_lot dependency constraints
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Jan Staněk <jstanek@redhat.com>
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index b26e4ce..4d44080 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,7 +23,7 @@ categories = ["rust-patterns", "memory-management"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/matklad/once_cell"
[dependencies.parking_lot]
-version = "0.7.1"
+version = ">=0.6.4,<0.8.0"
optional = true
default_features = false
[dev-dependencies.crossbeam-utils]
--
2.20.1