From 1911aad57f5d2076ce7ea2b5c13fb8817d2a585f Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 7 Jul 2021 12:03:59 -0500 Subject: [PATCH] add a couple more features (#3749) --- .../nu-command/src/commands/core_commands/version.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/crates/nu-command/src/commands/core_commands/version.rs b/crates/nu-command/src/commands/core_commands/version.rs index 22621edbb6..732bb470c9 100644 --- a/crates/nu-command/src/commands/core_commands/version.rs +++ b/crates/nu-command/src/commands/core_commands/version.rs @@ -231,6 +231,16 @@ fn features_enabled() -> Vec { names.push("trash".to_string()); } + #[cfg(feature = "dataframe")] + { + names.push("dataframe".to_string()); + } + + #[cfg(feature = "table-pager")] + { + names.push("table-pager".to_string()); + } + // #[cfg(feature = "binaryview")] // { // names.push("binaryview".to_string());