Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.

Commit d790e30

Browse files
committed
Make clippy and rustfmt happy
1 parent cad5c3a commit d790e30

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

examples/cli.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
extern crate failure;
2-
#[macro_use]
32
extern crate structopt;
43
#[macro_use]
54
extern crate serde_derive;
65
#[macro_use]
76
extern crate convey;
87

9-
use structopt::StructOpt;
108
use convey::{
119
components::{newline, text},
1210
human, json,
1311
};
12+
use structopt::StructOpt;
1413

1514
/// Demo stuff
1615
#[derive(StructOpt)]

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@
1414
1515
#![warn(missing_docs)]
1616

17+
extern crate crossbeam_channel;
1718
extern crate failure;
18-
#[macro_use]
1919
extern crate failure_derive;
20-
extern crate crossbeam_channel;
2120
extern crate serde;
2221
extern crate termcolor;
2322
#[macro_use]

0 commit comments

Comments
 (0)