forked from LukeMathWalker/cargo-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 924 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 = "cargo-chef"
version = "0.1.8"
authors = ["Luca Palmieri <[email protected]>"]
edition = "2018"
description = "A cargo sub-command to build project dependencies for optimal Docker layer caching."
keywords = ["cargo", "docker", "caching", "dependencies"]
categories = ["development-tools::cargo-plugins", "command-line-utilities"]
repository = "https://github.com/LukeMathWalker/cargo-chef"
documentation = "https://docs.rs/cargo-chef"
license = "Apache-2.0 OR MIT"
exclude = ["tests"]
[[bin]]
name = "cargo-chef"
path = "src/main.rs"
[lib]
name = "chef"
path = "src/lib.rs"
[dependencies]
clap = "3.0.0-beta.2"
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
log = "0.4.11"
env_logger = "0.8.1"
globwalk = "0.8.0"
anyhow = "1.0.33"
pathdiff = "0.2.0"
cargo-manifest = "0.2.0"
fs-err = "2.5.0"
toml = "0.5.7"
[dev-dependencies]
assert_cmd = "1.0.1"
assert_fs = "1.0.0"