forked from xd009642/xd-tts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (33 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "xd-tts"
version = "0.1.0"
edition = "2021"
[features]
default = ["ort/load-dynamic"]
[dependencies]
anyhow = "1.0.65"
# Half version means candle and tract can't live together
#candle-core = { "git" = "https://github.com/huggingface/candle" }
#candle-nn = { "git" = "https://github.com/huggingface/candle" }
#candle-onnx = { "git" = "https://github.com/huggingface/candle" }
clap = { version = "4.4.7", features = ["derive"] }
csv = "1.3.0"
derive = "1.0.0"
deunicode = "1.3.2"
features = "0.10.0"
griffin-lim = { git = "https://github.com/emotechlab/griffin-lim.git" }
hound = "3.5.0"
ndarray = "0.15.6"
ndarray-npy = "0.8.1" # Just for convenient moving to/from python for checking
num2words = "1.0.1"
once_cell = "1.15.0"
ort = { version = "2.0.0-rc.0" }
regex = "1.6.0"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
ssml-parser = "0.1.4"
#tch = "0.8.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
#tract-onnx = { version = "0.20.21" }
unicode-segmentation = "1.10.1"