Skip to content

Commit 0b9e808

Browse files
committed
m
1 parent 01fdac4 commit 0b9e808

File tree

4 files changed

+56
-17
lines changed

4 files changed

+56
-17
lines changed

DynamoDbEncryption/runtimes/rust/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ readme = "README.md"
1616
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1717

1818
[dependencies]
19-
aws-config = "1.5.8"
20-
aws-lc-rs = "1.10.0"
21-
aws-lc-sys = "0.22.0"
22-
aws-sdk-dynamodb = "1.50.0"
23-
aws-sdk-kms = "1.47.0"
24-
aws-smithy-runtime-api = {version = "1.7.2", features = ["client"] }
25-
aws-smithy-types = "1.2.8"
19+
aws-config = "1.5.10"
20+
aws-lc-rs = "1.11.1"
21+
aws-lc-sys = "0.23.1"
22+
aws-sdk-dynamodb = "1.54.0"
23+
aws-sdk-kms = "1.50.0"
24+
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
25+
aws-smithy-types = "1.2.9"
2626
chrono = "0.4.38"
2727
dafny_runtime = { path = "../../../submodules/MaterialProviders/smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust"}
2828
dashmap = "6.1.0"
2929
pem = "3.0.4"
30-
tokio = {version = "1.41.0", features = ["full"] }
30+
tokio = {version = "1.41.1", features = ["full"] }
3131
uuid = { version = "1.11.0", features = ["v4"] }
3232

3333
[[example]]

TestVectors/runtimes/rust/.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
*.pem
2+
*.json
3+
Cargo.lock
4+
src/aes_gcm.rs
5+
src/aes_kdf_ctr.rs
6+
src/client
7+
src/client.rs
8+
src/concurrent_call.rs
9+
src/conversions
10+
src/conversions.rs
11+
src/dafny_libraries.rs
12+
src/ddb.rs
13+
src/deps
14+
src/deps.rs
15+
src/digest.rs
16+
src/ecdh.rs
17+
src/ecdsa.rs
18+
src/error
19+
src/error.rs
20+
src/hmac.rs
21+
src/implementation_from_dafny.rs
22+
src/kms.rs
23+
src/local_cmc.rs
24+
src/operation
25+
src/operation.rs
26+
src/random.rs
27+
src/rsa.rs
28+
src/sets.rs
29+
src/software_externs.rs
30+
src/standard_library_conversions.rs
31+
src/standard_library_externs.rs
32+
src/storm_tracker.rs
33+
src/time.rs
34+
src/types
35+
src/types.rs
36+
src/uuid.rs
37+
src/wrapped
38+
src/wrapped.rs
39+
target

TestVectors/runtimes/rust/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ rust-version = "1.80.0"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
aws-config = "1.5.8"
11-
aws-lc-rs = "1.10.0"
12-
aws-lc-sys = "0.22.0"
13-
aws-sdk-dynamodb = "1.50.0"
14-
aws-sdk-kms = "1.47.0"
15-
aws-smithy-runtime-api = {version = "1.7.2", features = ["client"] }
16-
aws-smithy-types = "1.2.8"
10+
aws-config = "1.5.10"
11+
aws-lc-rs = "1.11.1"
12+
aws-lc-sys = "0.23.1"
13+
aws-sdk-dynamodb = "1.54.0"
14+
aws-sdk-kms = "1.50.0"
15+
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
16+
aws-smithy-types = "1.2.9"
1717
chrono = "0.4.38"
1818
dafny_runtime = { path = "../../../submodules/MaterialProviders/smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust"}
1919
dashmap = "6.1.0"
2020
pem = "3.0.4"
21-
tokio = {version = "1.41.0", features = ["full"] }
21+
tokio = {version = "1.41.1", features = ["full"] }
2222
uuid = { version = "1.11.0", features = ["v4"] }

TestVectors/runtimes/rust/copy_externs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cp $SRC/local_cmc.rs src
1818
cp $SRC/random.rs src
1919
cp $SRC/rsa.rs src
2020
cp $SRC/sets.rs src
21-
cp $SRC/software_externs.rs src
21+
cp ../../../DynamoDbEncryption/runtimes/rust/src/software_externs.rs src
2222
cp $SRC/storm_tracker.rs src
2323
cp $SRC/time.rs src
2424
cp $SRC/uuid.rs src

0 commit comments

Comments
 (0)