diff --git a/Cargo.lock b/Cargo.lock index 6d688dd9..bfdcb933 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,9 +97,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.80" +version = "1.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" +checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" [[package]] name = "async-compression" @@ -2075,14 +2075,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" +checksum = "af06656561d28735e9c1cd63dfd57132c8155426aa6af24f36a00a351f88c48e" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.4", + "toml_edit 0.22.7", ] [[package]] @@ -2102,20 +2102,20 @@ checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" dependencies = [ "indexmap 2.2.2", "toml_datetime", - "winnow", + "winnow 0.5.39", ] [[package]] name = "toml_edit" -version = "0.22.4" +version = "0.22.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951" +checksum = "18769cd1cec395d70860ceb4d932812a0b4d06b1a4bb336745a4d21b9496e992" dependencies = [ "indexmap 2.2.2", "serde", "serde_spanned", "toml_datetime", - "winnow", + "winnow 0.6.5", ] [[package]] @@ -2493,6 +2493,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +dependencies = [ + "memchr", +] + [[package]] name = "winx" version = "0.36.3" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index ecd7bc3e..d722f8b8 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -43,7 +43,7 @@ tokio = { features = ["io-std", "time", "process", "rt", "net"], version = ">= 1 tokio-util = { features = ["io-util"], version = "0.7" } tracing = "0.1" tempfile = "3.10.1" -toml = "0.8.10" +toml = "0.8.11" xshell = { version = "0.2", optional = true } uuid = { version = "1.7.0", features = ["v4"] } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 80739171..0e2fb12b 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -12,7 +12,7 @@ name = "xtask" path = "src/xtask.rs" [dependencies] -anyhow = "1.0.80" +anyhow = "1.0.81" camino = "1.1" chrono = { version = "0.4.35", default_features = false, features = ["std"] } fn-error-context = "0.2.1"