-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
47 lines (44 loc) · 1.07 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
[package]
name = "rusty-hook"
version = "0.12.0"
authors = ["Swellaby <[email protected]>"]
description = "git hook utility"
license = "MIT"
repository = "https://github.com/swellaby/rusty-hook"
readme = "README.md"
edition = "2018"
keywords = [ "hooks", "githook", "git", "hook", "commit" ]
categories = [ "development-tools" ]
exclude = [
".coverage/**",
".testresults/**",
".azure-pipelines/**",
".dependabot/**",
".github/**",
".vscode/**",
"scripts/**",
".editorconfig",
".gitattributes",
".rustfmt.toml",
".rusty-hook.toml",
"azure-pipelines.yml",
"kcov*/**",
"**/*.gcda",
"**/*.gcno",
"tests/**",
"cobertura.xml",
"tarpaulin-report.html",
]
[dependencies]
ci_info = "0.14.5"
clap = "3.0.0-beta.4"
toml = "0.5.9"
nias = "0.7.0"
[build-dependencies]
ci_info = "0.14.5"
toml = "0.5.9"
nias = "0.7.0"
[badges]
azure-devops = { project = "swellaby/opensource", pipeline = "rusty-hook.linux-pr", build="49" }
codecov = { repository = "swellaby/rusty-hook", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }