forked from extern/nushell
a82fa75c31
Resolves an unexpected issue due to `Deref` and `ToString` interacting Details: https://github.com/nushell/nu-ansi-term/pull/5 and https://github.com/nushell/reedline/pull/435#issuecomment-1141348209 Also updates reedline: Includes a fix for a panic when the directory containing the history is deleted during a running reedline session. (nushell/reedline#436)
15 lines
455 B
TOML
15 lines
455 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Color configuration code used by Nushell"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-color-config"
|
|
version = "0.63.1"
|
|
|
|
[dependencies]
|
|
nu-protocol = { path = "../nu-protocol", version = "0.63.1" }
|
|
nu-ansi-term = "0.46.0"
|
|
nu-json = { path = "../nu-json", version = "0.63.1" }
|
|
nu-table = { path = "../nu-table", version = "0.63.1" }
|
|
serde = { version="1.0.123", features=["derive"] }
|