2023-06-10 03:33:16 -04:00
|
|
|
[package]
|
|
|
|
name = "alterware-launcher"
|
2023-11-06 16:27:53 -05:00
|
|
|
version = "0.6.2"
|
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-11-09 18:04:00 -05:00
|
|
|
http_req = "0.10.1"
|
2023-06-10 06:38:21 -04:00
|
|
|
sha1_smol = "1.0.0"
|
2023-10-30 11:30:54 -04:00
|
|
|
serde = { version = "1.0.190", features = ["derive"] }
|
2023-09-18 11:05:36 -04:00
|
|
|
serde_json = "1.0.107"
|
2023-06-10 06:38:21 -04:00
|
|
|
rand = "0.8.5"
|
2023-10-16 11:07:26 -04:00
|
|
|
semver = "1.0.20"
|
2023-09-11 07:05:18 -04:00
|
|
|
colored = "2.0.4"
|
2023-11-02 05:39:58 -04:00
|
|
|
reqwest = { version = "0.11.22", features = ["stream"] }
|
|
|
|
futures-util = "0.3.29"
|
|
|
|
indicatif = "0.17.7"
|
|
|
|
tokio = {version="1.33.0", features = ["rt-multi-thread", "macros"]}
|
2023-06-10 03:33:16 -04:00
|
|
|
|
2023-08-12 00:30:02 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-08-30 06:45:10 -04:00
|
|
|
steamlocate = "2.0.0-alpha.0"
|
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"
|