diff --git a/Cargo.toml b/Cargo.toml index 93479c41598..467e65419e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ wabt = "0.9.1" wasmer-clif-backend = { path = "lib/clif-backend" } wasmer-singlepass-backend = { path = "lib/singlepass-backend", optional = true } wasmer-middleware-common = { path = "lib/middleware-common" } -wasmer-runtime = { path = "lib/runtime", default-features = false } +wasmer-runtime = { path = "lib/runtime" } wasmer-runtime-core = { path = "lib/runtime-core" } wasmer-emscripten = { path = "lib/emscripten" } wasmer-llvm-backend = { path = "lib/llvm-backend", optional = true } @@ -100,7 +100,6 @@ backend-singlepass = [ ] wasi = ["wasmer-wasi"] managed = ["backend-singlepass", "wasmer-runtime-core/managed"] - deterministic = ["wasmer-runtime/deterministic"] [[example]] diff --git a/lib/runtime/Cargo.toml b/lib/runtime/Cargo.toml index a3a59f7e50e..838eed3ce57 100644 --- a/lib/runtime/Cargo.toml +++ b/lib/runtime/Cargo.toml @@ -41,7 +41,7 @@ singlepass = ["wasmer-singlepass-backend"] default-backend-singlepass = ["singlepass"] default-backend-llvm = ["llvm"] default-backend-cranelift = ["cranelift"] -deterministic = ["wasmer-singlepass-backend/deterministic"] +deterministic = ["wasmer-singlepass-backend/deterministic", "wasmer-runtime-core/deterministic"] [[bench]] name = "nginx"