Skip to content

Commit

Permalink
Fix feature name for serde_with Uuid implementation (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbb authored Jan 22, 2024
1 parent 8247d27 commit 81a9895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uuid/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,8 @@ macro_rules! trait_impls {
}
}

#[cfg(all($feat, feature = "serde_with_3"))]
#[cfg_attr(docsrs, doc(cfg(all($feat, feature = "serde_with_3"))))]
#[cfg(all($feat, feature = "serde_with-3"))]
#[cfg_attr(docsrs, doc(cfg(all($feat, feature = "serde_with-3"))))]
impl serde_with_3::SerializeAs<$u> for crate::Uuid {
fn serialize_as<S>(source: &$u, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
Expand Down

0 comments on commit 81a9895

Please sign in to comment.