Enable the memory-init-cow feature building the C API (#4690)

This feature was accidentally disabled by default when building the C API.
This commit is contained in:
Alex Crichton
2022-08-11 15:09:46 -05:00
committed by GitHub
parent 0c2e0494bd
commit 380db48ce6

View File

@@ -32,8 +32,9 @@ wasmtime-wasi = { path = "../wasi", optional = true }
cap-std = { version = "0.25.0", optional = true }
[features]
default = ['jitdump', 'wat', 'wasi', 'cache', 'parallel-compilation']
default = ['jitdump', 'wat', 'wasi', 'cache', 'parallel-compilation', 'memory-init-cow']
jitdump = ["wasmtime/jitdump"]
cache = ["wasmtime/cache"]
parallel-compilation = ['wasmtime/parallel-compilation']
wasi = ['wasi-cap-std-sync', 'wasmtime-wasi', 'cap-std']
memory-init-cow = ["wasmtime/memory-init-cow"]