From 649536e2669eb496fc2d4dacd92fd1d6dbed50a7 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 19 Jul 2022 16:50:09 -0400 Subject: [PATCH] fix(task): do not overflow attempting to parse large number as redirect (#15249) --- Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c743fbdd39..c314da9b31 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 95ffed4bd7..ece951a1a6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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"