Extract build.rs

This commit is contained in:
Yehuda Katz
2019-12-02 13:14:51 -08:00
parent fe66b4c8ea
commit 87dbd3d5ac
15 changed files with 143 additions and 38 deletions

View File

@ -18,3 +18,6 @@ nom-tracable = "0.4.1"
language-reporting = "0.4.0"
termcolor = "1.0.5"
pretty = "0.5.2"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }

View File

@ -0,0 +1,3 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
nu_build::build()
}