diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-07-19 16:50:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-19 16:50:09 -0400 |
| commit | 649536e2669eb496fc2d4dacd92fd1d6dbed50a7 (patch) | |
| tree | 62ff640e3049395989f98ed8e5541c25a51555c9 | |
| parent | 9b4ae0868d5f5a5ef1d49843737f950bbb841cbf (diff) | |
fix(task): do not overflow attempting to parse large number as redirect (#15249)
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index c743fbdd3..c314da9b3 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 95ffed4bd..ece951a1a 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" |
