mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 13:35:41 +01:00
55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[package]
|
|
name = "liftinstall"
|
|
version = "0.1.0"
|
|
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 = {git = "https://github.com/Boscop/web-view.git", rev = "555f422d09cbb94e82a728d47e9e07ca91963f6e"}
|
|
|
|
hyper = "0.11.27"
|
|
futures = "*"
|
|
mime_guess = "1.8.3"
|
|
url = "*"
|
|
|
|
reqwest = {git = "https://github.com/seanmonstar/reqwest.git", rev = "68d012e"}
|
|
number_prefix = "0.2.7"
|
|
|
|
serde = "1.0.27"
|
|
serde_derive = "1.0.27"
|
|
serde_json = "1.0.9"
|
|
|
|
toml = "0.4"
|
|
|
|
semver = {version = "0.9.0", features = ["serde"]}
|
|
regex = "0.2"
|
|
|
|
dirs = "1.0"
|
|
zip = "0.4.2"
|
|
xz-decom = {git = "https://github.com/j-selby/xz-decom.git", rev = "f5e9576"}
|
|
tar = "0.4"
|
|
|
|
log = "0.4"
|
|
fern = "0.5"
|
|
chrono = "0.4.5"
|
|
|
|
clap = "2.32.0"
|
|
|
|
[build-dependencies]
|
|
walkdir = "2"
|
|
serde = "1.0.27"
|
|
serde_derive = "1.0.27"
|
|
toml = "0.4"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
# NFD is needed on Windows, as web-view doesn't work correctly here
|
|
nfd = "0.0.4"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
bindgen = "0.26.3"
|
|
cc = "1.0"
|