From 445e539ae0529ef46ce52bd739526f74caa71aac Mon Sep 17 00:00:00 2001 From: Max de Danschutter <43446207+maxded@users.noreply.github.com> Date: Thu, 18 Feb 2021 18:29:52 +0100 Subject: [PATCH] Disable wasmtime default-features in wasi crate (#2664) --- crates/wasi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi/Cargo.toml b/crates/wasi/Cargo.toml index 953c0371ae..404ac5cf71 100644 --- a/crates/wasi/Cargo.toml +++ b/crates/wasi/Cargo.toml @@ -16,5 +16,5 @@ build = "build.rs" wasi-common = { path = "../wasi-common", version = "0.23.0" } wiggle = { path = "../wiggle", default-features = false, version = "0.23.0" } wasmtime-wiggle = { path = "../wiggle/wasmtime", default-features = false, version = "0.23.0" } -wasmtime = { path = "../wasmtime", version = "0.23.0" } +wasmtime = { path = "../wasmtime", default-features = false, version = "0.23.0" } anyhow = "1.0"