-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
33 lines (28 loc) · 925 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
[package]
name = "mcl-installer"
version = "1.0.0"
authors = ["PeratX <peratx@itxtech.org>"]
edition = "2018"
build = "build.rs"
[features]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls-webpki-roots"]
[dependencies]
reqwest = { version = "0.11", default-features = false, features = ["json"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
serde = { version = "1.0", features = ["derive"] }
zip = { version = "0.5", default-features = false, features = ["deflate"] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.winres]
OriginalFilename = "mcl-installer.exe"
LegalCopyright = "Copyright © 2021-2022 iTX Technologies"
FileDescription = "OpenJDK and Mirai Console Loader bootstrapper."
ProductName = "iTXTech MCL Installer"
ProductVersion = "1.0.0.0"
[profile.release]
opt-level = 'z'
lto = true
panic = "abort"
codegen-units = 1
strip = "symbols"