Unverified Commit 13c8cb8e authored by Cyril Plisko's avatar Cyril Plisko Committed by GitHub
Browse files

Fix compilation error (#3357)

Address #3356

## Motivation and Context
Solves compilation error mentioned in #3356 

## Description
Qualify access to `base64` module

## Testing
Trivial compilation changes has been done - `cargo build` succeeds with
this change, while it doesn't without it. Provided of course that
`aws_sdk_unstable` config is selected and `serde-serialize` feature is
enabled.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent d0d75df4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ mod serde_serialize {
            S: serde::Serializer,
        {
            if serializer.is_human_readable() {
                serializer.serialize_str(&base64::encode(&self.inner))
                serializer.serialize_str(&crate::base64::encode(&self.inner))
            } else {
                serializer.serialize_bytes(&self.inner)
            }