From e0f083d11700642bf78b48973185ee7d7b41fe0b Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 27 May 2021 12:30:46 -0500 Subject: [PATCH] fix polars compile warnings (#3501) --- crates/nu-protocol/Cargo.toml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index e51db62c..f487a30b 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -24,15 +24,7 @@ num-integer = "0.1.44" num-traits = "0.2.14" serde = { version = "1.0", features = ["derive"] } serde_bytes = "0.11.5" - -[dependencies.polars] -version = "0.13.4" -optional = true - -# implement conversions -serde_json = "1.0" -serde_yaml = "0.8.16" -toml = "0.5.8" +polars = {version = "0.13.4", optional = true} [features] dataframe = ["polars"]