Skip to content

Commit f039dd0

Browse files
committed
m
1 parent 1db8039 commit f039dd0

File tree

5 files changed

+33
-26
lines changed

5 files changed

+33
-26
lines changed

DynamoDbEncryption/runtimes/rust/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ 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.11"
20-
aws-lc-rs = "1.12.0"
21-
aws-lc-sys = "0.24.0"
22-
aws-sdk-dynamodb = "1.56.0"
23-
aws-sdk-kms = "1.52.0"
19+
aws-config = "1.5.15"
20+
aws-lc-rs = "1.12.2"
21+
aws-lc-sys = "0.25.0"
22+
aws-sdk-dynamodb = "1.62.0"
23+
aws-sdk-kms = "1.57.0"
2424
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
25-
aws-smithy-types = "1.2.10"
25+
aws-smithy-types = "1.2.12"
2626
chrono = "0.4.39"
2727
cpu-time = "1.0.0"
2828
#dafny-runtime = "0.1.1"
2929
dafny-runtime = { path = "../../../releases/rust/db_esdk/dafny_runtime_rust", features = ["sync"] }
3030
dashmap = "6.1.0"
3131
pem = "3.0.4"
32-
tokio = {version = "1.42.0", features = ["full"] }
33-
uuid = { version = "1.11.0", features = ["v4"] }
32+
tokio = {version = "1.43.0", features = ["full"] }
33+
uuid = { version = "1.12.1", features = ["v4"] }
3434

3535
[[example]]
3636
name = "main"

DynamoDbEncryption/runtimes/rust/test_examples/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ rust-version = "1.81.0"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
aws-config = "1.5.10"
10-
aws-lc-rs = "1.11.1"
11-
aws-lc-sys = "0.24.0"
12-
aws-sdk-dynamodb = "1.54.0"
13-
aws-sdk-kms = "1.50.0"
9+
aws-config = "1.5.15"
10+
aws-lc-rs = "1.12.2"
11+
aws-lc-sys = "0.25.0"
12+
aws-sdk-dynamodb = "1.62.0"
13+
aws-sdk-kms = "1.57.0"
1414
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
15-
aws-smithy-types = "1.2.9"
16-
chrono = "0.4.38"
15+
aws-smithy-types = "1.2.12"
16+
chrono = "0.4.39"
1717
dafny-runtime = "0.1.1"
1818
dashmap = "6.1.0"
1919
pem = "3.0.4"
20-
tokio = {version = "1.41.1", features = ["full"] }
21-
uuid = { version = "1.11.0", features = ["v4"] }
20+
tokio = {version = "1.43.0", features = ["full"] }
21+
uuid = { version = "1.12.1", features = ["v4"] }
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash -eu
2+
3+
rm -rf test_examples/src
4+
cp -r examples test_examples/src/
5+
cd test_examples
6+
cargo upgrade
7+
rm -rf src

TestVectors/runtimes/rust/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ rust-version = "1.81.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.11"
11-
aws-lc-rs = "1.12.0"
12-
aws-lc-sys = "0.24.0"
13-
aws-sdk-dynamodb = "1.56.0"
14-
aws-sdk-kms = "1.52.0"
10+
aws-config = "1.5.15"
11+
aws-lc-rs = "1.12.2"
12+
aws-lc-sys = "0.25.0"
13+
aws-sdk-dynamodb = "1.62.0"
14+
aws-sdk-kms = "1.57.0"
1515
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
16-
aws-smithy-types = "1.2.10"
16+
aws-smithy-types = "1.2.12"
1717
chrono = "0.4.39"
1818
cpu-time = "1.0.0"
1919
dafny-runtime = { path = "../../../releases/rust/db_esdk/dafny_runtime_rust", features = ["sync"] }
2020
dashmap = "6.1.0"
2121
pem = "3.0.4"
22-
tokio = {version = "1.42.0", features = ["full"] }
23-
uuid = { version = "1.11.0", features = ["v4"] }
22+
tokio = {version = "1.43.0", features = ["full"] }
23+
uuid = { version = "1.12.1", features = ["v4"] }

0 commit comments

Comments
 (0)