Skip to content

Commit

Permalink
Add vendored espeak
Browse files Browse the repository at this point in the history
  • Loading branch information
bplevin36 committed Jun 3, 2021
0 parents commit 017bb24
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
Cargo.lock
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "espeak-sys"]
path = espeak-sys
url = [email protected]:ctatchley/espeak-sys.git
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "espeak-py"
version = "0.1.0"
authors = ["Benjamin Levin <[email protected]>"]
edition = "2018"
description = "Python bindings for a very narrow subset of espeak"

[dependencies]
espeak-sys = { path = "../espeak-sys" }
1 change: 1 addition & 0 deletions espeak-sys
Submodule espeak-sys added at 938d24
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

0 comments on commit 017bb24

Please sign in to comment.