From bcdae0a6fb064bd4dfb07fac440c3eecffafe224 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Mon, 17 Aug 2020 10:55:55 -0700 Subject: [PATCH] Remove dependency on engine-dummy from wasmer api --- Cargo.lock | 1 - lib/api/Cargo.toml | 1 - tests/lib/engine-dummy/Cargo.toml | 2 ++ 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 72e80ff35..df229d420 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2151,7 +2151,6 @@ dependencies = [ "wasmer-compiler-llvm", "wasmer-compiler-singlepass", "wasmer-engine", - "wasmer-engine-dummy", "wasmer-engine-jit", "wasmer-engine-native", "wasmer-types", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 1faadeab4..62ee15dd7 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -30,7 +30,6 @@ winapi = "0.3" [dev-dependencies] # for the binary wasmer.rs -wasmer-engine-dummy = { path = "../../tests/lib/engine-dummy", version = "1.0.0-alpha01.0" } libc = { version = "^0.2.69", default-features = false } wat = "1.0" tempfile = "3.1" diff --git a/tests/lib/engine-dummy/Cargo.toml b/tests/lib/engine-dummy/Cargo.toml index 4dc9b4600..6545dad1c 100644 --- a/tests/lib/engine-dummy/Cargo.toml +++ b/tests/lib/engine-dummy/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Wasmer Engineering Team "] description = "Wasmer placeholder engine" license = "MIT" edition = "2018" +publish = false [dependencies] wasmer-types = { path = "../../../lib/wasmer-types", version = "1.0.0-alpha01.0" } @@ -29,4 +30,5 @@ serialize = [ ] [badges] +# TODO: publish this crate again and deprecate it maintenance = { status = "actively-developed" }