Skip to content

Commit

Permalink
improved formatting for bonus points
Browse files Browse the repository at this point in the history
  • Loading branch information
llogiq committed Feb 21, 2017
1 parent 271eff0 commit 1e50878
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cargo/util/toml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,8 @@ impl TomlManifest {
let exclude = project.exclude.clone().unwrap_or(Vec::new());
let include = project.include.clone().unwrap_or(Vec::new());

let summary = Summary::new(pkgid, deps, self.features.clone() .unwrap_or_else(HashMap::new))?;
let summary = Summary::new(pkgid, deps, self.features.clone()
.unwrap_or_else(HashMap::new))?;
let metadata = ManifestMetadata {
description: project.description.clone(),
homepage: project.homepage.clone(),
Expand Down

0 comments on commit 1e50878

Please sign in to comment.