From b8933b1b5693bc0d59febfae4b9db5f4558be071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 31 Aug 2022 11:24:38 +0200 Subject: [PATCH] chore: upgrade httparse to 1.8 (#15699) --- Cargo.lock | 4 ++-- ext/flash/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd7fbb1038..4d3977088a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2138,9 +2138,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.7.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" diff --git a/ext/flash/Cargo.toml b/ext/flash/Cargo.toml index 4912da27dc..580a7c2b24 100644 --- a/ext/flash/Cargo.toml +++ b/ext/flash/Cargo.toml @@ -19,7 +19,7 @@ deno_tls = { version = "0.53.0", path = "../tls" } # For HTTP/2 and websocket upgrades deno_websocket = { version = "0.71.0", path = "../websocket" } http = "0.2.6" -httparse = "1.7" +httparse = "1.8" libc = "0.2" log = "0.4.17" mio = { version = "0.8.1", features = ["os-poll", "net"] }