From db5b6c790ff4caac68781dfe6d16bb133ff51127 Mon Sep 17 00:00:00 2001 From: Piepmatz Date: Thu, 19 Jun 2025 14:48:20 +0200 Subject: [PATCH] Fix: missing `installed_plugins` in `version` (#16004) - related #15972 # Description In #15972 I was very eager removing fowarded features from `nu` to `nu-cmd-lang`. By accident I also removed `nu-cmd-lang/plugin` too. This removed `installed_plugins` from `version`. By adding the feature again, it works again. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 5a11cef0e1..f8d188641f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -269,6 +269,7 @@ plugin = [ # features "nu-cli/plugin", + "nu-cmd-lang/plugin", "nu-command/plugin", "nu-engine/plugin", "nu-engine/plugin",