mirror of
https://github.com/neodyland/sbv2-api.git
synced 2025-12-22 15:39:58 +00:00
26 lines
580 B
TOML
26 lines
580 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["./crates/sbv2_api", "./crates/sbv2_core", "./crates/sbv2_bindings", "./crates/sbv2_wasm"]
|
|
|
|
[workspace.package]
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
description = "Style-Bert-VITSの推論ライブラリ"
|
|
license = "MIT"
|
|
readme = "./README.md"
|
|
repository = "https://github.com/neodyland/sbv2-api"
|
|
documentation = "https://docs.rs/sbv2_core"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0.100"
|
|
dotenvy = "0.15.7"
|
|
env_logger = "0.11.6"
|
|
ndarray = "0.17.1"
|
|
once_cell = "1.20.3"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|