Skip to content

Commit e27d6d6

Browse files
committed
m
1 parent 9a87e17 commit e27d6d6

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/library_rust_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ jobs:
114114
working-directory: ./${{ matrix.library }}/runtimes/rust/
115115
shell: bash
116116
run: |
117-
cargo run --example main
117+
cargo run --release --example main

DynamoDbEncryption/runtimes/rust/src/intercept.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#![deny(warnings, unconditional_panic)]
55
#![deny(nonstandard_style)]
66
#![deny(clippy::all)]
7+
#![allow(unused)]
78

89
use aws_sdk_dynamodb::{
910
config::{

DynamoDbEncryption/runtimes/rust/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub(crate) mod digest;
5555
pub(crate) mod ecdh;
5656
pub(crate) mod ecdsa;
5757
pub(crate) mod hmac;
58-
pub(crate) mod intercept;
58+
pub mod intercept;
5959
pub(crate) mod kms;
6060
pub(crate) mod local_cmc;
6161
pub(crate) mod random;

releases/rust/db_esdk/src/intercept.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#![deny(warnings, unconditional_panic)]
55
#![deny(nonstandard_style)]
66
#![deny(clippy::all)]
7+
#![allow(unused)]
78

89
use aws_sdk_dynamodb::{
910
config::{

releases/rust/db_esdk/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub(crate) mod digest;
5555
pub(crate) mod ecdh;
5656
pub(crate) mod ecdsa;
5757
pub(crate) mod hmac;
58-
pub(crate) mod intercept;
58+
pub mod intercept;
5959
pub(crate) mod kms;
6060
pub(crate) mod local_cmc;
6161
pub(crate) mod random;

0 commit comments

Comments
 (0)