Disable fmt feature of polars(-core) (#12151)

In normal operations we don't display the dataframes directly.
The `fmt` feature on `polars-core` pulls in the `comfy-table` crate with
its own dependencies on `crossterm` and `strum(_macros)`.
This has the chance to duplicate dependencies. (currently strum version
divergence)

Without this feature only the shapes should be displayed.

May degrade the error output during testing.
This commit is contained in:
Stefan Holderbach
2024-03-13 19:42:31 +01:00
committed by GitHub
parent bb1fe958b4
commit d3f22588f0
2 changed files with 5 additions and 23 deletions

View File

@ -39,7 +39,6 @@ features = [
"cross_join",
"csv",
"cum_agg",
"default",
"dtype-categorical",
"dtype-datetime",
"dtype-struct",
@ -60,8 +59,10 @@ features = [
"serde",
"serde-lazy",
"strings",
"temporal",
"to_dummies",
]
default-features = false
optional = true
version = "0.37"