From 225e1fd75baccbbf78cf5f3539f2c34d0fd33d43 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Fri, 31 May 2019 16:21:10 -0700 Subject: [PATCH] upgrade db's parking_lot dependency too --- Cargo.lock | 2 +- db/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6ba5b6..ef6e943 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -899,7 +899,7 @@ dependencies = [ "mylog 0.1.0 (git+https://github.com/scottlamb/mylog)", "odds 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.10.23 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rusqlite 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/db/Cargo.toml b/db/Cargo.toml index 123d6ef..2bb6c53 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -25,7 +25,7 @@ lru-cache = "0.1" mylog = { git = "https://github.com/scottlamb/mylog" } odds = { version = "0.3.1", features = ["std-vec"] } openssl = "0.10" -parking_lot = { version = "0.7", features = [] } +parking_lot = { version = "0.8", features = [] } protobuf = "2.0" regex = "1.0" rusqlite = "0.18"