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

@ -35,3 +35,6 @@ unicode-xid = "0.2.0"
[dev-dependencies]
pretty_assertions = "0.6.1"
[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()
}