Skip to content

Commit 9eb3d55

Browse files
Fixes,
error: unused import: `crate::base64` --> /home/build/workspace/smithy-rs/aws/sdk/build/aws-sdk/sdk/aws-smithy-types/src/blob.rs:11:5 | 11 | use crate::base64; | ^^^^^^^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings`
1 parent d3980eb commit 9eb3d55

File tree

1 file changed

+1
-2
lines changed
  • rust-runtime/aws-smithy-types/src

1 file changed

+1
-2
lines changed

rust-runtime/aws-smithy-types/src/blob.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
use serde::Serialize;
88
#[cfg(all(aws_sdk_unstable, feature = "serde-deserialize"))]
99
use serde::{de::Visitor, Deserialize};
10-
10+
#[cfg(all(aws_sdk_unstable, any(feature = "serde-deserialize", feature = "serde-serialize")))]
1111
use crate::base64;
12-
1312
/// Binary Blob Type
1413
///
1514
/// Blobs represent protocol-agnostic binary content.

0 commit comments

Comments
 (0)