Replace lazy_static! with once_cell Lazy (#176)

Modern rust code bases prefer once_cell::sync::Lazy over the older
macro based lazy_static.
This commit is contained in:
Martin Algesten
2020-10-04 18:35:31 +02:00
committed by GitHub
parent b58a3a53b0
commit 0bf981031b
3 changed files with 10 additions and 14 deletions

View File

@@ -27,7 +27,7 @@ socks-proxy = ["socks"]
base64 = "0.13"
chunked_transfer = "1.2.0"
cookie = { version = "0.14", features = ["percent-encode"], optional = true}
lazy_static = "1"
once_cell = "1"
qstring = "0.7"
url = "2"
socks = { version = "0.3.2", optional = true }