diff --git a/Cargo.toml b/Cargo.toml index f3a1755..a3ed748 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,3 +7,4 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +nom = { git = "https://github.com/tomalexander/nom.git", branch = "take_until_parser_matches" } diff --git a/src/duster/mod.rs b/src/duster/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/main.rs b/src/main.rs index f328e4d..55637b1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1 +1,5 @@ +extern crate nom; + +mod duster; + fn main() {}