mirror of
https://github.com/nushell/nushell
synced 2025-01-05 01:39:02 +00:00
c80a9585b0
* Dataframe MVP * Removed test csv file * Dataframe MVP * Removed test csv file * New revision polars * New revision polars * csv file reader * argument parser for file reader * Parser from Row primitive * Column conversion * Added as f32 and f64 * Parsing row to dataframe * Removed repeated push to vector * Accept table values to create dataframe * Removed default serde * Dataframe to rows to show data * Save name of file with dataframe * Usage example * Upgrade polars version * Clippy changes * Added print function with head and tail * Move dataframe struct to folder * Lock file after running tests and merge * Optional feature for dataframe * Removed dataframe from plugins * Update primitive.rs Co-authored-by: JT <jonathandturner@users.noreply.github.com>
22 lines
549 B
TOML
22 lines
549 B
TOML
[package]
|
|
authors = ["The Nu Project Contributors"]
|
|
description = "Extension traits for values in Nushell"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu-value-ext"
|
|
version = "0.31.0"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
nu-errors = { path = "../nu-errors", version = "0.31.0" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.31.0" }
|
|
nu-source = { path = "../nu-source", version = "0.31.0" }
|
|
|
|
indexmap = { version = "1.6.1", features = ["serde-1"] }
|
|
itertools = "0.10.0"
|
|
num-traits = "0.2.14"
|
|
|
|
[features]
|
|
dataframe = ["nu-protocol/dataframe"]
|