1 | [package] |
2 | name = "anstyle" |
3 | version = "1.0.10" |
4 | description = "ANSI text styling" |
5 | homepage = "https://github.com/rust-cli/anstyle" |
6 | categories = ["command-line-interface" ] |
7 | keywords = ["ansi" , "terminal" , "color" , "no_std" ] |
8 | repository.workspace = true |
9 | license.workspace = true |
10 | edition.workspace = true |
11 | rust-version.workspace = true |
12 | include.workspace = true |
13 | |
14 | [package.metadata.docs.rs] |
15 | all-features = true |
16 | rustdoc-args = ["--cfg" , "docsrs" ] |
17 | |
18 | [package.metadata.release] |
19 | tag-prefix = "" |
20 | pre-release-replacements = [ |
21 | {file="CHANGELOG.md" , search="Unreleased" , replace="{{version}}" , min=1}, |
22 | {file="CHANGELOG.md" , search="\\.\\.\\.HEAD" , replace="...{{tag_name}}" , exactly=1}, |
23 | {file="CHANGELOG.md" , search="ReleaseDate" , replace="{{date}}" , min=1}, |
24 | {file="CHANGELOG.md" , search="<!-- next-header -->" , replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n" , exactly=1}, |
25 | {file="CHANGELOG.md" , search="<!-- next-url -->" , replace="<!-- next-url -->\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD" , exactly=1}, |
26 | ] |
27 | |
28 | [features] |
29 | default = ["std" ] |
30 | std = [] |
31 | |
32 | [dependencies] |
33 | |
34 | [dev-dependencies] |
35 | lexopt = "0.3.0" |
36 | |
37 | [lints] |
38 | workspace = true |
39 | |