Skip to content

Commit

Permalink
serde::Serialize -> serde_derive::Serialize
Browse files Browse the repository at this point in the history
serde:: doesn't work on tests on CI
  • Loading branch information
arturoc committed Apr 19, 2022
1 parent 8a5eb88 commit 44c7063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -1812,7 +1812,7 @@ mod tests {
}

bitflags! {
#[derive(serde::Serialize, serde::Deserialize)]
#[derive(serde_derive::Serialize, serde_derive::Deserialize)]
struct SerdeFlags: u32 {
const A = 1;
const B = 2;
Expand Down

0 comments on commit 44c7063

Please sign in to comment.