File tree 9 files changed +9
-1
lines changed
9 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ RUST_OTHER_FILES := \
29
29
runtimes/rust/src/hmac.rs \
30
30
runtimes/rust/src/kms.rs \
31
31
runtimes/rust/src/local_cmc.rs \
32
+ runtimes/rust/src/oslang.rs \
32
33
runtimes/rust/src/random.rs \
33
34
runtimes/rust/src/rsa.rs \
34
35
runtimes/rust/src/sets.rs \
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ src/local_cmc.rs
23
23
src /operation
24
24
src /operation.rs
25
25
src /random.rs
26
+ src /oslang.rs
26
27
src /rsa.rs
27
28
src /sets.rs
28
29
src /standard_library_conversions.rs
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ cp $SRC/ecdsa.rs src
15
15
cp $SRC /hmac.rs src
16
16
cp $SRC /kms.rs src
17
17
cp $SRC /local_cmc.rs src
18
+ cp $SRC /oslang.rs src
18
19
cp $SRC /random.rs src
19
20
cp $SRC /rsa.rs src
20
21
cp $SRC /sets.rs src
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ pub(crate) mod ecdsa;
142
142
pub ( crate ) mod hmac;
143
143
pub ( crate ) mod kms;
144
144
pub ( crate ) mod local_cmc;
145
+ pub ( crate ) mod oslang;
145
146
pub ( crate ) mod random;
146
147
pub ( crate ) mod rsa;
147
148
pub ( crate ) mod sets;
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ RUST_OTHER_FILES := \
42
42
runtimes/rust/src/hmac.rs \
43
43
runtimes/rust/src/kms.rs \
44
44
runtimes/rust/src/local_cmc.rs \
45
+ runtimes/rust/src/oslang.rs \
45
46
runtimes/rust/src/random.rs \
46
47
runtimes/rust/src/rsa.rs \
47
48
runtimes/rust/src/sets.rs \
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ src/local_cmc.rs
24
24
src /operation
25
25
src /operation.rs
26
26
src /random.rs
27
+ src /oslang.rs
27
28
src /rsa.rs
28
29
src /sets.rs
29
30
src /software_externs.rs
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ cp $SRC/hmac.rs src
16
16
cp $SRC /kms.rs src
17
17
cp $SRC /local_cmc.rs src
18
18
cp $SRC /random.rs src
19
+ cp $SRC /oslang.rs src
19
20
cp $SRC /rsa.rs src
20
21
cp $SRC /sets.rs src
21
22
cp ../../../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;
55
55
pub mod hmac;
56
56
pub mod kms;
57
57
pub mod local_cmc;
58
+ pub mod oslang;
58
59
pub mod random;
59
60
pub mod rsa;
60
61
pub mod sets;
You can’t perform that action at this time.
0 commit comments