From e2d24c59562985b2ade539352b0bc0f009f375c7 Mon Sep 17 00:00:00 2001 From: Reilly Wood <26268125+rgwood@users.noreply.github.com> Date: Wed, 30 Mar 2022 11:37:31 -0700 Subject: [PATCH] Fix which-support feature (#5038) --- Cargo.toml | 2 +- crates/nu-command/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index aba9687f14..68d580b1fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,7 +80,7 @@ extra = ["default", "dataframe"] wasi = [] # Stable (Default) -which-support = ["nu-command/which"] +which-support = ["nu-command/which-support"] zip-support = ["nu-command/zip"] trash-support = ["nu-command/trash-support"] diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index a7c579d128..315728df4a 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -101,6 +101,7 @@ features = [ [features] trash-support = ["trash"] +which-support = ["which"] plugin = ["nu-parser/plugin"] dataframe = ["polars", "num"]