Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
remove unuse crate
Browse files Browse the repository at this point in the history
  • Loading branch information
guni1192 committed Apr 24, 2019
1 parent cd4a36d commit e2d8d9c
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 20 deletions.
12 changes: 0 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ clap = "2.32.0"
reqwest = "0.9.9"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
tar = "0.4"
flate2 = "1.0"
dirs = "1.0"
Expand Down
1 change: 0 additions & 1 deletion src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use reqwest;
use serde_json::{self, Value};
use tar::Archive;

#[derive(Serialize, Deserialize, Debug)]
pub struct Image {
pub name: String,
pub tag: String,
Expand Down
5 changes: 0 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#[macro_use]
extern crate serde_derive;
extern crate env_logger;
#[macro_use]
extern crate prettytable;
use std::process::exit;

use clap::{crate_name, crate_version, App, Arg, SubCommand};
Expand Down
2 changes: 1 addition & 1 deletion src/pids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::path::Path;
use clap::ArgMatches;
use dirs::home_dir;
use nix::unistd::Pid;
use prettytable::Table;
use prettytable::{cell, row, Table};

pub fn show(_sub_m: &ArgMatches) -> io::Result<()> {
// Create the table
Expand Down

0 comments on commit e2d8d9c

Please sign in to comment.