mirror of
https://github.com/nushell/nushell
synced 2025-01-09 19:59:02 +00:00
76019f434e
* custom value trait * functions for custom value trait * custom trait behind flag * open dataframe command * command to-df for basic types * follow path for dataframe * dataframe operations * dataframe not default feature * custom as default feature * corrected examples in command
14 lines
460 B
TOML
14 lines
460 B
TOML
[package]
|
|
name = "nu-dataframe"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
chrono = { version="0.4.19", features=["serde"] }
|
|
serde = {version = "1.0.130", features = ["derive"]}
|
|
num = "0.4.0"
|
|
nu-protocol = { path = "../nu-protocol", features = ["custom"] }
|
|
nu-json = { path = "../nu-json"}
|
|
indexmap = { version="1.7.0", features=["serde-1"] }
|
|
polars = { version = "0.17.0", features = ["default", "serde", "object", "checked_arithmetic", "strings"] }
|
|
|