diff --git a/test/napi/native/Cargo.toml b/test/napi/native/Cargo.toml index e8a940578..640fe3ab7 100644 --- a/test/napi/native/Cargo.toml +++ b/test/napi/native/Cargo.toml @@ -3,7 +3,6 @@ name = "napi" version = "0.1.0" authors = ["The Neon Community "] license = "MIT" -build = "build.rs" exclude = ["artifacts.json", "index.node"] edition = "2018" @@ -11,9 +10,6 @@ edition = "2018" name = "napi" crate-type = ["cdylib"] -[build-dependencies] -neon-build = {version = "*", path = "../../../crates/neon-build"} - [dependencies.neon] version = "*" path = "../../../" diff --git a/test/napi/native/build.rs b/test/napi/native/build.rs deleted file mode 100644 index 687a66194..000000000 --- a/test/napi/native/build.rs +++ /dev/null @@ -1,7 +0,0 @@ -extern crate neon_build; - -fn main() { - neon_build::setup(); // must be called in build.rs - - // add project-specific build logic here... -}