-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (37 loc) · 1.05 KB
/
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
39
40
41
42
43
44
[package]
name = "ansiterm"
description = "Library for ANSI terminal colours and styles (bold, underline)"
edition = "2021"
authors = [
"Preston Thorpe <[email protected]>",
"Sandro-Alessio Gierens <[email protected]>",
"Benjamin Sago <[email protected]>",
"Ryan Scheel (Havvy) <[email protected]>",
"Josh Triplett <[email protected]>"
]
documentation = "https://docs.rs/ansiterm"
homepage = "https://github.com/rustadopt/ansiterm-rs"
license = "MIT"
readme = "README.md"
version = "0.12.2"
repository = "https://github.com/rustadopt/ansiterm-rs"
[lib]
name = "ansiterm"
[features]
derive_serde_style = ["serde"]
[dependencies.serde]
version = "1.0.90"
features = ["derive"]
optional = true
[dependencies.ansi_colours]
version = "1.1.1"
default-features = false
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"