26 lines
590 B
TOML
26 lines
590 B
TOML
[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]
|
|
openblas-src = { version = "0.9.0", features = ["system"] }
|
|
serde = {version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
cblas-src = "0.1"
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.54"
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
flate2 = "1.0.17"
|
|
tar = "0.4.29"
|
|
curl = "0.4.33"
|
|
anyhow = "1.0.32"
|
|
|
|
[dev-dependencies]
|
|
audrey = "0.2"
|