From 4ae7f49555583b0d02fe73354e79243980545b60 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Sun, 29 Dec 2019 09:22:57 -0800 Subject: Update lazy_static crate to 1.4.0 This change updates the lazy_static crate version to 1.4.0. Import subrepo lazy-static/:lazy-static at 421669662b35fcb455f2902daed2e20bbbba79b6 --- lazy-static/tests/test.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lazy-static/tests/test.rs') diff --git a/lazy-static/tests/test.rs b/lazy-static/tests/test.rs index 654abc5..03d0ab6 100644 --- a/lazy-static/tests/test.rs +++ b/lazy-static/tests/test.rs @@ -133,9 +133,11 @@ fn item_name_shadowing() { } use std::sync::atomic::AtomicBool; +#[allow(deprecated)] use std::sync::atomic::ATOMIC_BOOL_INIT; use std::sync::atomic::Ordering::SeqCst; +#[allow(deprecated)] static PRE_INIT_FLAG: AtomicBool = ATOMIC_BOOL_INIT; lazy_static! { -- cgit v1.2.1