]> git.proxmox.com Git - rustc.git/blob - src/tools/rust-installer/Cargo.toml
New upstream version 1.38.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 edition = "2018"
6
7 [[bin]]
8 doc = false
9 name = "fabricate"
10 path = "src/main.rs"
11
12 [dependencies]
13 failure = "0.1"
14 flate2 = "1.0.1"
15 rayon = "1.0"
16 tar = "0.4.13"
17 walkdir = "2"
18 xz2 = "0.1.4"
19 num_cpus = "1"
20 remove_dir_all = "0.5"
21
22 [dependencies.clap]
23 features = ["yaml"]
24 version = "2.19.0"
25
26 [target."cfg(windows)".dependencies]
27 lazy_static = "1"
28 winapi = { version = "0.3", features = ["errhandlingapi", "handleapi", "ioapiset", "winerror", "winioctl", "winnt"] }