-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
50 lines (43 loc) · 1.27 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 = "ptags"
version = "0.3.5"
authors = ["[email protected]"]
repository = "https://github.com/dalance/ptags"
keywords = ["ctags", "universal-ctags"]
categories = ["command-line-utilities", "development-tools"]
license = "MIT"
readme = "README.md"
description = "A parallel universal-ctags wrapper for git repository"
edition = "2018"
[badges]
travis-ci = { repository = "dalance/ptags" }
appveyor = { repository = "dalance/ptags", branch = "master", service = "github" }
codecov = { repository = "dalance/ptags", branch = "master", service = "github" }
[dependencies]
anyhow = "1.0"
dirs = "5"
nix = { version = "0.29.0", features = ["fs"] }
serde = "1"
serde_derive = "1"
structopt = "0.3"
structopt-toml = "0.5"
tempfile = "3"
thiserror = "2.0"
time = "0.3"
toml = "0.8"
[dev-dependencies]
bencher = "0.1"
[lib]
name = "ptagslib"
path = "src/lib.rs"
[[bin]]
name = "ptags"
path = "src/main.rs"
[[bench]]
name = "ptags_bench"
harness = false
[package.metadata.release]
pre-release-commit-message = "Prepare to v{{version}}"
post-release-commit-message = "Start next development iteration v{{version}}"
tag-message = "Bump version to {{version}}"
tag-prefix = ""