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

@ -24,3 +24,6 @@ subprocess = "0.1.18"
serde_yaml = "0.8"
toml = "0.5.5"
serde_json = "1.0.41"
[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()
}