From 203a7015170a50bfe3d9f64182b92e96051db032 Mon Sep 17 00:00:00 2001 From: Magnus Hovland Hoff Date: Sun, 3 Apr 2022 13:49:15 +0200 Subject: [PATCH] Upgrade lazy_static to get rid of compile warning --- Cargo.lock | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6476b43..a65f020 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aho-corasick" version = "0.6.10" @@ -1066,7 +1068,7 @@ dependencies = [ "futures-cpupool", "hyper", "indoc", - "lazy_static 0.2.11", + "lazy_static 1.4.0", "libsqlite3-sys", "maplit", "matches", diff --git a/Cargo.toml b/Cargo.toml index d4df0b0..c37821c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ diff = "0.1" futures = "0.1" futures-cpupool = "0.1" hyper = "0.11" -lazy_static = "0.2" +lazy_static = "1.4.0" maplit = "1" percent-encoding = "1.0" r2d2 = "0.8"