Add dependencies
This commit is contained in:
parent
8c11eaa9ab
commit
513288dc7e
3 changed files with 13 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
/target
|
||||
Cargo.lock
|
|
@ -6,3 +6,7 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
cpal = "*"
|
||||
anyhow = "*"
|
||||
pocketsphinx = "0.6.0"
|
||||
tts_rust = "0.3.3"
|
|
@ -1,3 +1,10 @@
|
|||
fn main() {
|
||||
use anyhow::Result;
|
||||
use cpal;
|
||||
use pocketsphinx;
|
||||
use tts_rust;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
println!("Hello, world!");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue