nushell/crates/nu-data/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

[package]
authors = ["The Nu Project Contributors"]
description = "CLI for nushell"
edition = "2018"
license = "MIT"
name = "nu-data"
2021-06-04 09:07:50 +02:00
version = "0.32.1"
[lib]
doctest = false
[dependencies]
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"
common-path = "1.0.0"
derive-new = "0.5.8"
directories-next = { version = "2.0.0", optional = true }
dirs-next = { version = "2.0.0", optional = true }
getset = "0.1.1"
2021-02-05 21:54:54 +01:00
indexmap = { version = "1.6.1", features = ["serde-1"] }
log = "0.4.14"
num-bigint = { version = "0.3.1", features = ["serde"] }
num-format = "0.4.0"
2021-02-05 21:54:54 +01:00
num-traits = "0.2.14"
query_interface = "0.3.5"
2021-02-05 21:54:54 +01:00
serde = { version = "1.0.123", features = ["derive"] }
sha2 = "0.9.3"
sys-locale = "0.1.0"
toml = "0.5.8"
2021-06-04 09:07:50 +02:00
nu-errors = { version = "0.32.1", path = "../nu-errors" }
nu-protocol = { version = "0.32.1", path = "../nu-protocol" }
nu-source = { version = "0.32.1", path = "../nu-source" }
nu-table = { version = "0.32.1", path = "../nu-table" }
nu-test-support = { version = "0.32.1", path = "../nu-test-support" }
nu-value-ext = { version = "0.32.1", path = "../nu-value-ext" }
nu-ansi-term = { version = "0.32.1", path = "../nu-ansi-term" }
[target.'cfg(unix)'.dependencies]
2021-02-05 21:54:54 +01:00
users = "0.11.0"
[features]
directories = ["directories-next"]
dirs = ["dirs-next"]
dataframe = ["nu-protocol/dataframe"]