From 5ce9bf3fa3e9715d2c7da4f9c4730f51b9fc0fe3 Mon Sep 17 00:00:00 2001 From: ice_iix Date: Sat, 27 Oct 2018 17:21:57 -0700 Subject: [PATCH] Update to lazy_static 1.1.0 in blocks/Cargo.toml https://github.com/iceiix/steven/issues/4 --- Cargo.lock | 8 +------- blocks/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b88df7c..dcecc19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -510,11 +510,6 @@ name = "khronos_api" version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "lazy_static" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "lazy_static" version = "0.2.11" @@ -1289,7 +1284,7 @@ version = "0.0.1" dependencies = [ "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "collision 0.5.1 (git+https://github.com/TheUnnamedDude/collision-rs?rev=f80825e)", - "lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "steven_shared 0.0.1", ] @@ -1757,7 +1752,6 @@ dependencies = [ "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum khronos_api 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d5a08e2a31d665af8f1ca437eab6d00a93c9d62a549f73f9ed8fc2e55b5a91a7" "checksum khronos_api 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "037ab472c33f67b5fbd3e9163a2645319e5356fcd355efa6d4eb7fff4bbcb554" -"checksum lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "cf186d1a8aa5f5bee5fd662bc9c1b949e0259e1bcc379d1f006847b0080c7417" "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" "checksum lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca488b89a5657b0a2ecd45b95609b3e848cf1755da332a0da46e2b2b1cb371a7" "checksum lazycell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddba4c30a78328befecec92fc94970e53b3ae385827d28620f0f5bb2493081e0" diff --git a/blocks/Cargo.toml b/blocks/Cargo.toml index 9a82d68..c67d6d9 100644 --- a/blocks/Cargo.toml +++ b/blocks/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" authors = [ "Thinkofdeath " ] [dependencies] -lazy_static = "0.1.15" +lazy_static = "1.1.0" cgmath = "0.7.0" collision = {git = "https://github.com/TheUnnamedDude/collision-rs", rev = "f80825e"}