Add dependencies

This commit is contained in:
hodasemi 2022-02-12 08:44:03 +01:00
parent 8c11eaa9ab
commit 513288dc7e
3 changed files with 13 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
/target /target
Cargo.lock

View file

@ -6,3 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
cpal = "*"
anyhow = "*"
pocketsphinx = "0.6.0"
tts_rust = "0.3.3"

View file

@ -1,3 +1,10 @@
fn main() { use anyhow::Result;
use cpal;
use pocketsphinx;
use tts_rust;
fn main() -> Result<()> {
println!("Hello, world!"); println!("Hello, world!");
Ok(())
} }