From b9e65e35b80be8fd04331fa8a001846034e4afa7 Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Thu, 1 Jun 2023 13:10:39 -0700 Subject: [PATCH] include the nu-cmd-extra crate in the version command features (#9333) We needed to include the nu-cmd-extra crate in the version command's features... In the style of this PR which fixed the dataframe feature upon adding the nu-cmd-dataframe crate... https://github.com/nushell/nushell/pull/9262 --- Cargo.toml | 2 +- crates/nu-cmd-lang/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3237148d84..36583344cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,7 +121,7 @@ which-support = ["nu-command/which-support", "nu-cmd-lang/which-support"] trash-support = ["nu-command/trash-support", "nu-cmd-lang/trash-support"] # Extra feature for nushell -extra = ["nu-command/extra"] +extra = ["nu-command/extra", "nu-cmd-lang/extra"] # Dataframe feature for nushell dataframe = ["nu-command/dataframe", "nu-cmd-lang/dataframe"] diff --git a/crates/nu-cmd-lang/Cargo.toml b/crates/nu-cmd-lang/Cargo.toml index d63b46a2eb..651e265acd 100644 --- a/crates/nu-cmd-lang/Cargo.toml +++ b/crates/nu-cmd-lang/Cargo.toml @@ -33,3 +33,4 @@ sqlite = [] dataframe = [] static-link-openssl = [] wasi = [] +extra = []