Skip to content

Commit

Permalink
Add implementation for mbedtls - Initial work by @MabezDev
Browse files Browse the repository at this point in the history
Co-authored-by: Scott Mabin <[email protected]>
  • Loading branch information
zvolin and MabezDev committed May 4, 2023
1 parent 8fa929d commit fe55a47
Show file tree
Hide file tree
Showing 2 changed files with 536 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ tempfile = "3.1.0"
[target.'cfg(target_os = "windows")'.dependencies]
schannel = "0.1.17"

[target.'cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios")))'.dependencies]
[target.'cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios", target_os = "espidf")))'.dependencies]
log = "0.4.5"
openssl = "0.10.29"
openssl-sys = "0.9.55"
openssl-probe = "0.1"

[target.'cfg(target_os = "espidf")'.dependencies]
mbedtls = { version = "0.8.1", features = ["pkcs12", "std"], path = "/home/mabez/development/rust/embedded/util/rust-mbedtls/mbedtls" }

[dev-dependencies]
tempfile = "3.0"
test-cert-gen = "0.9"
Loading

0 comments on commit fe55a47

Please sign in to comment.