Create empty sibilparser crate

This commit is contained in:
Eryn Wells 2017-04-15 10:19:49 -07:00
parent 4f11be1316
commit 636b0dda9b
2 changed files with 12 additions and 0 deletions

6
parser/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "sibilparser"
version = "0.1.0"
authors = ["Eryn Wells <eryn@erynwells.me>"]
[dependencies]

6
parser/src/lib.rs Normal file
View file

@ -0,0 +1,6 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}