tools: add warp as a dependency
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadey Ratio 2020-05-25 18:11:24 -04:00
parent 8604b67e26
commit 693e2652cd
3 changed files with 1189 additions and 1 deletions

1186
tools/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,3 +11,5 @@ license = "MIT"
anyhow = "1.0"
rust-fsm = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["macros"] }
warp = "0.2"

View File

@ -3,7 +3,7 @@ use anyhow::{anyhow, Result};
fn letter2ipa(l: &String) -> Result<String> {
let l = l.as_str();
// /d f g h j k l m n p q s t w ʃ ʒ ʔ ʙ̥/
// /d f g h j k l m n p q r s t w ʃ ʒ ʔ ʙ̥/
// /a ɛ i o u/
match l {
"a" => Ok("a".into()),