summaryrefslogtreecommitdiff
path: root/crates/nu-color-config/Cargo.toml
blob: 9cc168964f9027dbcbe6b7840124157a76b353bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
authors = ["The Nushell Project Developers"]
description = "Color configuration code used by Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-config"
edition = "2021"
license = "MIT"
name = "nu-color-config"
version = "0.91.1"

[lib]
bench = false

[dependencies]
nu-protocol = { path = "../nu-protocol", version = "0.91.1" }
nu-engine = { path = "../nu-engine", version = "0.91.1" }
nu-json = { path = "../nu-json", version = "0.91.1" }
nu-ansi-term = { workspace = true }

serde = { workspace = true, features = ["derive"] }

[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.91.1" }