Files
rasp/Cargo.toml
Alek Ratzloff 4ae060c68d Add rerun_except to root crate
Cargo is finding more reasons to do unnecessary rebuilds, so I've added
the rerun_except crate to its build.rs as well to ignore .asm files
before recompiling.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-03-09 16:38:41 -04:00

16 lines
330 B
TOML

[package]
name = "rasp"
version = "0.1.0"
authors = ["Alek Ratzloff <alekratz@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
snafu = "0.6.2"
libvm = { path = "src/libvm" }
[build-dependencies]
rerun_except = "0.1"