Browse Source
Enable the gc feature by default in the c-api (#8356)
Match the Wasmtime crate in this respect
pull/8364/head
Alex Crichton
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
0 deletions
-
crates/c-api/Cargo.toml
-
crates/c-api/artifact/Cargo.toml
|
|
@ -50,3 +50,4 @@ coredump = ["wasmtime/coredump"] |
|
|
|
addr2line = ["wasmtime/addr2line"] |
|
|
|
demangle = ["wasmtime/demangle"] |
|
|
|
threads = ["wasmtime/threads"] |
|
|
|
gc = ["wasmtime/gc"] |
|
|
|
|
|
@ -31,6 +31,7 @@ default = [ |
|
|
|
'addr2line', |
|
|
|
'demangle', |
|
|
|
'threads', |
|
|
|
'gc', |
|
|
|
] |
|
|
|
async = ['wasmtime-c-api/async'] |
|
|
|
profiling = ["wasmtime-c-api/profiling"] |
|
|
@ -44,3 +45,4 @@ addr2line = ["wasmtime-c-api/addr2line"] |
|
|
|
demangle = ["wasmtime-c-api/demangle"] |
|
|
|
wat = ["wasmtime-c-api/wat"] |
|
|
|
threads = ["wasmtime-c-api/threads"] |
|
|
|
gc = ["wasmtime-c-api/gc"] |
|
|
|