File tree Expand file tree Collapse file tree 4 files changed +56
-17
lines changed
DynamoDbEncryption/runtimes/rust
TestVectors/runtimes/rust Expand file tree Collapse file tree 4 files changed +56
-17
lines changed Original file line number Diff line number Diff 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 "
2626chrono = " 0.4.38"
2727dafny_runtime = { path = " ../../../submodules/MaterialProviders/smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust" }
2828dashmap = " 6.1.0"
2929pem = " 3.0.4"
30- tokio = {version = " 1.41.0 " , features = [" full" ] }
30+ tokio = {version = " 1.41.1 " , features = [" full" ] }
3131uuid = { version = " 1.11.0" , features = [" v4" ] }
3232
3333[[example ]]
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 "
1717chrono = " 0.4.38"
1818dafny_runtime = { path = " ../../../submodules/MaterialProviders/smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust" }
1919dashmap = " 6.1.0"
2020pem = " 3.0.4"
21- tokio = {version = " 1.41.0 " , features = [" full" ] }
21+ tokio = {version = " 1.41.1 " , features = [" full" ] }
2222uuid = { version = " 1.11.0" , features = [" v4" ] }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ cp $SRC/local_cmc.rs src
1818cp $SRC /random.rs src
1919cp $SRC /rsa.rs src
2020cp $SRC /sets.rs src
21- cp $SRC /software_externs.rs src
21+ cp ../../../DynamoDbEncryption/runtimes/rust/src /software_externs.rs src
2222cp $SRC /storm_tracker.rs src
2323cp $SRC /time.rs src
2424cp $SRC /uuid.rs src
You can’t perform that action at this time.
0 commit comments