Skip to content

Commit 05a5085

Browse files
committed
m
1 parent 66940ec commit 05a5085

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

DynamoDbEncryption/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
CORES=2
55

6+
TRANSPILE_TESTS_IN_RUST=1
7+
68
include ../SharedMakefile.mk
79

810
DIR_STRUCTURE_V2=V2
911

10-
TRANSPILE_TESTS_IN_RUST=1
11-
1212
PROJECT_SERVICES := \
1313
DynamoDbEncryption \
1414
DynamoDbItemEncryptor \

DynamoDbEncryption/runtimes/rust/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,5 @@ pem = "3.0.4"
3030
tokio = {version = "1.41.0", features = ["full"] }
3131
uuid = { version = "1.11.0", features = ["v4"] }
3232

33-
[lib]
34-
path = "src/implementation_from_dafny.rs"
35-
3633
[[example]]
37-
name = "main"
34+
name = "main"

DynamoDbEncryption/runtimes/rust/src/time.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ impl crate::Time::_default {
1818
}
1919

2020
#[allow(non_snake_case)]
21+
#[allow(dead_code)]
2122
pub fn CurrentRelativeTimeMilli() -> i64 {
2223
match SystemTime::now().duration_since(SystemTime::UNIX_EPOCH) {
2324
Ok(n) => n.as_millis() as i64,

0 commit comments

Comments
 (0)