From 68552151e8e5233cd05f65f4a3cda52f4249847d Mon Sep 17 00:00:00 2001 From: "K.J. Valencik" Date: Sun, 29 Nov 2020 22:24:10 -0500 Subject: [PATCH] hack(test/napi): Remove neon-build to test dynamic loading --- test/napi/native/Cargo.toml | 4 ---- test/napi/native/build.rs | 7 ------- 2 files changed, 11 deletions(-) delete mode 100644 test/napi/native/build.rs 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... -}