Skip to content

Commit

Permalink
Auto merge of #6527 - dwijnand:derive-Clone-for-TomlDependency, r=ehuss
Browse files Browse the repository at this point in the history
Derive Clone for TomlDependency

Fixes #6526
  • Loading branch information
bors committed Jan 7, 2019
2 parents a62e36b + 1a97950 commit 64f0db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/util/toml/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ type TomlExampleTarget = TomlTarget;
type TomlTestTarget = TomlTarget;
type TomlBenchTarget = TomlTarget;

#[derive(Serialize, Debug)]
#[derive(Clone, Debug, Serialize)]
#[serde(untagged)]
pub enum TomlDependency {
Simple(String),
Expand Down

0 comments on commit 64f0db3

Please sign in to comment.