Compare commits

...

1 Commits

Author SHA1 Message Date
tuna2134
159f58026d release v0.2.0-alpha7 2025-07-21 11:58:37 +09:00
4 changed files with 8 additions and 8 deletions

4
.gitignore vendored
View File

@@ -1,10 +1,10 @@
target/
models/
!models/.gitkeep
venv/
.venv/
.env
*.wav
node_modules/
dist/
*.csv
*.bin
*.bin

8
Cargo.lock generated
View File

@@ -2308,7 +2308,7 @@ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
[[package]]
name = "sbv2_api"
version = "0.2.0-alpha6"
version = "0.2.0-alpha7"
dependencies = [
"anyhow",
"axum",
@@ -2324,7 +2324,7 @@ dependencies = [
[[package]]
name = "sbv2_bindings"
version = "0.2.0-alpha6"
version = "0.2.0-alpha7"
dependencies = [
"anyhow",
"ndarray",
@@ -2334,7 +2334,7 @@ dependencies = [
[[package]]
name = "sbv2_core"
version = "0.2.0-alpha6"
version = "0.2.0-alpha7"
dependencies = [
"anyhow",
"base64 0.22.1",
@@ -2360,7 +2360,7 @@ dependencies = [
[[package]]
name = "sbv2_wasm"
version = "0.2.0-alpha6"
version = "0.2.0-alpha7"
dependencies = [
"js-sys",
"ndarray",

View File

@@ -3,7 +3,7 @@ resolver = "3"
members = ["./crates/sbv2_api", "./crates/sbv2_core", "./crates/sbv2_bindings", "./crates/sbv2_wasm"]
[workspace.package]
version = "0.2.0-alpha6"
version = "0.2.0-alpha7"
edition = "2021"
description = "Style-Bert-VITSの推論ライブラリ"
license = "MIT"

View File

@@ -19,7 +19,7 @@ ndarray.workspace = true
npyz = { version = "0.8.4", optional = true }
num_cpus = "1.16.0"
once_cell.workspace = true
ort = { git = "https://github.com/pykeio/ort.git", version = "2.0.0-rc.9", optional = true }
ort = { git = "https://github.com/pykeio/ort.git", version = "2.0.0-rc.10", optional = true }
regex = "1.10.6"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"