From af926291e0e0a7ea1e39582aeef06df396c5b6d2 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sun, 3 Mar 2019 09:52:06 +0100 Subject: [PATCH] avoid compiler warning --- src/tools.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools.rs b/src/tools.rs index 3a045427..1b89b45c 100644 --- a/src/tools.rs +++ b/src/tools.rs @@ -17,7 +17,7 @@ use std::time::Duration; use std::os::unix::io::RawFd; use std::os::unix::io::AsRawFd; -use serde_json::{json, Value}; +use serde_json::Value; pub mod timer; pub mod wrapped_reader_stream;