2018-01-26 13:29:28 +01:00
|
|
|
[package]
|
2018-01-31 07:14:31 +01:00
|
|
|
name = "liftinstall"
|
2018-01-26 13:29:28 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["James <jselby@jselby.net>"]
|
2018-01-31 07:14:31 +01:00
|
|
|
repository = "https://github.com/j-selby/liftinstall.git"
|
|
|
|
documentation = "https://liftinstall.jselby.net"
|
|
|
|
description = "An adaptable installer for your application."
|
2018-08-03 14:21:34 +02:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[package.metadata.winres]
|
|
|
|
ProductName = "yuzu Installer"
|
|
|
|
FileDescription = "An interactive installer for yuzu"
|
2018-01-26 13:29:28 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2018-07-28 07:33:06 +02:00
|
|
|
web-view = {git = "https://github.com/Boscop/web-view.git", rev = "555f422d09cbb94e82a728d47e9e07ca91963f6e"}
|
2018-01-27 12:56:36 +01:00
|
|
|
|
2018-07-28 07:33:06 +02:00
|
|
|
hyper = "0.11.27"
|
2018-01-27 12:56:36 +01:00
|
|
|
futures = "*"
|
|
|
|
mime_guess = "1.8.3"
|
2018-01-29 11:57:06 +01:00
|
|
|
url = "*"
|
2018-01-26 13:29:28 +01:00
|
|
|
|
2018-07-28 07:33:06 +02:00
|
|
|
reqwest = "0.8.6"
|
2018-01-30 05:53:28 +01:00
|
|
|
number_prefix = "0.2.7"
|
|
|
|
|
2018-01-27 04:27:41 +01:00
|
|
|
serde = "1.0.27"
|
|
|
|
serde_derive = "1.0.27"
|
|
|
|
serde_json = "1.0.9"
|
|
|
|
|
|
|
|
toml = "0.4"
|
|
|
|
|
2018-01-31 04:36:29 +01:00
|
|
|
semver = {version = "0.9.0", features = ["serde"]}
|
2018-01-29 13:28:14 +01:00
|
|
|
regex = "0.2"
|
2018-01-29 08:21:37 +01:00
|
|
|
|
2018-01-30 08:29:34 +01:00
|
|
|
zip = "0.2.8"
|
2018-08-03 13:49:38 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
# NFD is needed on Windows, as web-view doesn't work correctly here
|
|
|
|
nfd = "0.0.4"
|
2018-08-03 14:21:34 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
winres = "0.1"
|