aboutsummaryrefslogtreecommitdiff
path: root/tests/stm32/Cargo.toml
diff options
context:
space:
mode:
authorCaleb Garrett <[email protected]>2024-02-24 16:31:43 -0500
committerCaleb Garrett <[email protected]>2024-02-25 20:59:07 -0500
commit236fc6f650af41980af05ef03a3901b2dfcfc381 (patch)
tree844bd267f8858a5241c9c50358880d355c35a76c /tests/stm32/Cargo.toml
parentf352b6d68b17fee886af58494b7e793cea3ea383 (diff)
Add CRYP test.
Diffstat (limited to 'tests/stm32/Cargo.toml')
-rw-r--r--tests/stm32/Cargo.toml11
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"]
16stm32g071rb = ["embassy-stm32/stm32g071rb", "cm0", "not-gpdma", "dac"] 16stm32g071rb = ["embassy-stm32/stm32g071rb", "cm0", "not-gpdma", "dac"]
17stm32g491re = ["embassy-stm32/stm32g491re", "chrono", "stop", "not-gpdma", "rng", "fdcan"] 17stm32g491re = ["embassy-stm32/stm32g491re", "chrono", "stop", "not-gpdma", "rng", "fdcan"]
18stm32h563zi = ["embassy-stm32/stm32h563zi", "chrono", "eth", "rng", "hash"] 18stm32h563zi = ["embassy-stm32/stm32h563zi", "chrono", "eth", "rng", "hash"]
19stm32h753zi = ["embassy-stm32/stm32h753zi", "chrono", "not-gpdma", "eth", "rng", "fdcan", "hash"] 19stm32h753zi = ["embassy-stm32/stm32h753zi", "chrono", "not-gpdma", "eth", "rng", "fdcan", "hash", "cryp"]
20stm32h755zi = ["embassy-stm32/stm32h755zi-cm7", "chrono", "not-gpdma", "eth", "dac", "rng", "fdcan", "hash"] 20stm32h755zi = ["embassy-stm32/stm32h755zi-cm7", "chrono", "not-gpdma", "eth", "dac", "rng", "fdcan", "hash", "cryp"]
21stm32h7a3zi = ["embassy-stm32/stm32h7a3zi", "not-gpdma", "rng", "fdcan"] 21stm32h7a3zi = ["embassy-stm32/stm32h7a3zi", "not-gpdma", "rng", "fdcan"]
22stm32l073rz = ["embassy-stm32/stm32l073rz", "cm0", "not-gpdma", "rng"] 22stm32l073rz = ["embassy-stm32/stm32l073rz", "cm0", "not-gpdma", "rng"]
23stm32l152re = ["embassy-stm32/stm32l152re", "chrono", "not-gpdma"] 23stm32l152re = ["embassy-stm32/stm32l152re", "chrono", "not-gpdma"]
@@ -33,6 +33,7 @@ stm32wl55jc = ["embassy-stm32/stm32wl55jc-cm4", "not-gpdma", "rng", "chrono"]
33stm32f091rc = ["embassy-stm32/stm32f091rc", "cm0", "not-gpdma", "chrono"] 33stm32f091rc = ["embassy-stm32/stm32f091rc", "cm0", "not-gpdma", "chrono"]
34stm32h503rb = ["embassy-stm32/stm32h503rb", "rng"] 34stm32h503rb = ["embassy-stm32/stm32h503rb", "rng"]
35 35
36cryp = []
36hash = [] 37hash = []
37eth = ["embassy-executor/task-arena-size-16384"] 38eth = ["embassy-executor/task-arena-size-16384"]
38rng = [] 39rng = []
@@ -80,6 +81,7 @@ portable-atomic = { version = "1.5", features = [] }
80chrono = { version = "^0.4", default-features = false, optional = true} 81chrono = { version = "^0.4", default-features = false, optional = true}
81sha2 = { version = "0.10.8", default-features = false } 82sha2 = { version = "0.10.8", default-features = false }
82hmac = "0.12.1" 83hmac = "0.12.1"
84aes-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"
89required-features = [ "can",] 91required-features = [ "can",]
90 92
91[[bin]] 93[[bin]]
94name = "cryp"
95path = "src/bin/cryp.rs"
96required-features = [ "hash",]
97
98[[bin]]
92name = "dac" 99name = "dac"
93path = "src/bin/dac.rs" 100path = "src/bin/dac.rs"
94required-features = [ "dac",] 101required-features = [ "dac",]