From d694027447ed6ced9a0b2b1526cb09e3f558aeae Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Feb 2022 13:44:28 -0300 Subject: [PATCH] chore(deps) Update Rust crate heck to 0.4 (#3366) Co-authored-by: Renovate Bot Co-authored-by: Lucas Nogueira --- core/tauri-macros/Cargo.toml | 2 +- core/tauri-macros/src/command_module.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index ea8c40506..ed99b79a9 100644 --- a/core/tauri-macros/Cargo.toml +++ b/core/tauri-macros/Cargo.toml @@ -19,7 +19,7 @@ proc-macro = true proc-macro2 = "1" quote = "1" syn = { version = "1", features = [ "full" ] } -heck = "0.3" +heck = "0.4" tauri-codegen = { version = "1.0.0-beta.4", default-features = false, path = "../tauri-codegen" } tauri-utils = { version = "1.0.0-beta.3", path = "../tauri-utils" } diff --git a/core/tauri-macros/src/command_module.rs b/core/tauri-macros/src/command_module.rs index bd8217f46..a8301a8a4 100644 --- a/core/tauri-macros/src/command_module.rs +++ b/core/tauri-macros/src/command_module.rs @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT -use heck::SnakeCase; +use heck::ToSnakeCase; use proc_macro::TokenStream; use proc_macro2::{Span, TokenStream as TokenStream2, TokenTree};