2021-12-16 12:17:29 +00:00
|
|
|
[package]
|
2022-03-22 20:25:38 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 18:17:06 +00:00
|
|
|
description = "Color configuration code used by Nushell"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-config"
|
2022-03-22 20:25:38 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2021-12-16 12:17:29 +00:00
|
|
|
name = "nu-color-config"
|
2023-08-22 18:23:39 +00:00
|
|
|
version = "0.84.0"
|
2021-12-16 12:17:29 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-16 12:17:29 +00:00
|
|
|
[dependencies]
|
2023-08-22 18:23:39 +00:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.84.0" }
|
2023-07-24 11:16:18 +00:00
|
|
|
nu-ansi-term = "0.49.0"
|
2023-08-22 18:23:39 +00:00
|
|
|
nu-utils = { path = "../nu-utils", version = "0.84.0" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.84.0" }
|
|
|
|
nu-json = { path="../nu-json", version = "0.84.0" }
|
2022-12-19 23:53:17 +00:00
|
|
|
|
2023-08-21 17:04:34 +00:00
|
|
|
serde = { version="1.0", features=["derive"] }
|
2023-05-18 16:37:20 +00:00
|
|
|
|
2022-12-19 23:53:17 +00:00
|
|
|
[dev-dependencies]
|
2023-08-22 18:23:39 +00:00
|
|
|
nu-test-support = { path="../nu-test-support", version = "0.84.0" }
|