forked from autozimu/LanguageClient-neovim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 771 Bytes
/
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
[package]
name = "languageclient"
version = "0.1.106"
authors = ["Junfeng Li <autozimu@gmail.com>"]
description = "Language Server Protocol (LSP) support for vim and neovim"
publish = false
[dependencies]
failure = "0"
log = "0.4"
log4rs = "0"
structopt = "0"
maplit = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
jsonrpc-core = "8"
languageserver-types = "0"
url = "1"
pathdiff = "0"
diff = "0"
regex = "1"
glob = "0"
notify = "4"
[profile.release]
debug = true
[package.metadata.release]
no-dev-version = true
pre-release-replacements = [
{ file = "install.sh", search = "version=.*", replace = "version={{version}}" },
{ file = "install.ps1", search = "version = '.*'", replace = "version = '{{version}}'" }
]
pre-release-hook = ["cargo", "build"]