forked from ogham/rust-ansi-term
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
38 lines (33 loc) · 846 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
authors = [
"Ryan Scheel (Havvy) <[email protected]>",
"Josh Triplett <[email protected]>",
"The Nushell Project Developers",
]
description = "Library for ANSI terminal colors and styles (bold, underline)"
edition = "2021"
rust-version = "1.62.1"
license = "MIT"
name = "nu-ansi-term"
version = "0.50.1"
repository = "https://github.com/nushell/nu-ansi-term"
[lib]
doctest = true
[features]
derive_serde_style = ["serde"]
gnu_legacy = []
[dependencies]
serde = { version="1.0.152", features=["derive"], optional=true }
[target.'cfg(windows)'.dependencies.windows]
version = "0.52.0"
package = "windows-sys"
features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_Storage_FileSystem",
"Win32_Security"
]
[dev-dependencies]
doc-comment = "0.3.3"
serde_json = "1.0.94"