-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (31 loc) · 830 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
[package]
name = "cargo-build-dependencies"
version = "0.1.3"
authors = ["errmac-v"]
edition = "2018"
categories = ["development-tools", "development-tools::cargo-plugins"]
keywords = ["cargo", "cargo-subcommand", "cli", "dependencies", "crates"]
license = "MIT"
repository = "https://github.com/errmac-v/cargo-build-dependencies"
description = """
A cargo subcommand to build dependencies, helps speed up docker builds by
allowing dependencies to be built earlier and cached.
"""
readme = "README.md"
[dependencies]
toml = "0.5.6"
clap = "2.33.1"
[dev-dependencies]
quickcheck = "0.9.2"
quickcheck_macros = "0.9.1"
[dev-dependencies.cargo-husky]
version = "1.5.0"
default-features = false
features = [
"precommit-hook",
"postmerge-hook",
"run-cargo-fmt",
"run-cargo-check",
"run-cargo-clippy",
"run-cargo-test"
]