From fbdd321afe63e728c7dcaa8994df9184b5b7758d Mon Sep 17 00:00:00 2001 From: mio Date: Mon, 18 Oct 2021 21:44:10 +0200 Subject: [PATCH] Remove useless import --- bindings/rust/build.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 77225768..9900870d 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -1,9 +1,7 @@ use bytes::Buf; use flate2::read::GzDecoder; use reqwest::header::USER_AGENT; -use std::fmt::format; -use std::path::{Path, PathBuf}; -use std::result::Result; +use std::path::PathBuf; use std::{env, process::Command}; use tar::Archive;