Skip to content

Commit

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

* make generate
  • Loading branch information
yamachu authored Feb 11, 2025
1 parent 2f3f9d1 commit 41c4338
Show file tree
Hide file tree
Showing 4 changed files with 198 additions and 2 deletions.
2 changes: 1 addition & 1 deletion binding/voicevox_core
Submodule voicevox_core updated 65 files
+8 −43 .github/workflows/build_and_deploy.yml
+4 −3 .github/workflows/test.yml
+1 −1 Cargo.lock
+0 −1 Cargo.toml
+2 −2 README.md
+5 −5 build_util/make_ios_xcframework.bash
+36 −11 crates/downloader/src/main.rs
+0 −1 crates/voicevox_core/Cargo.toml
+1 −0 crates/voicevox_core/src/__internal/interop.rs
+2 −6 crates/voicevox_core/src/asyncs.rs
+10 −5 crates/voicevox_core/src/blocking.rs
+7 −0 crates/voicevox_core/src/convert.rs
+11 −9 crates/voicevox_core/src/devices.rs
+3 −0 crates/voicevox_core/src/engine/audio_file.rs
+36 −67 crates/voicevox_core/src/engine/model.rs
+3 −0 crates/voicevox_core/src/engine/open_jtalk.rs
+1 −0 crates/voicevox_core/src/error.rs
+11 −9 crates/voicevox_core/src/infer/runtimes/onnxruntime.rs
+59 −11 crates/voicevox_core/src/lib.rs
+11 −8 crates/voicevox_core/src/metas.rs
+2 −5 crates/voicevox_core/src/nonblocking.rs
+40 −12 crates/voicevox_core/src/synthesizer.rs
+9 −0 crates/voicevox_core/src/user_dict/dict.rs
+4 −0 crates/voicevox_core/src/user_dict/word.rs
+1 −3 crates/voicevox_core/src/version.rs
+5 −0 crates/voicevox_core/src/voice_model.rs
+131 −3 crates/voicevox_core_c_api/include/voicevox_core.h
+6 −11 crates/voicevox_core_c_api/src/compatible_engine.rs
+131 −6 crates/voicevox_core_c_api/src/lib.rs
+2 −0 crates/voicevox_core_c_api/src/result_code.rs
+4 −2 crates/voicevox_core_c_api/tests/e2e/testcases/compatible_engine.rs
+3 −2 crates/voicevox_core_c_api/tests/e2e/testcases/global_info.rs
+6 −1 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/AccentPhrase.java
+17 −36 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/AudioQuery.java
+6 −1 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/CharacterMeta.java
+13 −3 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/GlobalInfo.java
+6 −1 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/Mora.java
+6 −1 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/StyleMeta.java
+1 −1 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/StyleType.java
+6 −1 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/UserDictWord.java
+2 −9 crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/blocking/Onnxruntime.java
+1 −18 crates/voicevox_core_java_api/src/common.rs
+15 −4 crates/voicevox_core_java_api/src/onnxruntime.rs
+1 −0 crates/voicevox_core_python_api/Cargo.toml
+19 −9 crates/voicevox_core_python_api/README.md
+15 −15 crates/voicevox_core_python_api/poetry.lock
+1 −1 crates/voicevox_core_python_api/pyproject.toml
+9 −9 crates/voicevox_core_python_api/python/test/test_asyncio_user_dict_manipulate.py
+36 −8 crates/voicevox_core_python_api/python/test/test_audio_query.py
+9 −9 crates/voicevox_core_python_api/python/test/test_blocking_user_dict_manipulate.py
+3 −2 crates/voicevox_core_python_api/python/voicevox_core/__init__.py
+131 −10 crates/voicevox_core_python_api/python/voicevox_core/_models/__init__.py
+16 −3 crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi
+16 −5 crates/voicevox_core_python_api/python/voicevox_core/_rust/blocking.pyi
+6 −2 crates/voicevox_core_python_api/python/voicevox_core/asyncio.py
+4 −3 crates/voicevox_core_python_api/python/voicevox_core/blocking.py
+48 −9 crates/voicevox_core_python_api/src/convert.rs
+84 −49 crates/voicevox_core_python_api/src/lib.rs
+4 −0 docs/ghpages/apis/c_api/doxygen/Doxyfile
+2 −2 example/cpp/unix/CMakeLists.txt
+1 −1 example/cpp/unix/simple_tts.cpp
+3 −6 example/kotlin/README.md
+2 −3 example/python/README.md
+4 −5 example/python/run-asyncio.py
+7 −31 example/python/run.py
Loading

0 comments on commit 41c4338

Please sign in to comment.