diff --git a/.gitignore b/.gitignore index 61ed004..e20cdf3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,10 @@ target/ models/ !models/.gitkeep -venv/ +.venv/ .env *.wav node_modules/ dist/ *.csv -*.bin \ No newline at end of file +*.bin diff --git a/Cargo.lock b/Cargo.lock index 6f67a47..d1d6ada 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index cbd0d89..3acefb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/crates/sbv2_core/Cargo.toml b/crates/sbv2_core/Cargo.toml index 2d2a1db..1b511e3 100644 --- a/crates/sbv2_core/Cargo.toml +++ b/crates/sbv2_core/Cargo.toml @@ -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"