2023-06-10 03:33:16 -04:00
|
|
|
[package]
|
|
|
|
name = "alterware-launcher"
|
2023-08-18 06:53:28 -04:00
|
|
|
version = "0.4.3"
|
2023-06-10 03:33:16 -04:00
|
|
|
edition = "2021"
|
|
|
|
build = "res/build.rs"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = "s"
|
2023-08-15 13:03:38 -04:00
|
|
|
|
|
|
|
# Symbols are a nice thing
|
|
|
|
debug = true
|
|
|
|
|
2023-06-10 03:33:16 -04:00
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-10 12:08:13 -04:00
|
|
|
http_req = { version = "0.9.2", default-features = false, features = [
|
2023-06-10 03:33:16 -04:00
|
|
|
"rust-tls",
|
|
|
|
] }
|
2023-06-10 06:38:21 -04:00
|
|
|
sha1_smol = "1.0.0"
|
2023-08-07 11:23:26 -04:00
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
2023-07-31 16:10:02 -04:00
|
|
|
serde_json = "1.0.104"
|
2023-06-10 06:38:21 -04:00
|
|
|
rand = "0.8.5"
|
2023-08-02 20:49:55 -04:00
|
|
|
semver = "1.0.18"
|
2023-06-10 03:33:16 -04:00
|
|
|
|
2023-08-12 00:30:02 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
steamlocate = "1.2.1"
|
|
|
|
mslnk = "0.1.8"
|
2023-08-12 08:08:59 -04:00
|
|
|
# https://github.com/mitsuhiko/self-replace/pull/16/
|
|
|
|
windows-sys = { version = "0.48", features = [
|
|
|
|
"Win32_Security",
|
|
|
|
] }
|
|
|
|
self-replace = "1.3.5"
|
2023-08-12 00:30:02 -04:00
|
|
|
|
2023-06-10 03:33:16 -04:00
|
|
|
[build-dependencies]
|
|
|
|
winres = "0.1.12"
|
|
|
|
|
|
|
|
[package.metadata.winres]
|
|
|
|
OriginalFilename = "alterware-launcher.exe"
|
2023-08-12 08:08:59 -04:00
|
|
|
FileDescription = "AlterWare Launcher"
|
2023-08-15 13:03:38 -04:00
|
|
|
ProductName = "AlterWare Launcher"
|