diff --git a/Cargo.lock b/Cargo.lock index 02fdc75..041a007 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -532,6 +532,7 @@ name = "rasp" version = "0.1.0" dependencies = [ "libvm 0.1.0", + "rerun_except 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "snafu 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index ab14faa..9012e20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,6 @@ edition = "2018" structopt = "0.3" snafu = "0.6.2" libvm = { path = "src/libvm" } + +[build-dependencies] +rerun_except = "0.1" diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..652470d --- /dev/null +++ b/build.rs @@ -0,0 +1,7 @@ +use rerun_except::rerun_except; + +fn main() { + rerun_except(&[ + "*.asm", + ]).unwrap(); +}