From 6478014ca6d3180730a15fb4ae92aa453e6a7d26 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 27 Oct 2023 12:22:32 -0700 Subject: [PATCH] Enable the `wasmtime serve` command by default This enables the `serve` subcommand by default on the CLI instead of having it behind an off-by-default feature. In general our default build is the "most featureful" while we still retain the ability to turn off everything if desired for custom builds. This additionally matches the current `main` branch where through other refactorings the `serve` command is now enabled by default. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 21c90b2af927..62f0b201e858 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -282,6 +282,7 @@ default = [ "wasi-threads", "wasi-http", "pooling-allocator", + "serve", ] jitdump = ["wasmtime/jitdump"] vtune = ["wasmtime/vtune"]