From eb7c85325a0685f6e1dba180a58b73656d567467 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 7 Feb 2020 11:23:52 +0100 Subject: [PATCH] Remove redundant imports --- src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6a85e6ac..9c447afd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,9 +19,7 @@ use std::{ fmt::{Display, Formatter, Result as FmtResult}, }; -use http::{self, Method}; -use serde_json; -use serde_urlencoded; +use http::Method; /// Generates a `ruma_api::Endpoint` from a concise definition. ///