Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion binding/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ replace-hash:
$(shell sed -i.bak 's/<VoicevoxCoreCommitHash>.*<\/VoicevoxCoreCommitHash>/<VoicevoxCoreCommitHash>$(VERSION)<\/VoicevoxCoreCommitHash>/' ../src/VoicevoxCoreSharp.Core/VoicevoxCoreSharp.Core.Metas.props)

build/dev-library:
cd voicevox_core; cargo build --release -p voicevox_core_c_api --features load-onnxruntime
cd voicevox_core; cargo build --release -p voicevox_core_c_api --features load-onnxruntime -F voicevox_core/buildtime-download-onnxruntime

build/dev-library/ios:
cd voicevox_core; cargo build --release -p voicevox_core_c_api --features link-onnxruntime
Expand Down
2 changes: 1 addition & 1 deletion binding/voicevox_core
Submodule voicevox_core updated 35 files
+1 −0 .cargo/config.toml
+3 −0 .gitattributes
+2 −2 .github/workflows/benchmarks.yml
+8 −1 .github/workflows/build-downloader.yml
+18 −4 .github/workflows/build.yml
+15 −7 .github/workflows/test.yml
+17 −0 CHANGELOG.md
+135 −305 Cargo.lock
+11 −9 Cargo.toml
+88 −0 build_util/codesign_macos.bash
+7 −4 build_util/codesign_windows.bash
+0 −2 crates/test_util/Cargo.toml
+0 −32 crates/test_util/build.rs
+35 −2 crates/test_util/src/lib.rs
+11 −4 crates/voicevox_core/Cargo.toml
+52 −0 crates/voicevox_core/build.rs
+0 −1 crates/voicevox_core/onnxruntime-version.txt
+1 −0 crates/voicevox_core/onnxruntime-version.txt
+252 −68 crates/voicevox_core/src/core/infer/runtimes/onnxruntime.rs
+25 −20 crates/voicevox_core/src/lib.rs
+56 −0 crates/voicevox_core_build_features/Cargo.toml
+1 −0 crates/voicevox_core_build_features/LICENSE
+5 −0 crates/voicevox_core_build_features/README.md
+15 −0 crates/voicevox_core_build_features/onnxruntime-libs.toml
+1 −0 crates/voicevox_core_build_features/onnxruntime-version.txt
+245 −0 crates/voicevox_core_build_features/src/download.rs
+11 −0 crates/voicevox_core_build_features/src/lib.rs
+64 −0 crates/voicevox_core_build_features/src/link.rs
+1 −2 crates/voicevox_core_c_api/tests/e2e/log_mask.rs
+4 −1 crates/voicevox_core_c_api/tests/e2e/main.rs
+1 −1 crates/voicevox_core_java_api/lib/src/test/java/jp/hiroshiba/voicevoxcore/TestUtils.java
+5 −4 crates/voicevox_core_python_api/python/benches/test_tts.py
+5 −4 crates/voicevox_core_python_api/python/test/conftest.py
+6 −7 deny.toml
+1 −0 onnxruntime-version.txt
+1 −1 rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VoicevoxOnnxRuntimeVersion>1.17.3</VoicevoxOnnxRuntimeVersion>
<VoicevoxCoreCommitHash>27f5a947c5ac65f9deb46fd0ee691b180106f65d</VoicevoxCoreCommitHash>
<VoicevoxCoreCommitHash>da64e03981bcf0d2ccc8a5bbe06ae91ed274cb90</VoicevoxCoreCommitHash>
</PropertyGroup>
</Project>
Loading