Skip to content

Commit

Permalink
Use derive feature of serde
Browse files Browse the repository at this point in the history
  • Loading branch information
h-michael committed Feb 5, 2019
1 parent 212533a commit 6904fac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tools/build-manifest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2018"

[dependencies]
toml = "0.4"
serde = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
2 changes: 1 addition & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![deny(rust_2018_idioms)]

use toml;
use serde_derive::Serialize;
use serde::Serialize;

use std::collections::BTreeMap;
use std::env;
Expand Down

0 comments on commit 6904fac

Please sign in to comment.