From 383cb6d4dbc03d347931bfcf96849137cece7d0c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Dec 2021 16:02:56 -0300 Subject: [PATCH] chore(deps) Update Rust crate heck to 0.4 (#3073) Co-authored-by: Renovate Bot Co-authored-by: Lucas Nogueira --- tooling/bundler/Cargo.toml | 2 +- tooling/bundler/src/bundle/linux/debian.rs | 2 +- tooling/cli.rs/Cargo.lock | 12 +++++++++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 176371d34..4a7478a0e 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -55,7 +55,7 @@ chrono = "0.4" dirs-next = "2.0" [target."cfg(target_os = \"linux\")".dependencies] -heck = "0.3" +heck = "0.4" [lib] name = "tauri_bundler" diff --git a/tooling/bundler/src/bundle/linux/debian.rs b/tooling/bundler/src/bundle/linux/debian.rs index 520357e29..e25949b91 100644 --- a/tooling/bundler/src/bundle/linux/debian.rs +++ b/tooling/bundler/src/bundle/linux/debian.rs @@ -26,7 +26,7 @@ use super::super::common; use crate::Settings; use anyhow::Context; -use heck::KebabCase; +use heck::ToKebabCase; use image::{self, png::PngDecoder, GenericImageView, ImageDecoder}; use libflate::gzip; use std::process::{Command, Stdio}; diff --git a/tooling/cli.rs/Cargo.lock b/tooling/cli.rs/Cargo.lock index b03e97961..8f712c858 100644 --- a/tooling/cli.rs/Cargo.lock +++ b/tooling/cli.rs/Cargo.lock @@ -250,7 +250,7 @@ version = "3.0.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe8c0f28022faaef0387fa54f8e33fee22b804a88bbd91303197da2ff8ca6a5d" dependencies = [ - "heck", + "heck 0.3.3", "proc-macro-error", "proc-macro2", "quote", @@ -703,6 +703,12 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "heck" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" + [[package]] name = "hermit-abi" version = "0.1.19" @@ -1951,7 +1957,7 @@ dependencies = [ "dirs-next", "glob", "handlebars", - "heck", + "heck 0.4.0", "hex", "icns", "image", @@ -1985,7 +1991,7 @@ dependencies = [ "encode_unicode", "glob", "handlebars", - "heck", + "heck 0.3.3", "include_dir", "json-patch", "lazy_static",