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"
|
2024-09-22 04:41:44 +00:00
|
|
|
version = "0.98.1"
|
2021-12-16 12:17:29 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2024-08-28 21:37:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-12-16 12:17:29 +00:00
|
|
|
[dependencies]
|
2024-09-22 04:41:44 +00:00
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.98.1" }
|
|
|
|
nu-engine = { path = "../nu-engine", version = "0.98.1" }
|
|
|
|
nu-json = { path = "../nu-json", version = "0.98.1" }
|
2024-03-07 22:40:31 +00:00
|
|
|
nu-ansi-term = { workspace = true }
|
2022-12-19 23:53:17 +00:00
|
|
|
|
2024-03-23 23:46:02 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-05-18 16:37:20 +00:00
|
|
|
|
2022-12-19 23:53:17 +00:00
|
|
|
[dev-dependencies]
|
2024-09-22 04:41:44 +00:00
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.98.1" }
|