Skip to content

Commit 9bbc29f

Browse files
committed
fix: rust code used for testing must be allowed dead code
1 parent 23650a9 commit 9bbc29f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

AwsCryptographicMaterialProviders/runtimes/rust/src/dafny_libraries.rs

+1
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(dead_code)]
78

89
#[allow(non_snake_case)]
910
pub mod DafnyLibraries {

StandardLibrary/runtimes/rust/src/dafny_libraries.rs

+1
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(dead_code)]
78

89
#[allow(non_snake_case)]
910
pub mod DafnyLibraries {

0 commit comments

Comments
 (0)