-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Porting combined errors from mbedtls changes (#372)
Due to downgrade back to v2.28 (from ~3.X), the enhancement in PR #271 was lost in the mbedtls 2.8 branch being used. we need to port these combined errors from mbedtls changes back to the mbedtls 2.8 branch and build with the latest upgrade in rust toolchain version to apply the enhancement. This PR ports said changes to a latest branch forked from mbedtls master and builds the same on latest rustc 1.83.0-nightly (26d8e9255 2024-10-11) version.
- Loading branch information
1 parent
0e5891d
commit 9b0dbdb
Showing
27 changed files
with
586 additions
and
450 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "mbedtls" | ||
# We jumped from v0.9 to v0.12 because v0.10 and v0.11 were based on mbedtls 3.X, which | ||
# we decided not to support. | ||
version = "0.12.3" | ||
version = "0.13.0" | ||
authors = ["Jethro Beekman <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2018" | ||
|
@@ -24,8 +24,8 @@ features = ["x509", "ssl"] | |
|
||
[dependencies] | ||
bitflags = "1" | ||
serde = { version = "1.0.7", default-features = false, features = ["alloc"] } | ||
serde_derive = "1.0.7" | ||
serde = { version = "1.0.214", default-features = false, features = ["alloc"] } | ||
serde_derive = "1.0.214" | ||
byteorder = { version = "1.0.0", default-features = false } | ||
yasna = { version = "0.2", optional = true, features = [ | ||
"num-bigint", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.