summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 7f3a74094d59339de30726e253481a3efb934494 (plain)
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
[package]
authors = ["The Rust Project Developers"]
name = "installer"
version = "0.0.0"

[[bin]]
doc = false
name = "fabricate"
path = "src/main.rs"

[dependencies]
error-chain = "0.11.0"
flate2 = "1.0.1"
rayon = "1.0"
tar = "0.4.13"
walkdir = "2"
xz2 = "0.1.4"

[dependencies.clap]
features = ["yaml"]
version = "2.19.0"

[target."cfg(windows)".dependencies]
lazy_static = "1"
winapi = { version = "0.3", features = ["errhandlingapi", "handleapi", "ioapiset", "winerror", "winioctl", "winnt"] }