From 4892ed77d11bf26357ac978a3f6dd6e628440412 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Thu, 19 Aug 2021 21:29:47 -0700 Subject: [PATCH] update http-serve to fix erroneous 304 This mostly affects .mp4 init segments (#146), which currently set the Last-Modified: date to the epoch. It could also affect other resources (static files, other .mp4 changes) but only if the clock has gone backwards. --- server/Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index 60381e6..cca832a 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -916,9 +916,9 @@ dependencies = [ [[package]] name = "http-serve" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0741b8d9d8a13119ba18ab3e57aeae3626654b0964761f8132cc9619b27d72a" +checksum = "253e214b792b5f3dd7a610b5405218cf7ce3648ec47c3d301160b6736210b3cd" dependencies = [ "bytes", "flate2",