File tree 4 files changed +56
-17
lines changed
DynamoDbEncryption/runtimes/rust
TestVectors/runtimes/rust
4 files changed +56
-17
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,18 @@ readme = "README.md"
16
16
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
17
17
18
18
[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 "
26
26
chrono = " 0.4.38"
27
27
dafny_runtime = { path = " ../../../submodules/MaterialProviders/smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust" }
28
28
dashmap = " 6.1.0"
29
29
pem = " 3.0.4"
30
- tokio = {version = " 1.41.0 " , features = [" full" ] }
30
+ tokio = {version = " 1.41.1 " , features = [" full" ] }
31
31
uuid = { version = " 1.11.0" , features = [" v4" ] }
32
32
33
33
[[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"
7
7
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
8
9
9
[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 "
17
17
chrono = " 0.4.38"
18
18
dafny_runtime = { path = " ../../../submodules/MaterialProviders/smithy-dafny/TestModels/dafny-dependencies/dafny_runtime_rust" }
19
19
dashmap = " 6.1.0"
20
20
pem = " 3.0.4"
21
- tokio = {version = " 1.41.0 " , features = [" full" ] }
21
+ tokio = {version = " 1.41.1 " , features = [" full" ] }
22
22
uuid = { 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
18
18
cp $SRC /random.rs src
19
19
cp $SRC /rsa.rs src
20
20
cp $SRC /sets.rs src
21
- cp $SRC /software_externs.rs src
21
+ cp ../../../DynamoDbEncryption/runtimes/rust/src /software_externs.rs src
22
22
cp $SRC /storm_tracker.rs src
23
23
cp $SRC /time.rs src
24
24
cp $SRC /uuid.rs src
You can’t perform that action at this time.
0 commit comments