forked from JuliaLang/juliaup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (73 loc) · 2.3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "juliaup"
version = "1.8.13"
edition = "2021"
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 = { version = "4.0.15", features = ["derive"] }
dirs = "4"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
semver = "1"
anyhow = "1"
tempfile = "3"
flate2 = "1"
tar = "0.4"
normpath = "1.0.0"
fs_extra = "1.2"
thiserror = "1"
indicatif = "0.17.0"
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"]}
human-panic = "1.0.3"
log = "0.4.14"
env_logger = "0.10.0"
dialoguer = "0.10.0"
shellexpand = "3.0.0"
env_proxy = "0.4.1"
bstr = "1.0.1"
indoc = "1.0.7"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.43.0", features = ["Win32_Foundation", "Win32_UI_Shell", "Win32_System_Console", "Services_Store", "Foundation", "Foundation_Collections", "Web_Http", "Storage_Streams",] }
[target.'cfg(target_os = "macos")'.dependencies]
ureq = { version = "2", features = ["native-tls"] }
native-tls = "0.2.10"
[target.'cfg(all(not(target_os = "macos"),not(windows)))'.dependencies]
ureq = { version = "2", features = ["native-certs"] }
[target.'cfg(not(windows))'.dependencies]
nix = { version = "0.26" }
[build-dependencies]
anyhow = "1"
itertools = "0.10"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
semver = "1"
built = "0.5.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[dev-dependencies]
assert_cmd = "2"
assert_fs = "1"
indoc = "1.0.7"
predicates = "2.1"
[features]
selfupdate = []
windowsstore = []
windowsappinstaller = []
dummy = []
[package.metadata.msix]
winstoremsix = { file = "deploy/msix/PackagingLayout.xml", variables = [{name = "FlatBundle", value="false"}, {name = "IdentityPublisher", value = "CN=7FB784C5-4411-4067-914E-A7B06CC00FFC"}] }
winappinstallermsix = { file = "deploy/msix/PackagingLayout.xml", variables = [{name = "FlatBundle", value="true"}, {name = "IdentityPublisher", value = "CN="JULIA COMPUTING, INC.", O="JULIA COMPUTING, INC.", S=Massachusetts, C=US"}] }
[package.metadata.winappinstaller]
winappinstaller = "deploy/winappinstaller/Julia.appinstaller"