forked from dalance/svlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.57 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
[package]
name = "svlint"
version = "0.9.3"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/svlint"
keywords = ["SystemVerilog", "Verilog", "lint", "svls"]
categories = ["command-line-utilities"]
license = "MIT"
readme = "README.md"
description = "SystemVerilog linter"
edition = "2018"
default-run = "svlint"
[package.metadata.release]
pre-release-commit-message = "Prepare to v{{version}}"
tag-message = "Bump version to {{version}}"
tag-prefix = ""
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="v{{version}}"},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
{file="CHANGELOG.md", search="Change Log", replace="Change Log\n\n## [Unreleased](https://github.com/dalance/svlint/compare/v{{version}}...Unreleased) - ReleaseDate"},
{file="snapcraft.yaml", search="version v[0-9\\.]+", replace="version v{{version}}"},
]
[[bin]]
name = "mdgen"
path = "src/mdgen.rs"
[dependencies]
anyhow = "1.0"
enquote = "1.0"
colored = "2.0"
libloading = "0.8"
regex = "1.5"
serde = "1.0"
serde_derive = "1.0"
serde_regex = "1.1"
clap = {version = "3.2", features = ["derive"]}
clap_complete = "3.2"
sv-parser = "0.13.3"
term = "1.0"
toml = "0.8"
sv-filelist-parser = "0.1.3"
[build-dependencies]
regex = "1"
walkdir = "2"
#[patch.crates-io]
#sv-parser = {path = "../sv-parser/sv-parser"}