-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
40 lines (35 loc) · 923 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
38
39
40
[package]
name = "idf-env"
version = "1.2.32"
authors = ["Juraj Michalek <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "*"
clap = { version = "2.33.3" }
clap-nested = "*"
dirs = "*"
flate2 = "1.0.24"
git2 = "0.19.0"
guess_host_triple = "0.1.3"
json = "*"
md5 = "*"
num_cpus = "*"
reqwest = "*"
# 7z support disabled until BCJ support added to decompression in the crate: https://github.com/dyz1990/sevenz-rust/issues/1
#sevenz-rust = "0.1.1"
tar = "0.4.37"
tokio = { version = "1.15.0", features = ["full"] }
walkdir = "*"
wmi = "*"
widestring = "1.0.2"
winapi = { version = "*", features = ["setupapi", "handleapi", "processthreadsapi", "winnt", "securitybaseapi", "impl-default", "shellapi", "winuser"] }
zip = "*"
xz2 = "0.1.6"
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"
[[bin]]
name = "idf-env"
path = "src/idf_env.rs"
[lib]
crate-type = ["lib"]
path = "src/idf_env_lib.rs"