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

feat(task): support sleep suffixes (#16425)

Co-authored-by: sigmaSd <sigmasd@users.noreply.github.com>
This commit is contained in:
David Sherret 2022-10-25 21:14:08 -04:00 committed by GitHub
parent ab0c33ebf8
commit 4d166e638f
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

@ -1226,9 +1226,9 @@ dependencies = [
[[package]]
name = "deno_task_shell"
version = "0.6.0"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e4e1c86712e2cded9046ac6748cbe5dba87042f045265a51b1ac2629a7fa6c5"
checksum = "a275d3f78e828b4adddf20a472d9ac1927ac311aac48dca869bb8653d5a4a0b9"
dependencies = [
"anyhow",
"futures",

View file

@ -57,7 +57,7 @@ deno_emit = "0.10.0"
deno_graph = "0.37.1"
deno_lint = { version = "0.34.0", features = ["docs"] }
deno_runtime = { version = "0.81.0", path = "../runtime" }
deno_task_shell = "0.6.0"
deno_task_shell = "0.7.0"
napi_sym = { path = "./napi_sym", version = "0.3.0" }
atty = "=0.2.14"