From a0dbc99753e3391575f3377e200e25ef558d6ef6 Mon Sep 17 00:00:00 2001 From: Benjamin Coenen <5719034+bnjjj@users.noreply.github.com> Date: Wed, 1 Sep 2021 14:19:48 +0200 Subject: [PATCH] fix(engine-dylib): add log feature for tracing in engine-dylib Signed-off-by: Benjamin Coenen <5719034+bnjjj@users.noreply.github.com> --- lib/engine-dylib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/engine-dylib/Cargo.toml b/lib/engine-dylib/Cargo.toml index e3b6350cdbd..1b356e07020 100644 --- a/lib/engine-dylib/Cargo.toml +++ b/lib/engine-dylib/Cargo.toml @@ -18,7 +18,7 @@ wasmer-engine = { path = "../engine", version = "2.0.0" } wasmer-object = { path = "../object", version = "2.0.0" } serde = { version = "1.0", features = ["derive", "rc"] } cfg-if = "1.0" -tracing = "0.1" +tracing = { version = "0.1", features = ["log"] } leb128 = "0.2" libloading = "0.7" tempfile = "3.1"