nushell/crates/nu-test-support/Cargo.toml
Andrés N. Robalino 973a8ee8f3
Allow config to work with column paths. (#2653)
Nu has many commands that allow the nuño to customize behavior such
as UI and behavior. Today, coloring can be customized, the line editor,
and other things. The more options there are, the higher the complexity
in managing them.

To mitigate this Nu can store configuration options as nested properties.

But to add and edit them can be taxing. With column path support we can
work with them easier.
2020-10-08 20:04:19 -05:00

27 lines
678 B
TOML

[package]
authors = ["The Nu Project Contributors"]
description = "A source string characterizer for Nushell"
edition = "2018"
license = "MIT"
name = "nu-test-support"
version = "0.20.0"
[lib]
doctest = false
[dependencies]
nu-protocol = {path = "../nu-protocol", version = "0.20.0"}
nu-source = {path = "../nu-source", version = "0.20.0"}
nu-errors = {version = "0.20.0", path = "../nu-errors"}
nu-value-ext = {version = "0.20.0", path = "../nu-value-ext"}
chrono = "0.4.15"
dunce = "1.0.1"
getset = "0.1.1"
glob = "0.3.0"
indexmap = {version = "1.6.0", features = ["serde-1"]}
tempfile = "3.1.0"
num-bigint = {version = "0.3.0", features = ["serde"]}
[build-dependencies]