Skip to content

Commit

Permalink
FIX
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-k-cameron committed Apr 28, 2023
1 parent 33db0d1 commit 3fe6e92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust-runtime/aws-smithy-types/src/blob.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ use impl_serde::*;
#[cfg(aws_sdk_unstable)]
mod impl_serde {
#[cfg(any(feature = "serde-deserialize", feature = "serde-serialize"))]
pub use crate::base64;
pub(crate) use crate::base64;
#[cfg(feature = "serde-serialize")]
pub use serde::Serialize;
pub(crate) use serde::Serialize;
#[cfg(feature = "serde-deserialize")]
pub use serde::{de::Visitor, Deserialize};
pub(crate) use serde::{de::Visitor, Deserialize};
}

/// Binary Blob Type
Expand Down

0 comments on commit 3fe6e92

Please sign in to comment.