0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

fix(task): do not overflow attempting to parse large number as redirect (#15249)

This commit is contained in:
David Sherret 2022-07-19 16:50:09 -04:00 committed by GitHub
parent 9b4ae0868d
commit 649536e266
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

@ -1166,9 +1166,9 @@ dependencies = [
[[package]]
name = "deno_task_shell"
version = "0.4.0"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e33a3589b296d6295106343d96127b06f85b3aa8645d9a2e590df44ef594395"
checksum = "c8348a58271a9672a735850dd2293770c83344759f8d18e4636e53de9e4605d2"
dependencies = [
"anyhow",
"futures",

View file

@ -52,7 +52,7 @@ deno_emit = "0.4.0"
deno_graph = "0.29.0"
deno_lint = { version = "0.32.0", features = ["docs"] }
deno_runtime = { version = "0.69.0", path = "../runtime" }
deno_task_shell = "0.4.0"
deno_task_shell = "0.5.0"
atty = "=0.2.14"
base64 = "=0.13.0"