From 06280e225e318cc5890df1f9b3eae9305f5b0aad Mon Sep 17 00:00:00 2001 From: losfair Date: Mon, 3 Jun 2019 22:42:45 +0800 Subject: [PATCH] Fix unused_imports error on lazy_static. --- lib/runtime-core/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/runtime-core/src/lib.rs b/lib/runtime-core/src/lib.rs index 026b76eeb..662f5c970 100644 --- a/lib/runtime-core/src/lib.rs +++ b/lib/runtime-core/src/lib.rs @@ -8,6 +8,7 @@ extern crate field_offset; #[macro_use] extern crate serde_derive; +#[allow(unused_imports)] #[macro_use] extern crate lazy_static;