From 83a57b96a9f915b427259d66a8a4dba505f01ca5 Mon Sep 17 00:00:00 2001 From: Sven Kanoldt Date: Tue, 26 Mar 2024 09:53:20 +0100 Subject: [PATCH] chore(deps): bump heck to 0.5 and gix-config to 0.36 (#1160) --- Cargo.lock | 58 ++++++++++++++++-------------------------------------- Cargo.toml | 12 +++++------ 2 files changed, 23 insertions(+), 47 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 54a06883..f573b056 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -167,15 +167,6 @@ dependencies = [ "serde", ] -[[package]] -name = "btoi" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad" -dependencies = [ - "num-traits", -] - [[package]] name = "cargo-generate" version = "0.19.0" @@ -192,7 +183,7 @@ dependencies = [ "fs-err", "git2", "gix-config", - "heck 0.4.1", + "heck", "home", "ignore", "indexmap", @@ -269,7 +260,7 @@ version = "4.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" dependencies = [ - "heck 0.5.0", + "heck", "proc-macro2", "quote", "syn", @@ -601,23 +592,23 @@ dependencies = [ [[package]] name = "gix-actor" -version = "0.30.0" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a7bb9fad6125c81372987c06469601d37e1a2d421511adb69971b9083517a8a" +checksum = "45c3a3bde455ad2ee8ba8a195745241ce0b770a8a26faae59fcf409d01b28c46" dependencies = [ "bstr", - "btoi", "gix-date", + "gix-utils", "itoa", "thiserror", - "winnow 0.5.40", + "winnow", ] [[package]] name = "gix-config" -version = "0.34.0" +version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e62bf2073b6ce3921ffa6d8326f645f30eec5fc4a8e8a4bc0fcb721a2f3f69dc" +checksum = "62129c75e4b6229fe15fb9838cdc00c655e87105b651e4edd7c183fc5288b5d1" dependencies = [ "bstr", "gix-config-value", @@ -631,7 +622,7 @@ dependencies = [ "smallvec", "thiserror", "unicode-bom", - "winnow 0.5.40", + "winnow", ] [[package]] @@ -719,21 +710,21 @@ dependencies = [ [[package]] name = "gix-object" -version = "0.41.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693ce9d30741506cb082ef2d8b797415b48e032cce0ab23eff894c19a7e4777b" +checksum = "3d4f8efae72030df1c4a81d02dbe2348e748d9b9a11e108ed6efbd846326e051" dependencies = [ "bstr", - "btoi", "gix-actor", "gix-date", "gix-features", "gix-hash", + "gix-utils", "gix-validate", "itoa", "smallvec", "thiserror", - "winnow 0.5.40", + "winnow", ] [[package]] @@ -751,9 +742,9 @@ dependencies = [ [[package]] name = "gix-ref" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5818958994ad7879fa566f5441ebcc48f0926aa027b28948e6fbf6578894dc31" +checksum = "fd4aba68b925101cb45d6df328979af0681364579db889098a0de75b36c77b65" dependencies = [ "gix-actor", "gix-date", @@ -768,7 +759,7 @@ dependencies = [ "gix-validate", "memmap2", "thiserror", - "winnow 0.5.40", + "winnow", ] [[package]] @@ -841,12 +832,6 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" -[[package]] -name = "heck" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" - [[package]] name = "heck" version = "0.5.0" @@ -1836,7 +1821,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.5", + "winnow", ] [[package]] @@ -2173,15 +2158,6 @@ version = "0.52.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" -[[package]] -name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr", -] - [[package]] name = "winnow" version = "0.6.5" diff --git a/Cargo.toml b/Cargo.toml index ba9c4ace..42ac6dc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ dialoguer = "~0.11" indicatif = "~0.17" tempfile = "~3.10" regex = "~1.10" -heck = "~0.4" +heck = "~0.5" walkdir = "~2.4" remove_dir_all = "~0.8" ignore = "~0.4" @@ -28,7 +28,7 @@ home = "~0.5" sanitize-filename = "~0.5" rhai = "~1.17" path-absolutize = "~3.1" -gix-config = "~0.34" +gix-config = "~0.36" paste = "~1.0" names = { version = "~0.14", default-features = false } log = "~0.4" @@ -65,10 +65,10 @@ bstr = "~1.9" version = "~1.5" default-features = false features = [ - "prepush-hook", - "run-cargo-test", - "run-cargo-clippy", - "run-cargo-fmt", + "prepush-hook", + "run-cargo-test", + "run-cargo-clippy", + "run-cargo-fmt", ] [features]