forked from JuliaLang/juliaup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (51 loc) · 1.16 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "juliaup"
version = "1.5.4-alpha.0"
edition = "2018"
default-run = "juliaup"
publish = false
[profile.release]
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "3.0.0-beta.5"
dirs = "4"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
semver = "1"
anyhow = "1"
tempfile = "3"
flate2 = "1"
tar = "0.4"
ureq = "2"
normpath = "0.3"
fs_extra = "1.2"
thiserror = "1"
indicatif = "0.16"
atty = "0.2.14"
console = "0.15"
ctrlc = "3.2.1"
url = "2"
cli-table = "0.4"
itertools = "0.10"
cluFlock = "1.2.5"
chrono = {version = "0.4", features = ["serde"]}
[target.'cfg(windows)'.dependencies]
windows = { version = "0.28", features = ["alloc", "std", "Win32_Foundation", "Win32_UI_Shell", "Win32_System_Console", "Services_Store", "Foundation", "Foundation_Collections"] }
[build-dependencies]
anyhow = "1"
winres = "0.1"
itertools = "0.10"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
semver = "1"
built = "0.5.1"
[dev-dependencies]
assert_cmd = "2"
assert_fs = "1"
predicates = "2.1"
[features]
selfupdate = []
windowsstore = []
dummy = []