Enable parallel compilation in the C API by default (#4270)
When parallel compilation was moved behind a compile-time feature in the `wasmtime` crate we forgot to add the corresponding feature to the C API which means that the C API hasn't been using parallel compilation since #1903 (oh dear!)
This commit is contained in:
@@ -32,7 +32,8 @@ wasmtime-wasi = { path = "../wasi", optional = true }
|
|||||||
cap-std = { version = "0.24.1", optional = true }
|
cap-std = { version = "0.24.1", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ['jitdump', 'wat', 'wasi', 'cache']
|
default = ['jitdump', 'wat', 'wasi', 'cache', 'parallel-compilation']
|
||||||
jitdump = ["wasmtime/jitdump"]
|
jitdump = ["wasmtime/jitdump"]
|
||||||
cache = ["wasmtime/cache"]
|
cache = ["wasmtime/cache"]
|
||||||
|
parallel-compilation = ['wasmtime/parallel-compilation']
|
||||||
wasi = ['wasi-cap-std-sync', 'wasmtime-wasi', 'cap-std']
|
wasi = ['wasi-cap-std-sync', 'wasmtime-wasi', 'cap-std']
|
||||||
|
|||||||
Reference in New Issue
Block a user