Remove a use of lazy_static! in cache.rs (#916)

There's not really much reason to amortize the cost of this mtime
calculation here since it's only done with debug assertions anyway, so
let's avoid an extra dependency and just have a function do it inline.
This commit is contained in:
Alex Crichton
2020-02-06 16:39:20 -06:00
committed by GitHub
parent de85efc2dd
commit 8a7d403fce
2 changed files with 12 additions and 29 deletions

View File

@@ -26,7 +26,6 @@ sha2 = "0.8.0"
base64 = "0.11.0"
serde = { version = "1.0.94", features = ["derive"] }
bincode = "1.1.4"
lazy_static = "1.3.0"
log = { version = "0.4.8", default-features = false }
zstd = "0.5"
toml = "0.5.5"
@@ -47,6 +46,7 @@ pretty_env_logger = "0.3.0"
rand = { version = "0.7.0", default-features = false, features = ["small_rng"] }
cranelift-codegen = { version = "0.56", features = ["enable-serde", "all-arch"] }
filetime = "0.2.7"
lazy_static = "1.3.0"
[badges]
maintenance = { status = "actively-developed" }