Skip to content

Commit

Permalink
serde tests fail in CI
Browse files Browse the repository at this point in the history
Cause Serialize and Deserialize derives are used from serde:: instead of serde_derive::
  • Loading branch information
arturoc committed Apr 19, 2022
1 parent 0bc11cb commit 5787e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -1789,7 +1789,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 5787e70

Please sign in to comment.