Upgrade lazy_static to get rid of compile warning

This commit is contained in:
Magnus Hovland Hoff 2022-04-03 13:49:15 +02:00
parent 9f80ced3ec
commit 203a701517
2 changed files with 4 additions and 2 deletions

4
Cargo.lock generated
View file

@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3
[[package]] [[package]]
name = "aho-corasick" name = "aho-corasick"
version = "0.6.10" version = "0.6.10"
@ -1066,7 +1068,7 @@ dependencies = [
"futures-cpupool", "futures-cpupool",
"hyper", "hyper",
"indoc", "indoc",
"lazy_static 0.2.11", "lazy_static 1.4.0",
"libsqlite3-sys", "libsqlite3-sys",
"maplit", "maplit",
"matches", "matches",

View file

@ -29,7 +29,7 @@ diff = "0.1"
futures = "0.1" futures = "0.1"
futures-cpupool = "0.1" futures-cpupool = "0.1"
hyper = "0.11" hyper = "0.11"
lazy_static = "0.2" lazy_static = "1.4.0"
maplit = "1" maplit = "1"
percent-encoding = "1.0" percent-encoding = "1.0"
r2d2 = "0.8" r2d2 = "0.8"