diff options
| author | Caleb Garrett <[email protected]> | 2024-02-24 16:31:43 -0500 |
|---|---|---|
| committer | Caleb Garrett <[email protected]> | 2024-02-25 20:59:07 -0500 |
| commit | 236fc6f650af41980af05ef03a3901b2dfcfc381 (patch) | |
| tree | 844bd267f8858a5241c9c50358880d355c35a76c /tests/stm32/Cargo.toml | |
| parent | f352b6d68b17fee886af58494b7e793cea3ea383 (diff) | |
Add CRYP test.
Diffstat (limited to 'tests/stm32/Cargo.toml')
| -rw-r--r-- | tests/stm32/Cargo.toml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml index 828a28e2c..37519ba11 100644 --- a/tests/stm32/Cargo.toml +++ b/tests/stm32/Cargo.toml | |||
| @@ -16,8 +16,8 @@ stm32f767zi = ["embassy-stm32/stm32f767zi", "chrono", "not-gpdma", "eth", "rng"] | |||
| 16 | stm32g071rb = ["embassy-stm32/stm32g071rb", "cm0", "not-gpdma", "dac"] | 16 | stm32g071rb = ["embassy-stm32/stm32g071rb", "cm0", "not-gpdma", "dac"] |
| 17 | stm32g491re = ["embassy-stm32/stm32g491re", "chrono", "stop", "not-gpdma", "rng", "fdcan"] | 17 | stm32g491re = ["embassy-stm32/stm32g491re", "chrono", "stop", "not-gpdma", "rng", "fdcan"] |
| 18 | stm32h563zi = ["embassy-stm32/stm32h563zi", "chrono", "eth", "rng", "hash"] | 18 | stm32h563zi = ["embassy-stm32/stm32h563zi", "chrono", "eth", "rng", "hash"] |
| 19 | stm32h753zi = ["embassy-stm32/stm32h753zi", "chrono", "not-gpdma", "eth", "rng", "fdcan", "hash"] | 19 | stm32h753zi = ["embassy-stm32/stm32h753zi", "chrono", "not-gpdma", "eth", "rng", "fdcan", "hash", "cryp"] |
| 20 | stm32h755zi = ["embassy-stm32/stm32h755zi-cm7", "chrono", "not-gpdma", "eth", "dac", "rng", "fdcan", "hash"] | 20 | stm32h755zi = ["embassy-stm32/stm32h755zi-cm7", "chrono", "not-gpdma", "eth", "dac", "rng", "fdcan", "hash", "cryp"] |
| 21 | stm32h7a3zi = ["embassy-stm32/stm32h7a3zi", "not-gpdma", "rng", "fdcan"] | 21 | stm32h7a3zi = ["embassy-stm32/stm32h7a3zi", "not-gpdma", "rng", "fdcan"] |
| 22 | stm32l073rz = ["embassy-stm32/stm32l073rz", "cm0", "not-gpdma", "rng"] | 22 | stm32l073rz = ["embassy-stm32/stm32l073rz", "cm0", "not-gpdma", "rng"] |
| 23 | stm32l152re = ["embassy-stm32/stm32l152re", "chrono", "not-gpdma"] | 23 | stm32l152re = ["embassy-stm32/stm32l152re", "chrono", "not-gpdma"] |
| @@ -33,6 +33,7 @@ stm32wl55jc = ["embassy-stm32/stm32wl55jc-cm4", "not-gpdma", "rng", "chrono"] | |||
| 33 | stm32f091rc = ["embassy-stm32/stm32f091rc", "cm0", "not-gpdma", "chrono"] | 33 | stm32f091rc = ["embassy-stm32/stm32f091rc", "cm0", "not-gpdma", "chrono"] |
| 34 | stm32h503rb = ["embassy-stm32/stm32h503rb", "rng"] | 34 | stm32h503rb = ["embassy-stm32/stm32h503rb", "rng"] |
| 35 | 35 | ||
| 36 | cryp = [] | ||
| 36 | hash = [] | 37 | hash = [] |
| 37 | eth = ["embassy-executor/task-arena-size-16384"] | 38 | eth = ["embassy-executor/task-arena-size-16384"] |
| 38 | rng = [] | 39 | rng = [] |
| @@ -80,6 +81,7 @@ portable-atomic = { version = "1.5", features = [] } | |||
| 80 | chrono = { version = "^0.4", default-features = false, optional = true} | 81 | chrono = { version = "^0.4", default-features = false, optional = true} |
| 81 | sha2 = { version = "0.10.8", default-features = false } | 82 | sha2 = { version = "0.10.8", default-features = false } |
| 82 | hmac = "0.12.1" | 83 | hmac = "0.12.1" |
| 84 | aes-gcm = {version = "0.10.3", default-features = false, features = ["aes", "heapless"] } | ||
| 83 | 85 | ||
| 84 | # BEGIN TESTS | 86 | # BEGIN TESTS |
| 85 | # Generated by gen_test.py. DO NOT EDIT. | 87 | # Generated by gen_test.py. DO NOT EDIT. |
| @@ -89,6 +91,11 @@ path = "src/bin/can.rs" | |||
| 89 | required-features = [ "can",] | 91 | required-features = [ "can",] |
| 90 | 92 | ||
| 91 | [[bin]] | 93 | [[bin]] |
| 94 | name = "cryp" | ||
| 95 | path = "src/bin/cryp.rs" | ||
| 96 | required-features = [ "hash",] | ||
| 97 | |||
| 98 | [[bin]] | ||
| 92 | name = "dac" | 99 | name = "dac" |
| 93 | path = "src/bin/dac.rs" | 100 | path = "src/bin/dac.rs" |
| 94 | required-features = [ "dac",] | 101 | required-features = [ "dac",] |
