-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
29 lines (25 loc) · 873 Bytes
/
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
[package]
name = "coqui-stt"
version = "1.0.2"
edition = "2021"
authors = ["0/0 <[email protected]>"]
description = "Safe wrapper around the Coqui STT C library"
license = "MPL-2.0"
documentation = "https://docs.rs/coqui-stt"
repository = "https://github.com/tazz4843/coqui-stt"
keywords = ["speech-to-text", "stt"]
categories = ["multimedia::audio"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
coqui-stt-sys = "1.3.0"
deadpool = { version = "0.9", optional = true }
deadpool-sync = { version = "0.1", optional = true }
async-trait = { version = "0.1", optional = true }
[dev-dependencies]
audrey = "0.3"
dasp_signal = "0.11"
dasp_interpolate = { version = "0.11", features = ["linear"] }
[features]
default = []
raw-bindings = []
deadpool_integration = ["deadpool", "deadpool-sync", "async-trait"]