1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00

fix(unstable): upgrade deno_task_shell to 0.2 (#14073)

This commit is contained in:
David Sherret 2022-03-22 10:16:14 -04:00 committed by Kitson Kelly
parent 6366d623e2
commit 7e38bda50a
2 changed files with 13 additions and 3 deletions

14
Cargo.lock generated
View file

@ -1088,13 +1088,14 @@ dependencies = [
[[package]] [[package]]
name = "deno_task_shell" name = "deno_task_shell"
version = "0.1.9" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4b477c481d76502130fc5a212900fbe9da9520ad65c54c7e6a7cb129df082fb" checksum = "4f7cfd6605b7291387e54a732e5b5fa8c1fb0d6757dbf4309740ad79c1e1e215"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"futures", "futures",
"os_pipe", "os_pipe",
"path-dedot",
"tokio", "tokio",
] ]
@ -2830,6 +2831,15 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecba01bf2678719532c5e3059e0b5f0811273d94b397088b82e3bd0a78c78fdd" checksum = "ecba01bf2678719532c5e3059e0b5f0811273d94b397088b82e3bd0a78c78fdd"
[[package]]
name = "path-dedot"
version = "3.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f326e2a3331685a5e3d4633bb9836bd92126e08037cb512252f3612f616a0b28"
dependencies = [
"once_cell",
]
[[package]] [[package]]
name = "pem-rfc7468" name = "pem-rfc7468"
version = "0.2.4" version = "0.2.4"

View file

@ -51,7 +51,7 @@ deno_doc = "0.33.0"
deno_graph = "0.25.0" deno_graph = "0.25.0"
deno_lint = { version = "0.28.0", features = ["docs"] } deno_lint = { version = "0.28.0", features = ["docs"] }
deno_runtime = { version = "0.50.0", path = "../runtime" } deno_runtime = { version = "0.50.0", path = "../runtime" }
deno_task_shell = "0.1.9" deno_task_shell = "0.2.0"
atty = "=0.2.14" atty = "=0.2.14"
base64 = "=0.13.0" base64 = "=0.13.0"