Skip to content

Commit

Permalink
remove deprecated derive(Show)
Browse files Browse the repository at this point in the history
`derive(Show)` has been deprecated for a while. This is the only regression detected by crater. See also [the pull request that will break this crate](rust-lang/rust#29148 (comment))
  • Loading branch information
oli-obk committed Oct 20, 2015
1 parent c0aab8f commit cde2836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub struct IdsContainer<T> {
next_id: u32
}

#[derive(Copy, Clone, Show, PartialEq, Eq, Hash)]
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub struct Id {
value: u32,
}
Expand Down

0 comments on commit cde2836

Please sign in to comment.