2020-08-18 09:00:02 +02:00
|
|
|
[package]
|
|
|
|
authors = ["The Nu Project Contributors"]
|
|
|
|
description = "CLI for nushell"
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-data"
|
2021-06-23 09:57:41 +02:00
|
|
|
version = "0.33.1"
|
2020-08-18 09:00:02 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-21 19:28:31 +02:00
|
|
|
bigdecimal = "0.2.0"
|
2020-09-09 00:35:45 +02:00
|
|
|
byte-unit = "4.0.9"
|
2021-02-05 21:54:54 +01:00
|
|
|
chrono = "0.4.19"
|
2021-05-27 01:02:24 +02:00
|
|
|
common-path = "1.0.0"
|
2020-08-18 09:00:02 +02:00
|
|
|
derive-new = "0.5.8"
|
2021-06-19 01:29:29 +02:00
|
|
|
directories-next = "2.0.0"
|
|
|
|
dirs-next = "2.0.0"
|
2020-08-18 09:00:02 +02:00
|
|
|
getset = "0.1.1"
|
2021-06-22 07:22:33 +02:00
|
|
|
indexmap = { version="1.6.1", features=["serde-1"] }
|
2021-02-05 21:54:54 +01:00
|
|
|
log = "0.4.14"
|
2021-06-22 07:22:33 +02:00
|
|
|
num-bigint = { version="0.3.1", features=["serde"] }
|
2020-10-19 19:52:11 +02:00
|
|
|
num-format = "0.4.0"
|
2021-02-05 21:54:54 +01:00
|
|
|
num-traits = "0.2.14"
|
2020-08-18 09:00:02 +02:00
|
|
|
query_interface = "0.3.5"
|
2021-06-22 07:22:33 +02:00
|
|
|
serde = { version="1.0.123", features=["derive"] }
|
2021-03-31 07:52:34 +02:00
|
|
|
sha2 = "0.9.3"
|
2021-05-27 01:02:24 +02:00
|
|
|
sys-locale = "0.1.0"
|
|
|
|
toml = "0.5.8"
|
2020-08-18 09:00:02 +02:00
|
|
|
|
2021-06-23 09:57:41 +02:00
|
|
|
nu-errors = { version="0.33.1", path="../nu-errors" }
|
|
|
|
nu-protocol = { version="0.33.1", path="../nu-protocol" }
|
|
|
|
nu-source = { version="0.33.1", path="../nu-source" }
|
|
|
|
nu-table = { version="0.33.1", path="../nu-table" }
|
|
|
|
nu-test-support = { version="0.33.1", path="../nu-test-support" }
|
|
|
|
nu-value-ext = { version="0.33.1", path="../nu-value-ext" }
|
|
|
|
nu-ansi-term = { version="0.33.1", path="../nu-ansi-term" }
|
2020-08-18 09:00:02 +02:00
|
|
|
|
2021-06-10 23:39:51 +02:00
|
|
|
[dependencies.polars]
|
|
|
|
git = "https://github.com/pola-rs/polars"
|
2021-06-25 09:09:41 +02:00
|
|
|
rev = "adc358b437f93bc7f844a94d68c064616e9d2ac2"
|
2021-06-20 00:59:39 +02:00
|
|
|
version = "0.14.2"
|
2021-06-10 23:39:51 +02:00
|
|
|
optional = true
|
|
|
|
features = ["strings", "checked_arithmetic"]
|
|
|
|
|
2020-08-18 09:00:02 +02:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2021-02-05 21:54:54 +01:00
|
|
|
users = "0.11.0"
|
2021-01-19 21:24:27 +01:00
|
|
|
|
|
|
|
[features]
|
2021-06-10 23:39:51 +02:00
|
|
|
dataframe = ["nu-protocol/dataframe", "polars"]
|