Skip to content

Commit 6aa8581

Browse files
committed
Add crypto-self-test examples
1 parent 2beb625 commit 6aa8581

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

esp-mbedtls/Cargo.toml

-8
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,3 @@ esp32s3 = ["esp-hal/esp32s3", "esp-wifi/esp32s3", "esp-mbedtls-sys/esp32s3", "cr
3333

3434
# Implement the traits defined in the latest HEAD of `edge-nal`
3535
edge-nal = ["dep:edge-nal", "async"]
36-
37-
# Patch until new release
38-
[patch.crates-io]
39-
edge-nal = { git = "https://github.com/ivmarkov/edge-net" }
40-
esp-idf-svc = { git = "https://github.com/esp-rs/esp-idf-svc" }
41-
esp-idf-hal = { git = "https://github.com/esp-rs/esp-idf-hal" }
42-
esp-idf-sys = { git = "https://github.com/esp-rs/esp-idf-sys" }
43-
cmake = { git = "https://github.com/ivmarkov/cmake-rs" }

justfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@ check arch toolchain:
1414
cargo +{{ toolchain }} b{{ arch }} --example sync_server_mTLS --features="examples"
1515
cargo +{{ toolchain }} b{{ arch }} --example async_server --features="examples-async"
1616
cargo +{{ toolchain }} b{{ arch }} --example async_server_mTLS --features="examples-async"
17-
cargo +{{ toolchain }} b{{ arch }} --example edge_server --features="examples-async,edge-server"
17+
cargo +{{ toolchain }} b{{ arch }} --example edge_server --features="examples-async"
18+
cargo +{{ toolchain }} b{{ arch }} --example crypto_self_test --features="examples"
19+
cargo +{{ toolchain }} b{{ arch }} --example crypto_self_test_std --features="examples-std"
1820
cargo +{{ toolchain }} fmt --all -- --check

0 commit comments

Comments
 (0)