]> git.proxmox.com Git - rustc.git/blob - src/tools/rust-installer/Cargo.toml
New upstream version 1.26.0+dfsg1
[rustc.git] / src / tools / rust-installer / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "installer"
4 version = "0.0.0"
5
6 [[bin]]
7 doc = false
8 name = "fabricate"
9 path = "src/main.rs"
10
11 [dependencies]
12 error-chain = "0.11.0"
13 flate2 = "1.0.1"
14 rayon = "1.0"
15 tar = "0.4.13"
16 walkdir = "2"
17 xz2 = "0.1.4"
18
19 [dependencies.clap]
20 features = ["yaml"]
21 version = "2.19.0"
22
23 [target."cfg(windows)".dependencies]
24 lazy_static = "1"
25 winapi = { version = "0.3", features = ["errhandlingapi", "handleapi", "ioapiset", "winerror", "winioctl", "winnt"] }