Skip to content

Commit cde2836

Browse files
committed
remove deprecated derive(Show)
`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))
1 parent c0aab8f commit cde2836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub struct IdsContainer<T> {
55
next_id: u32
66
}
77

8-
#[derive(Copy, Clone, Show, PartialEq, Eq, Hash)]
8+
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
99
pub struct Id {
1010
value: u32,
1111
}

0 commit comments

Comments
 (0)