Skip to content

Commit

Permalink
Enable the memory-init-cow feature building the C API (#4690)
Browse files Browse the repository at this point in the history
This feature was accidentally disabled by default when building the C API.
  • Loading branch information
alexcrichton authored Aug 11, 2022
1 parent 0c2e049 commit 380db48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 380db48

Please sign in to comment.