From 9b7dbe5f6e34b7e4ab59577a703ad8aaec4af4e7 Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Tue, 14 May 2019 21:17:07 -0600
Subject: [PATCH] 0.2.1 - remove warnings

---
 Cargo.lock     | 2 +-
 Cargo.toml     | 2 +-
 src/install.rs | 3 +--
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 29c0031..ee663b0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -658,7 +658,7 @@ dependencies = [
 
 [[package]]
 name = "redoxer"
-version = "0.1.2"
+version = "0.2.1"
 dependencies = [
  "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  "proc-mounts 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index dbf895b..23139b9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "redoxer"
-version = "0.2.0"
+version = "0.2.1"
 description = "Method for quickly running programs inside of Redox from a KVM capable OS."
 license = "MIT"
 authors = ["Jeremy Soller <jackpot51@gmail.com>"]
diff --git a/src/install.rs b/src/install.rs
index 0afbafc..9459b0e 100644
--- a/src/install.rs
+++ b/src/install.rs
@@ -1,7 +1,6 @@
 use std::{io, process};
-use std::process::Command;
 
-use crate::{installed, status_error, toolchain};
+use crate::toolchain;
 
 fn inner() -> io::Result<()> {
     let _toolchain_dir = toolchain()?;
-- 
GitLab