From b53605701f88e1b4b6550d8521c80cb672cf82b8 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Tue, 24 Sep 2024 15:40:07 +0200 Subject: [PATCH] build: enable more wasmtime features Signed-off-by: Roman Volosatovs --- Cargo.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0cfb287..39a7286 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,17 @@ tokio = { workspace = true } tracing = { workspace = true } wasi-preview1-component-adapter-provider = { workspace = true } wasmparser = { workspace = true } -wasmtime = { workspace = true, features = ["cranelift", "gc"] } +wasmtime = { workspace = true, features = [ + "addr2line", + "component-model", + "coredump", + "cranelift", + "demangle", + "gc", + "parallel-compilation", + "runtime", + "wat", +] } wasmtime-wasi = { workspace = true } wasmtime-wasi-http = { workspace = true } wit-component = { workspace = true }