1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: upgrade httparse to 1.8 (#15699)

This commit is contained in:
Bartek Iwańczuk 2022-08-31 11:24:38 +02:00 committed by GitHub
parent adec4f575e
commit b8933b1b56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -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"

View file

@ -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"] }