File tree Expand file tree Collapse file tree 5 files changed +5
-3
lines changed
DynamoDbEncryption/runtimes/rust/src
releases/rust/db_esdk/src Expand file tree Collapse file tree 5 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 44#![ deny( warnings, unconditional_panic) ]
55#![ deny( nonstandard_style) ]
66#![ deny( clippy:: all) ]
7+ #![ allow( unused) ]
78
89use aws_sdk_dynamodb:: {
910 config:: {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pub(crate) mod digest;
5555pub ( crate ) mod ecdh;
5656pub ( crate ) mod ecdsa;
5757pub ( crate ) mod hmac;
58- pub ( crate ) mod intercept;
58+ pub mod intercept;
5959pub ( crate ) mod kms;
6060pub ( crate ) mod local_cmc;
6161pub ( crate ) mod random;
Original file line number Diff line number Diff line change 44#![ deny( warnings, unconditional_panic) ]
55#![ deny( nonstandard_style) ]
66#![ deny( clippy:: all) ]
7+ #![ allow( unused) ]
78
89use aws_sdk_dynamodb:: {
910 config:: {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pub(crate) mod digest;
5555pub ( crate ) mod ecdh;
5656pub ( crate ) mod ecdsa;
5757pub ( crate ) mod hmac;
58- pub ( crate ) mod intercept;
58+ pub mod intercept;
5959pub ( crate ) mod kms;
6060pub ( crate ) mod local_cmc;
6161pub ( crate ) mod random;
You can’t perform that action at this time.
0 commit comments