summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2023-03-27 14:00:52 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2023-03-27 14:00:52 +0900
commit1eae77b4c69645005eab9f368cabb4250d261b80 (patch)
tree1a51f2e9d1245f777b3024e95807409fcfc79125 /Cargo.toml.orig
downloadrust-anstyle-upstream.tar.gz
rust-anstyle-upstream.tar.bz2
rust-anstyle-upstream.zip
Import anstyle 0.3.5upstream/0.3.5upstream
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..a6e5ac0
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,31 @@
+[package]
+name = "anstyle"
+version = "0.3.5"
+description = "ANSI text styling"
+repository = "https://github.com/rust-cli/anstyle.git"
+homepage = "https://github.com/rust-cli/anstyle"
+categories = ["command-line-interface"]
+keywords = ["ansi", "terminal", "color", "no_std"]
+license.workspace = true
+edition.workspace = true
+rust-version.workspace = true
+include.workspace = true
+
+[package.metadata.release]
+tag-prefix = ""
+pre-release-replacements = [
+ {file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
+ {file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
+ {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
+ {file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
+ {file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", exactly=1},
+]
+
+[features]
+default = ["std"]
+std = []
+
+[dependencies]
+
+[dev-dependencies]
+lexopt = "0.3.0"