Skip to content

Commit

Permalink
style(rust): fix warning: unused #[macro_use] import:
Browse files Browse the repository at this point in the history
This can be removed in Rust 1.30+ (https://stackoverflow.com/a/54954792/6739302). Accroding to package.json,Rust 1.38 is used.
  • Loading branch information
choznerol committed Nov 9, 2021
1 parent 1f5d70d commit f6a4a60
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions platform/rust/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;

#[macro_use]
extern crate lazy_static;

extern crate fast_chemail;

use lazy_static::lazy_static;
Expand Down
4 changes: 0 additions & 4 deletions platform/rust/src/lib.tmpl.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;

#[macro_use]
extern crate lazy_static;

extern crate fast_chemail;

use lazy_static::lazy_static;
Expand Down

0 comments on commit f6a4a60

Please sign in to comment.