diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-03-31 00:21:11 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-03-31 00:21:11 +0000 |
commit | d37bdd0fcdf2e5e4b29e564cd3461ba22851028a (patch) | |
tree | 252c028309e9d0439e4a2b1b0ee7656107d2bb01 | |
parent | Add CHANGELOG for fixed random route leakage (diff) | |
download | miniserve-d37bdd0fcdf2e5e4b29e564cd3461ba22851028a.tar.gz miniserve-d37bdd0fcdf2e5e4b29e564cd3461ba22851028a.zip |
Patch zip to ensure it builds on mips
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -2922,11 +2922,11 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] name = "zip" version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6fa4aa90e99fb8d701bda16fb040d8ed2f9c7176fb44de750e880a74b580315" +source = "git+https://github.com/zip-rs/zip?branch=master#d00ad632a1f21fdc747e30e25c3eebc047dfd958" dependencies = [ "byteorder", "crc32fast", + "crossbeam-utils", ] [[package]] @@ -56,6 +56,9 @@ rustls-pemfile = { version = "0.3", optional = true } socket2 = "0.4" get_if_addrs = "0.5" +[patch.crates-io] +zip = { git="https://github.com/zip-rs/zip", branch="master" } + [features] default = ["tls"] # This feature allows us to use rustls only on architectures supported by ring. |