Skip to content

Commit 515995e

Browse files
authored
chore(rust): update smithy-dafny, use small-int feature (#1437)
1 parent 2f0696d commit 515995e

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

.github/workflows/library_interop_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
# Test Vectors need to call KMS
4141
- name: Configure AWS Credentials for Tests
42-
uses: aws-actions/configure-aws-credentials@v2
42+
uses: aws-actions/configure-aws-credentials@v4
4343
with:
4444
aws-region: us-west-2
4545
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-MPL-Dafny-Role-us-west-2
@@ -228,7 +228,7 @@ jobs:
228228
229229
# KMS and MPL tests need to use credentials which can call KMS
230230
- name: Configure AWS Credentials for Tests
231-
uses: aws-actions/configure-aws-credentials@v2
231+
uses: aws-actions/configure-aws-credentials@v4
232232
with:
233233
aws-region: us-west-2
234234
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-MPL-Dafny-Role-us-west-2

.github/workflows/library_rust_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
git submodule update --init --recursive smithy-dafny
4949
5050
- name: Configure AWS Credentials
51-
uses: aws-actions/configure-aws-credentials@v2
51+
uses: aws-actions/configure-aws-credentials@v4
5252
with:
5353
aws-region: us-west-2
5454
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-MPL-Dafny-Role-us-west-2

.github/workflows/nightly_dafny.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
# We need access to the role that is able to get CI Bot Creds
7878
- name: Configure AWS Credentials for Release
79-
uses: aws-actions/configure-aws-credentials@v2
79+
uses: aws-actions/configure-aws-credentials@v4
8080
with:
8181
aws-region: us-west-2
8282
role-to-assume: arn:aws:iam::587316601012:role/GitHub-CI-CI-Bot-Credential-Access-Role-us-west-2

.github/workflows/sem_ver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
# We need access to the role that is able to get CI Bot Creds
2222
- name: Configure AWS Credentials for Release
23-
uses: aws-actions/configure-aws-credentials@v2
23+
uses: aws-actions/configure-aws-credentials@v4
2424
with:
2525
aws-region: us-west-2
2626
role-to-assume: arn:aws:iam::587316601012:role/GitHub-CI-CI-Bot-Credential-Access-Role-us-west-2

.github/workflows/semantic_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# We need access to the role that is able to get CI Bot Creds
3131
- name: Configure AWS Credentials for Release
32-
uses: aws-actions/configure-aws-credentials@v2
32+
uses: aws-actions/configure-aws-credentials@v4
3333
with:
3434
aws-region: us-west-2
3535
role-to-assume: arn:aws:iam::587316601012:role/GitHub-CI-CI-Bot-Credential-Access-Role-us-west-2

AwsCryptographicMaterialProviders/runtimes/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
2222
aws-smithy-types = "1.2.12"
2323
chrono = "0.4.39"
2424
cpu-time = "1.0.0"
25-
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync"]}
25+
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync","small-int"]}
2626
dashmap = "6.1.0"
2727
pem = "3.0.4"
2828
tokio = {version = "1.43.0", features = ["full"] }

AwsCryptographyPrimitives/runtimes/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ aws-smithy-runtime-api = "1.7.3"
1414
aws-smithy-types = "1.2.12"
1515
chrono = "0.4.39"
1616
cpu-time = "1.0.0"
17-
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync"]}
17+
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync","small-int"]}
1818
dashmap = "6.1.0"
1919
pem = "3.0.4"
2020
tokio = {version = "1.43.0", features = ["full"] }

ComAmazonawsDynamodb/runtimes/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ aws-smithy-runtime-api = "1.7.3"
1313
aws-smithy-types = "1.2.12"
1414
chrono = "0.4.39"
1515
cpu-time = "1.0.0"
16-
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync"]}
16+
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync","small-int"]}
1717
dashmap = "6.1.0"
1818
tokio = {version = "1.43.0", features = ["full"] }
1919
uuid = { version = "1.12.1", features = ["v4"] }

ComAmazonawsKms/runtimes/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ aws-smithy-runtime-api = "1.7.3"
1313
aws-smithy-types = "1.2.12"
1414
chrono = "0.4.39"
1515
cpu-time = "1.0.0"
16-
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync"]}
16+
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync","small-int"]}
1717
dashmap = "6.1.0"
1818
tokio = {version = "1.43.0", features = ["full"] }
1919
uuid = { version = "1.12.1", features = ["v4"] }

StandardLibrary/runtimes/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ rust-version = "1.80.0"
99
[dependencies]
1010
chrono = "0.4.39"
1111
cpu-time = "1.0.0"
12-
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync"]}
12+
dafny_runtime = { path = "../../../smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust", features = ["sync","small-int"]}
1313
uuid = { version = "1.12.1", features = ["v4"] }

0 commit comments

Comments
 (0)