2023-06-10 03:33:16 -04:00
|
|
|
[package]
|
|
|
|
name = "alterware-launcher"
|
2024-02-20 13:44:31 -05:00
|
|
|
version = "0.6.9"
|
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
|
|
|
|
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-06-10 06:38:21 -04:00
|
|
|
sha1_smol = "1.0.0"
|
2024-02-07 05:15:01 -05:00
|
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
2024-02-26 11:01:59 -05:00
|
|
|
serde_json = "1.0.114"
|
2023-06-10 06:38:21 -04:00
|
|
|
rand = "0.8.5"
|
2024-02-19 10:21:09 -05:00
|
|
|
semver = "1.0.22"
|
2023-12-11 10:46:49 -05:00
|
|
|
colored = "2.1.0"
|
2024-02-05 10:46:31 -05:00
|
|
|
reqwest = { version = "0.11.24", features = ["stream"] }
|
2023-12-27 15:55:08 -05:00
|
|
|
futures-util = "0.3.30"
|
2024-02-12 10:22:11 -05:00
|
|
|
indicatif = "0.17.8"
|
2024-02-05 10:46:38 -05:00
|
|
|
tokio = {version="1.36.0", features = ["rt-multi-thread", "macros"]}
|
2023-06-10 03:33:16 -04:00
|
|
|
|
2023-11-24 08:44:40 -05:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-02-26 11:01:49 -05:00
|
|
|
openssl = { version = "0.10.64", default-features = false, features = ["vendored"] }
|
2023-11-24 08:44:40 -05:00
|
|
|
|
2023-08-12 00:30:02 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-01-02 05:52:42 -05:00
|
|
|
steamlocate = "=2.0.0-beta.2"
|
2023-08-12 00:30:02 -04:00
|
|
|
mslnk = "0.1.8"
|
2023-09-25 11:51:21 -04:00
|
|
|
self-replace = "1.3.7"
|
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"
|