Skip to content

Commit

Permalink
Fix: w忘れ
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Jun 20, 2024
1 parent 9903dc5 commit 775805d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 47 deletions.
41 changes: 0 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions crates/voicevox_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ tokio = { workspace = true, features = ["sync", "macros", "rt"] }
tracing.workspace = true
uuid = { workspace = true, features = ["v4", "serde"] }
voicevox_core_macros = { path = "../voicevox_core_macros" }
voicevox-ort = { workspace = true, features = ["ndarray", "download-binaries"] }
zip = { version = "0.6.6", default-features = false, features = [
"deflate-zlib",
] }
Expand All @@ -63,11 +62,11 @@ windows = { version = "0.43.0", features = [

[target."cfg(not(target_family = \"wasm\"))".dependencies]
async_zip = { workspace = true, features = ["deflate"] }
ort = { version = "1.16.3" }
voicevox-ort = { workspace = true, features = ["ndarray", "download-binaries"] }

[lints.rust]
# FIXME: `unsafe impl Send`のもあるが、以下2つのマージにより消える予定
# * https://github.com/VOICEVOX/voicevox_core/pull/725
# * https://github.com/VOICEVOX/voicevox_core/pull/772
unsafe_code = "allow" # WindowsのGPU情報表示に、Win32を利用
unsafe_code = "allow" # WindowsのGPU情報表示に、Win32を利用
rust_2018_idioms = "warn"
4 changes: 1 addition & 3 deletions crates/voicevox_core/src/voice_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,6 @@ pub(crate) mod tokio {
}
}

<<<<<<< HEAD
#[cfg(target_family = "wasm")]
pub(crate) mod tokio {
use std::path::Path;
Expand Down Expand Up @@ -501,7 +500,7 @@ pub(crate) mod tokio {
pub(crate) fn header(&self) -> &VoiceModelHeader {
&self.inner.header()
}
=======
}}
#[cfg(test)]
mod tests {
use once_cell::sync::Lazy;
Expand Down Expand Up @@ -598,6 +597,5 @@ mod tests {
"order": null
}))
.unwrap()
>>>>>>> upstream/main
}
}

0 comments on commit 775805d

Please sign in to comment.