mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 12:49:50 +00:00
This includes a patch to update the version of ouroboros (Rust crate) used, to fix RUSTSEC-2023-0042[1]. Upstream has switch from ouroboros to self_cell so this patch should only be necessary for cryptography 41. [1]: https://rustsec.org/advisories/RUSTSEC-2023-0042.html Signed-off-by: Jeffery To <jeffery.to@gmail.com>
14 lines
410 B
Diff
14 lines
410 B
Diff
Fixes https://rustsec.org/advisories/RUSTSEC-2023-0042.html
|
|
|
|
--- a/src/rust/Cargo.toml
|
|
+++ b/src/rust/Cargo.toml
|
|
@@ -15,7 +15,7 @@ cryptography-cffi = { path = "cryptograp
|
|
cryptography-x509 = { path = "cryptography-x509" }
|
|
cryptography-openssl = { path = "cryptography-openssl" }
|
|
pem = "1.1"
|
|
-ouroboros = "0.15"
|
|
+ouroboros = "0.18"
|
|
openssl = "0.10.54"
|
|
openssl-sys = "0.9.88"
|
|
foreign-types-shared = "0.1"
|