From 582983dc4248e30055f47ba07aa923078a7edc30 Mon Sep 17 00:00:00 2001 From: brendanzab Date: Wed, 11 Jan 2023 11:44:15 +1100 Subject: [PATCH] Upgrade trycmd to v0.14.10 --- Cargo.lock | 45 ++++++++++++++++++++++++--------------------- fathom/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63be523f4..d0d5d3e0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -106,12 +106,6 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -[[package]] -name = "bytes" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" - [[package]] name = "cc" version = "1.0.78" @@ -171,16 +165,6 @@ dependencies = [ "unicode-width", ] -[[package]] -name = "combine" -version = "4.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" -dependencies = [ - "bytes", - "memchr", -] - [[package]] name = "concolor" version = "0.0.11" @@ -694,6 +678,15 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" +[[package]] +name = "nom8" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" +dependencies = [ + "memchr", +] + [[package]] name = "normalize-line-endings" version = "0.3.0" @@ -1207,23 +1200,33 @@ dependencies = [ "serde", ] +[[package]] +name = "toml_datetime" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "808b51e57d0ef8f71115d8f3a01e7d3750d01c79cac4b3eda910f4389fdf92fd" +dependencies = [ + "serde", +] + [[package]] name = "toml_edit" -version = "0.14.4" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5376256e44f2443f8896ac012507c19a012df0fe8758b55246ae51a2279db51f" +checksum = "a34cc558345efd7e88b9eda9626df2138b80bb46a7606f695e751c892bc7dac6" dependencies = [ - "combine", "indexmap", "itertools", + "nom8", "serde", + "toml_datetime", ] [[package]] name = "trycmd" -version = "0.13.7" +version = "0.14.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5377b33cbe8bb69d97da63e2a2266065a642a47cc9bb3d783c28279d0029fea" +checksum = "01662d21325d18cd4acae7e1dc9f29a2a88b7fbb7f9bc427c4a692aaec5773ac" dependencies = [ "glob", "humantime", diff --git a/fathom/Cargo.toml b/fathom/Cargo.toml index d3e51d214..bb5c98618 100644 --- a/fathom/Cargo.toml +++ b/fathom/Cargo.toml @@ -41,5 +41,5 @@ itertools = "0.10.1" libtest-mimic = "0.6.0" serde = { version = "1.0", features = ["derive"] } toml = "0.5" -trycmd = "0.13.4" +trycmd = "0.14.10" walkdir = "2.3.2"