From 21290d0ae30a17e6fec7e41c817533616827ebf9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 22:35:15 +0900 Subject: [PATCH] chore(deps): update dependency rust to v1.80.0 (#809) * chore(deps): update dependency rust to v1.80.0 * Fix Clippy lints --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ryo Yamashita --- crates/voicevox_core/src/user_dict/word.rs | 2 ++ crates/voicevox_core_c_api/src/lib.rs | 8 +++++--- rust-toolchain | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/crates/voicevox_core/src/user_dict/word.rs b/crates/voicevox_core/src/user_dict/word.rs index 96a47dcc4..f6bbc182f 100644 --- a/crates/voicevox_core/src/user_dict/word.rs +++ b/crates/voicevox_core/src/user_dict/word.rs @@ -212,8 +212,10 @@ fn calculate_mora_count(pronunciation: &str, accent_type: usize) -> InvalidWordR /// 一部の種類の文字を、全角文字に置き換える。 /// /// 具体的には +/// /// - "!"から"~"までの範囲の文字(数字やアルファベット)は、対応する全角文字に /// - " "などの目に見えない文字は、まとめて全角スペース(0x3000)に +/// /// 変換する。 pub(crate) fn to_zenkaku(surface: &str) -> String { // 元実装:https://github.com/VOICEVOX/voicevox/blob/69898f5dd001d28d4de355a25766acb0e0833ec2/src/components/DictionaryManageDialog.vue#L379-L387 diff --git a/crates/voicevox_core_c_api/src/lib.rs b/crates/voicevox_core_c_api/src/lib.rs index 38c06cd4f..a634e6ae8 100644 --- a/crates/voicevox_core_c_api/src/lib.rs +++ b/crates/voicevox_core_c_api/src/lib.rs @@ -1,6 +1,8 @@ -// ここにあるRustdocはcbindgen向けのものである。safety documentation自体は書くが、Doxygenの慣習に従 -// い`
`で書く。 -#![allow(clippy::missing_safety_doc)] +// ここにある`#[doc]`はすべてrustdocではなくDoxygen向けのものである。 +#![allow( + clippy::doc_lazy_continuation, + clippy::missing_safety_doc // safety documentation自体は書くが、Doxygenの慣習に従い`
`で書く +)] mod c_impls; /// cbindgen:ignore diff --git a/rust-toolchain b/rust-toolchain index b3a8c61e6..aaceec04e 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.79.0 +1.80.0