We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae4880 commit b91731eCopy full SHA for b91731e
src/command/mod.rs
@@ -5,6 +5,7 @@ mod init;
5
6
use self::init::init_prjfmt;
7
use std::path::PathBuf;
8
+use structopt::StructOpt;
9
10
use log::info;
11
src/lib.rs
@@ -2,18 +2,6 @@
2
3
#![deny(missing_docs)]
4
-extern crate anyhow;
-extern crate console;
-extern crate glob;
-
-#[macro_use]
-extern crate structopt;
-extern crate hex;
12
-extern crate log;
13
-extern crate serde;
14
-extern crate sha1;
15
-extern crate toml;
16
17
pub mod command;
18
pub mod customlog;
19
pub mod emoji;
@@ -24,6 +12,7 @@ use command::run_prjfmt_cli;
24
use formatters::tool::run_prjfmt;
25
use std::env;
26
use std::path::{Path, PathBuf};
27
28
use customlog::{CustomLogOutput, LogLevel};
29
use xshell::cmd;
0 commit comments