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