-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (35 loc) · 1.35 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
[package]
name = "alfred-gitignore"
version = "2.1.1"
license = "MIT"
authors = ["Jan David <[email protected]>"]
edition = "2018"
description = "An Alfred workflow that creates .gitignore files"
readme = "README.md"
repository = "https://github.com/jdno/alfred-gitignore"
categories = ["command-line-utilities"]
keywords = ["cli", "git", "gitignore", "alfred", "workflow"]
[package.metadata.release]
disable-publish = true
disable-push = true
disable-tag = true
no-dev-version = true
pre-release-commit-message = "Release {{version}}"
pre-release-replacements = [
{file="CHANGELOG.md", search="## \\[Unreleased\\]", replace="## [{{version}}] - {{date}}"},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...v{{version}}", exactly=1},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased]", exactly=1},
{file="CHANGELOG.md", search="\\[unreleased\\]", replace="[{{version}}]"},
{file="CHANGELOG.md", search="<!-- next-url -->\n", replace="<!-- next-url -->\n\n[unreleased]: https://github.com/jdno/alfred-gitignore/compare/v{{version}}...HEAD", exactly=1},
]
[dependencies]
alfred = "4.0.2"
clap = "2.34.0"
getset = "0.1.2"
reqwest = { version = "0.12.5", features = ["blocking"] }
zip = "0.6.4"
[dev-dependencies]
assert_cmd = "2.0.14"
mockito = "1.5.0"
predicates = "3.1.2"
tempfile = "3.10.1"