File tree Expand file tree Collapse file tree 9 files changed +9
-1
lines changed
Expand file tree Collapse file tree 9 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ RUST_OTHER_FILES := \
2929 runtimes/rust/src/hmac.rs \
3030 runtimes/rust/src/kms.rs \
3131 runtimes/rust/src/local_cmc.rs \
32+ runtimes/rust/src/oslang.rs \
3233 runtimes/rust/src/random.rs \
3334 runtimes/rust/src/rsa.rs \
3435 runtimes/rust/src/sets.rs \
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ src/local_cmc.rs
2323src /operation
2424src /operation.rs
2525src /random.rs
26+ src /oslang.rs
2627src /rsa.rs
2728src /sets.rs
2829src /standard_library_conversions.rs
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ cp $SRC/ecdsa.rs src
1515cp $SRC /hmac.rs src
1616cp $SRC /kms.rs src
1717cp $SRC /local_cmc.rs src
18+ cp $SRC /oslang.rs src
1819cp $SRC /random.rs src
1920cp $SRC /rsa.rs src
2021cp $SRC /sets.rs src
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ pub(crate) mod ecdsa;
142142pub ( crate ) mod hmac;
143143pub ( crate ) mod kms;
144144pub ( crate ) mod local_cmc;
145+ pub ( crate ) mod oslang;
145146pub ( crate ) mod random;
146147pub ( crate ) mod rsa;
147148pub ( crate ) mod sets;
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ RUST_OTHER_FILES := \
4242 runtimes/rust/src/hmac.rs \
4343 runtimes/rust/src/kms.rs \
4444 runtimes/rust/src/local_cmc.rs \
45+ runtimes/rust/src/oslang.rs \
4546 runtimes/rust/src/random.rs \
4647 runtimes/rust/src/rsa.rs \
4748 runtimes/rust/src/sets.rs \
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ src/local_cmc.rs
2424src /operation
2525src /operation.rs
2626src /random.rs
27+ src /oslang.rs
2728src /rsa.rs
2829src /sets.rs
2930src /software_externs.rs
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ cp $SRC/hmac.rs src
1616cp $SRC /kms.rs src
1717cp $SRC /local_cmc.rs src
1818cp $SRC /random.rs src
19+ cp $SRC /oslang.rs src
1920cp $SRC /rsa.rs src
2021cp $SRC /sets.rs src
2122cp ../../../DynamoDbEncryption/runtimes/rust/src/software_externs.rs src
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ pub mod ecdsa;
5555pub mod hmac;
5656pub mod kms;
5757pub mod local_cmc;
58+ pub mod oslang;
5859pub mod random;
5960pub mod rsa;
6061pub mod sets;
You can’t perform that action at this time.
0 commit comments