mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
39 lines
868 B
TOML
39 lines
868 B
TOML
[package]
|
|
authors = [
|
|
"ogham@bsago.me",
|
|
"Ryan Scheel (Havvy) <ryan.havvy@gmail.com>",
|
|
"Josh Triplett <josh@joshtriplett.org>",
|
|
"The Nu Project Contributors",
|
|
]
|
|
description = "Library for ANSI terminal colors and styles (bold, underline)"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "nu-ansi-term"
|
|
version = "0.42.0"
|
|
|
|
[lib]
|
|
doctest = false
|
|
# name = "nu-ansi-term"
|
|
|
|
[features]
|
|
derive_serde_style = ["serde"]
|
|
|
|
[dependencies]
|
|
overload = "0.1.1"
|
|
serde = { version="1.0.90", features=["derive"], optional=true }
|
|
|
|
# [dependencies.serde]
|
|
# version = "1.0.90"
|
|
# features = ["derive"]
|
|
# optional = true
|
|
|
|
[target.'cfg(target_os="windows")'.dependencies.winapi]
|
|
version = "0.3.4"
|
|
features = ["consoleapi", "errhandlingapi", "fileapi", "handleapi", "processenv"]
|
|
|
|
[dev-dependencies]
|
|
doc-comment = "0.3"
|
|
regex = "1.1.9"
|
|
|
|
[dev-dependencies.serde_json]
|
|
version = "1.0.39"
|