mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-09 22:38:39 +00:00
80 lines
1.5 KiB
TOML
80 lines
1.5 KiB
TOML
[package]
|
|
name = "liftinstall"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
authors = ["James <jselby@jselby.net>"]
|
|
repository = "https://github.com/j-selby/liftinstall.git"
|
|
documentation = "https://liftinstall.jselby.net"
|
|
description = "An adaptable installer for your application."
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
web-view = { version = "0.7", features = ["edge"] }
|
|
tinyfiledialogs = "3.8"
|
|
|
|
hyper = "0.11.27"
|
|
futures = "0.1.29"
|
|
mime_guess = "2.0"
|
|
url = "2.2"
|
|
|
|
reqwest = "0.9.22"
|
|
number_prefix = "0.4"
|
|
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
toml = "0.5"
|
|
|
|
semver = {version = "1.0", features = ["serde"]}
|
|
regex = "1.4"
|
|
|
|
dirs = "^4"
|
|
zip = "0.5"
|
|
xz2 = "0.1"
|
|
tar = "0.4"
|
|
|
|
log = "0.4"
|
|
fern = "0.6"
|
|
chrono = "0.4"
|
|
|
|
clap = "2.33"
|
|
|
|
# used to open a link to the users default browser
|
|
webbrowser = "0.5"
|
|
# used in JWT based package authentication
|
|
jsonwebtoken = "7"
|
|
# used to decode the public key for verifying JWT tokens
|
|
base64 = "0.13"
|
|
|
|
[build-dependencies]
|
|
walkdir = "2.3"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
toml = "0.5"
|
|
which = "4.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["psapi", "winbase", "winioctl", "winnt"] }
|
|
widestring = "0.5"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
sysinfo = "0.20"
|
|
slug = "0.1"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
cc = "1.0"
|
|
|
|
[profile.release]
|
|
#panic = "abort"
|
|
lto = true
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
incremental = false
|
|
|
|
#[profile.release.overrides."*"] # +
|
|
#opt-level = "z"
|
|
#codegen-units = 1
|
|
#incremental = false
|