vosk-rs/Cargo.toml

26 lines
597 B
TOML
Raw Normal View History

2020-08-17 22:09:19 +04:00
[package]
name = "vosk"
version = "0.1.0"
authors = ["Andrey Tkachenko <andreytkachenko64@gmail.com>"]
edition = "2018"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-08-18 20:49:31 +04:00
cblas = "0.2.0"
2020-08-27 22:20:15 +04:00
openblas-src = { version = "0.9.0", features = ["cache", "static"] }
2020-08-19 17:54:09 +04:00
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
2020-08-17 22:09:19 +04:00
[build-dependencies]
2020-08-19 17:54:09 +04:00
bindgen = "0.54"
cc = { version = "1.0", features = ["parallel"] }
2020-08-19 19:58:24 +04:00
flate2 = "1.0.17"
tar = "0.4.29"
curl = "0.4.33"
anyhow = "1.0.32"
2020-08-17 22:09:19 +04:00
[dev-dependencies]
2020-08-19 17:54:09 +04:00
audrey = "0.2"