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
parent
commit
b26fd0af77
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      crates/c-api/Cargo.toml
  2. 2
      crates/c-api/artifact/Cargo.toml

1
crates/c-api/Cargo.toml

@ -50,3 +50,4 @@ coredump = ["wasmtime/coredump"]
addr2line = ["wasmtime/addr2line"] addr2line = ["wasmtime/addr2line"]
demangle = ["wasmtime/demangle"] demangle = ["wasmtime/demangle"]
threads = ["wasmtime/threads"] threads = ["wasmtime/threads"]
gc = ["wasmtime/gc"]

2
crates/c-api/artifact/Cargo.toml

@ -31,6 +31,7 @@ default = [
'addr2line', 'addr2line',
'demangle', 'demangle',
'threads', 'threads',
'gc',
] ]
async = ['wasmtime-c-api/async'] async = ['wasmtime-c-api/async']
profiling = ["wasmtime-c-api/profiling"] profiling = ["wasmtime-c-api/profiling"]
@ -44,3 +45,4 @@ addr2line = ["wasmtime-c-api/addr2line"]
demangle = ["wasmtime-c-api/demangle"] demangle = ["wasmtime-c-api/demangle"]
wat = ["wasmtime-c-api/wat"] wat = ["wasmtime-c-api/wat"]
threads = ["wasmtime-c-api/threads"] threads = ["wasmtime-c-api/threads"]
gc = ["wasmtime-c-api/gc"]

Loading…
Cancel
Save