-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
executable file
·37 lines (33 loc) · 1.07 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
36
37
[package]
name = "precise-rs"
version = "0.1.0"
authors = ["sheosi <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "Reimplementation of the precise hotword engine on Tract"
homepage = "https://github.com/sheosi/tract-precise"
repository = "https://github.com/sheosi/tract-precise"
keywords = ["hotword", "precise", "mycroft", "wake", "tract"]
categories = ["multimedia::audio"]
exclude = ["hey-mycroft.pb", "hey-mycroft.pb.params", "test.wav"]
[dependencies]
tflite= {git = "https://github.com/boncheolgu/tflite-rs"}
ndarray = "^0.15"
thiserror = "^1.0"
serde_json = "^1.0"
serde = {version="^1.0", features=["derive"]}
#mfcc = {git="https://github.com/sheosi/mfcc"}
#mfcc = {path="../mfcc", default-features=false, features=["fftextern"]}
#mfcc = {path="../mfcc"}
mfcc-2 = {git="https://github.com/secretsauceai/mfcc-rust", optional = true}
[dev-dependencies]
hound = "^3.4"
criterion = "0.3"
assert_approx_eq = "^1.0"
[[bench]]
name = "precise_benches"
path = "src/benches/precise_bench.rs"
harness = false
[features]
default = ["new-mfcc"]
new-mfcc = ["mfcc-2"]