-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (33 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
42 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "jbonsai"
version = "0.4.1"
edition = "2024"
rust-version = "1.88.0"
description = "Voice synthesis library for Text-to-Speech applications (Currently HTS Engine rewrite in Rust language)."
license = "BSD-3-Clause"
repository = "https://github.com/jpreprocess/jbonsai"
keywords = ["tts", "openjtalk", "library"]
categories = ["multimedia::audio"]
documentation = "https://docs.rs/jbonsai"
[features]
default = ["htsvoice"]
binary = ["htsvoice", "dep:hound"]
htsvoice = ["dep:nom"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "is-bonsai"
required-features = ["binary"]
[[example]]
name = "genji"
required-features = ["binary"]
[dependencies]
byteorder = "1.5.0"
thiserror = "2.0.11"
approx = "0.5.1"
serde = { version = "1.0", features = ["derive"] }
nom = { version = "8.0.0", optional = true }
hound = { version = "3.5.1", optional = true }
jlabel = { version = "0.1.4", features = ["serde"] }
jlabel-question = { version = "0.1.4", features = ["regex", "serde"] }