diff --git a/Cargo.lock b/Cargo.lock index fe91806..b7a5bad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -92,9 +92,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "10f00e1f6e58a40e807377c75c6a7f97bf9044fab57816f2414e6f5f4499d7b8" [[package]] name = "autocfg" @@ -146,9 +146,9 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "cc" -version = "1.1.16" +version = "1.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9d013ecb737093c0e86b151a7b837993cf9ec6c502946cfb44bedc392421e0b" +checksum = "b62ac837cdb5cb22e10a256099b4fc502b1dfe560cb282963a974d7abd80e476" dependencies = [ "shlex", ] diff --git a/crates/deno_task_shell/Cargo.toml b/crates/deno_task_shell/Cargo.toml index 4d192a0..df9364c 100644 --- a/crates/deno_task_shell/Cargo.toml +++ b/crates/deno_task_shell/Cargo.toml @@ -15,21 +15,21 @@ shell = ["futures", "glob", "os_pipe", "path-dedot", "tokio", "tokio-util"] serialization = ["serde"] [dependencies] -anyhow = "1.0.75" -futures = { version = "0.3.29", optional = true } +anyhow = "1.0.87" +futures = { version = "0.3.30", optional = true } glob = { version = "0.3.1", optional = true } path-dedot = { version = "3.1.1", optional = true } tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "process", "rt-multi-thread", "sync", "time"], optional = true } -tokio-util = { version = "0.7.10", optional = true } -os_pipe = { version = "1.1.4", optional = true } +tokio-util = { version = "0.7.12", optional = true } +os_pipe = { version = "1.2.1", optional = true } serde = { version = "1", features = ["derive"], optional = true } -thiserror = "1.0.58" -pest = "2.6.0" -pest_derive = "2.6.0" +thiserror = "1.0.63" +pest = "2.7.12" +pest_derive = "2.7.12" dirs = "5.0.1" [dev-dependencies] -parking_lot = "0.12.1" +parking_lot = "0.12.3" pretty_assertions = "1" -serde_json = "1.0.111" -tempfile = "3.8.1" +serde_json = "1.0.128" +tempfile = "3.12.0" diff --git a/crates/shell/Cargo.toml b/crates/shell/Cargo.toml index c2029e6..601fdc3 100644 --- a/crates/shell/Cargo.toml +++ b/crates/shell/Cargo.toml @@ -19,12 +19,12 @@ path = "src/main.rs" [features] [dependencies] -anyhow = "1.0.86" +anyhow = "1.0.87" clap = { version = "4.5.17", features = ["derive"] } deno_task_shell = { path = "../deno_task_shell" } futures = "0.3.30" rustyline = "14.0.0" -tokio = "1.39.2" +tokio = "1.40.0" uu_ls = "0.0.27" dirs = "5.0.1"