-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1021 Bytes
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
[package]
name = "cargo-husky"
version = "1.5.0"
authors = ["rhysd <lin90162@yahoo.co.jp>"]
description = "husky for cargo"
repository = "https://github.com/rhysd/cargo-husky"
homepage = "https://github.com/rhysd/cargo-husky#readme"
readme = "README.md"
keywords = ["git", "hook", "cargo"]
categories = ["development-tools"]
license = "MIT"
build = "build.rs"
include = ["build.rs", "LICENSE.txt", "Cargo.toml", "src/**/*.rs"]
[package.metadata.release]
no-dev-version = true
[badges]
travis-ci = { repository = "rhysd/cargo-husky" }
appveyor = { repository = "rhysd/cargo-husky" }
maintenance = { status = "passively-maintained" }
[[test]]
name = "integration"
path = "test/test.rs"
[features]
default = ["prepush-hook", "run-cargo-test", "run-for-all"]
prepush-hook = []
precommit-hook = []
postmerge-hook = []
run-cargo-test = []
run-cargo-check = []
run-cargo-clippy = []
run-cargo-fmt = []
run-for-all = []
user-hooks = []
[dependencies]
[dev-dependencies]
libc = "0.2.43"
lazy_static = "1.1"
semver = "0.9.0"