From dd8b4e8044588ac44c8d548fda344519d7d66964 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 20 Dec 2024 12:35:20 -0800 Subject: [PATCH] Don't forcibly enable `gc` feature with cli-flags crate Helps keep the `gc` feature out of the "min" build. --- crates/cli-flags/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli-flags/Cargo.toml b/crates/cli-flags/Cargo.toml index c1c84ce39dd7..f42efcdc05bd 100644 --- a/crates/cli-flags/Cargo.toml +++ b/crates/cli-flags/Cargo.toml @@ -18,7 +18,7 @@ clap = { workspace = true } file-per-thread-logger = { workspace = true, optional = true } tracing-subscriber = { workspace = true, optional = true } rayon = { version = "1.5.0", optional = true } -wasmtime = { workspace = true, features = ["gc"] } +wasmtime = { workspace = true } humantime = { workspace = true } [features]