Skip to content

Commit

Permalink
Update submodule (#146)
Browse files Browse the repository at this point in the history
* Update submodule

* make generate

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 9a39bef commit c2e73aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion binding/voicevox_core
Submodule voicevox_core updated 32 files
+2 −2 .github/workflows/build_and_deploy.yml
+1 −1 .github/workflows/build_and_deploy_downloader.yml
+8 −8 .github/workflows/download_test.yml
+12 −12 .github/workflows/test.yml
+2 −2 Cargo.lock
+1 −1 Cargo.toml
+29 −0 crates/test_util/build.rs
+7 −0 crates/test_util/compatible_engine.h
+11 −0 crates/test_util/src/typing.rs
+4 −1 crates/voicevox_core/src/__internal/interop.rs
+0 −4 crates/voicevox_core/src/devices.rs
+140 −1 crates/voicevox_core/src/engine/model.rs
+1 −1 crates/voicevox_core/src/manifest.rs
+112 −109 crates/voicevox_core/src/synthesizer.rs
+1 −0 crates/voicevox_core_c_api/Cargo.toml
+9 −11 crates/voicevox_core_c_api/src/c_impls.rs
+109 −0 crates/voicevox_core_c_api/src/compatible_engine.rs
+2 −2 crates/voicevox_core_c_api/src/drop_check.rs
+6 −6 crates/voicevox_core_c_api/src/lib.rs
+6 −4 crates/voicevox_core_c_api/src/object.rs
+1 −13 crates/voicevox_core_c_api/tests/e2e/snapshots.toml
+75 −1 crates/voicevox_core_c_api/tests/e2e/testcases/compatible_engine.rs
+0 −6 crates/voicevox_core_c_api/tests/e2e/testcases/user_dict_manipulate.rs
+13 −0 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/AudioQuery.java
+6 −0 crates/voicevox_core_python_api/python/voicevox_core/_models.py
+1 −1 crates/voicevox_core_python_api/python/voicevox_core/_rust/blocking.pyi
+27 −5 crates/voicevox_core_python_api/src/lib.rs
+2 −2 deny.toml
+3 −2 docs/guide/dev/api-design.md
+76 −77 example/python/run-asyncio.py
+91 −90 example/python/run.py
+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>918f226e139e295a0c256d509185933efe2e84f9</VoicevoxCoreCommitHash>
<VoicevoxCoreCommitHash>c61d5db7f6132bc241d760993ce0f63a450eeb40</VoicevoxCoreCommitHash>
</PropertyGroup>
</Project>

0 comments on commit c2e73aa

Please sign in to comment.