-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
43 lines (39 loc) · 1.44 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
[package]
name = "svls"
version = "0.2.12"
authors = ["[email protected]"]
repository = "https://github.com/dalance/svls"
keywords = ["lsp", "language-server", "verilog", "systemverilog"]
categories = ["development-tools"]
license = "MIT"
readme = "README.md"
description = "SystemVerilog language server"
edition = "2018"
[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/svls/compare/v{{version}}...Unreleased) - ReleaseDate"},
{file="snapcraft.yaml", search="version v[0-9\\.]+", replace="version v{{version}}"},
]
[dependencies]
anyhow = "1"
clap = {version = "3.2.2", features = ["derive"]}
enquote = "1"
log = "0.4"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
simplelog = "0.12"
svlint = "0.9.3"
sv-parser = "0.13.3"
tokio = {version = "1.6", features = ["io-std", "macros", "rt", "test-util"]}
toml = "0.8"
tower-lsp = "0.20"
[profile.release]
codegen-units = 1
#[patch.crates-io]
#sv-parser = {path = "../sv-parser/sv-parser"}
#svlint = {path = "../svlint"}