forked from lienching/pci-ids.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (49 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "pci-ids"
description = "Rust wrappers for the PCI ID Repository"
license = "MIT"
version = "0.2.5"
authors = ["William Woodruff <[email protected]>", "Charles Lien <[email protected]>"]
edition = "2018"
readme = "README.md"
homepage = "https://github.com/lienching/pci-ids.rs"
repository = "https://github.com/lienching/pci-ids.rs"
keywords = ["pci"]
categories = ["hardware-support"]
[build-dependencies]
nom = { version = "7.1", default-features = false }
phf_codegen = "0.11"
quote = "1.0"
proc-macro2 = "1.0"
[dependencies]
phf = { version = "0.11", default-features = false }
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.release]
no-dev-version = true
disable-publish = true # handled by GitHub Actions
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "Unreleased"
replace = "{{version}}"
exactly = 2
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "ReleaseDate"
replace = "{{date}}"
exactly = 1
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "\\.\\.\\.HEAD"
replace = "...{{tag_name}}"
exactly = 1
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "<!-- @next-header@ -->"
replace = "<!-- @next-header@ -->\n\n## [Unreleased] - ReleaseDate"
exactly = 1
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = "<!-- @next-url@ -->"
replace = "<!-- @next-url@ -->\n[Unreleased]: https://github.com/woodruffw/kbs2/compare/{{tag_name}}...HEAD"
exactly = 1