From b4a0e4c0dc8b28f3f9155d8e4f5b425c8ce3eb20 Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Tue, 22 Nov 2022 06:24:25 +1300 Subject: [PATCH] Move dataframe out of extra (#7180) --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1bc078e49e..6658d7bdea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,11 +83,12 @@ rstest = {version = "0.15.0", default-features = false} itertools = "0.10.3" [features] -plugin = ["nu-plugin", "nu-cli/plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin"] -extra = ["default", "dataframe", "database"] +plugin = ["nu-plugin", "nu-cli/plugin", "nu-parser/plugin", "nu-command/plugin", "nu-protocol/plugin", "nu-engine/plugin", "database"] +extra = ["default"] default = ["plugin", "which-support", "trash-support"] stable = ["default"] wasi = [] + # Enable to statically link OpenSSL; otherwise the system version will be used. Not enabled by default because it takes a while to build static-link-openssl = ["dep:openssl"]