Skip to content

Commit 429953d

Browse files
committed
chore: add example for when async is fixed
1 parent fe03425 commit 429953d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

DynamoDbEncryption/runtimes/rust/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ uuid = { version = "1.11.0", features = ["v4"] }
3333

3434
[[example]]
3535
name = "main"
36+
37+
[features]
38+
async-fixed = []

DynamoDbEncryption/runtimes/rust/examples/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ pub mod multi_get_put_example;
1515
pub mod searchableencryption;
1616
pub mod test_utils;
1717

18+
#[cfg(feature = "async-fixed")]
19+
pub mod basic_async;
20+
1821
use std::convert::From;
1922

2023
// Why two types?

DynamoDbEncryption/runtimes/rust/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ pub mod types;
8686
/// the DbEsdkInterceptor type for use with the aws_sdk_dynamodb interceptor
8787
pub mod intercept;
8888

89-
#[cfg(feature = "wrapped-client")]
90-
pub mod wrapped;
91-
9289
pub use client::Client;
9390
pub use types::dynamo_db_tables_encryption_config::DynamoDbTablesEncryptionConfig;
9491

0 commit comments

Comments
 (0)