From b5073213afeecee4b29d7fcd5d3f1fa30cfd9a7a Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 24 Oct 2020 19:13:10 -0300 Subject: [PATCH 1/2] Update parking lot to 0.11 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7af8b13..deacc35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" keywords = ["seqlock", "rwlock", "thread"] [dependencies] -parking_lot = "0.2" +parking_lot = "0.11" [features] nightly = ["parking_lot/nightly"] From 408c861689bbff36ec92e91a1a68ff9f18b612cf Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sat, 24 Oct 2020 22:23:14 -0300 Subject: [PATCH 2/2] Bump travis CI minimum rust version to 1.36.0 See https://github.com/Amanieu/seqlock/pull/1#issuecomment-322674372 and https://github.com/Amanieu/seqlock/pull/5#issuecomment-716073810 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 037bd62..b98149e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: rust sudo: false rust: -- 1.9.0 +- 1.36.0 - stable - beta - nightly