diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-02-05 01:11:08 +0900 |
|---|---|---|
| committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-02-05 09:48:21 +0900 |
| commit | 212533afbe352e74c6c8bb64c2d8b526cfa15350 (patch) | |
| tree | b41c31fc46108feea5f7308e93db072da1a97447 | |
| parent | 5d9eed4191c3edae4704737a95706dcf714334f8 (diff) | |
| download | rust-212533afbe352e74c6c8bb64c2d8b526cfa15350.tar.gz rust-212533afbe352e74c6c8bb64c2d8b526cfa15350.zip | |
Remove macro_use
| -rw-r--r-- | src/tools/build-manifest/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index 5e8559725f1..9d88ac8dd04 100644 --- a/src/tools/build-manifest/src/main.rs +++ b/src/tools/build-manifest/src/main.rs @@ -1,8 +1,7 @@ #![deny(rust_2018_idioms)] use toml; -#[macro_use] -extern crate serde_derive; +use serde_derive::Serialize; use std::collections::BTreeMap; use std::env; |
