Skip to content

Commit

Permalink
[vvm-async-api] Add: ユーザー辞書APIを追加 (#538)
Browse files Browse the repository at this point in the history
Co-authored-by: qryxip <[email protected]>
Co-authored-by: Hiroshiba <[email protected]>
Co-authored-by: Ryo Yamashita <[email protected]>
Co-authored-by: Qryxip <[email protected]>
Co-authored-by: Hiroshiba <[email protected]>
  • Loading branch information
5 people authored Jul 22, 2023
1 parent c3f61e2 commit 8cf307d
Show file tree
Hide file tree
Showing 32 changed files with 2,098 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
# cargoのキャッシュが原因でテストが失敗する場合はバージョン部分をカウントアップすること
key: "v2-cargo-test-cache-${{ matrix.features }}-${{ matrix.os }}"
- name: Run cargo test
run: cargo test -vv --features ,${{ matrix.features }} -- --include-ignored
run: RUST_BACKTRACE=full cargo test -vv --features ,${{ matrix.features }} -- --include-ignored

c-header:
runs-on: ubuntu-latest
Expand Down
142 changes: 115 additions & 27 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ clap = { version = "4.0.10", features = ["derive"] }
const-default = { version = "1.0.0", features = ["derive"] }
easy-ext = "1.0.1"
fs-err = { version = "2.9.0", features = ["tokio"] }
itertools = "0.10.5"
once_cell = "1.15.0"
regex = "1.6.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = { version = "1.0.85", features = ["preserve_order"] }
strum = { version = "0.24.1", features = ["derive"] }
tempfile = "3.6.0"
test_util = { path = "crates/test_util" }
thiserror = "1.0.37"
tracing = { version = "0.1.37", features = ["log"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
uuid = { version = "1.4.0", features = ["v4", "serde"] }
voicevox_core = { path = "crates/voicevox_core" }
tokio = { version = "1.25.0", features = ["rt", "rt-multi-thread", "macros", "sync"] }
derive-getters = "0.2.0"
Expand Down
Loading

0 comments on commit 8cf307d

Please sign in to comment.