-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (40 loc) · 839 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
39
40
41
42
43
44
45
[package]
name = "strip-ansi-cli"
description = "Strip ANSI escape sequences from text"
version = "0.1.0"
authors = ["khai96_ <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/strip-ansi-cli"
repository = "https://github.com/KSXGitHub/strip-ansi-cli.git"
keywords = [
"color",
"escape",
"ansi",
"strip-ansi",
"cli",
]
categories = ["command-line-utilities"]
include = [
"/src",
"/Cargo.toml",
"/README.md",
"/LICENSE.md",
]
[lib]
name = "strip_ansi_cli"
path = "src/lib.rs"
[[bin]]
name = "strip-ansi"
path = "src/main.rs"
[[bin]]
name = "strip-ansi-completions"
path = "src/sub/completions/main.rs"
[dependencies]
strip-ansi-escapes = "^0.1.1"
structopt = "^0.3.26"
structopt-utilities = "^0.1.0"
pipe-trait = "^0.4.0"
[profile.release]
opt-level = "s"