2018-01-26 12:29:28 +00:00
|
|
|
[package]
|
2018-01-31 06:14:31 +00:00
|
|
|
name = "liftinstall"
|
2018-01-26 12:29:28 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["James <jselby@jselby.net>"]
|
2018-01-31 06:14:31 +00:00
|
|
|
repository = "https://github.com/j-selby/liftinstall.git"
|
|
|
|
documentation = "https://liftinstall.jselby.net"
|
|
|
|
description = "An adaptable installer for your application."
|
2018-08-03 12:21:34 +00:00
|
|
|
build = "build.rs"
|
|
|
|
|
2018-01-26 12:29:28 +00:00
|
|
|
[dependencies]
|
2018-07-28 05:33:06 +00:00
|
|
|
web-view = {git = "https://github.com/Boscop/web-view.git", rev = "555f422d09cbb94e82a728d47e9e07ca91963f6e"}
|
2018-01-27 11:56:36 +00:00
|
|
|
|
2018-07-28 05:33:06 +00:00
|
|
|
hyper = "0.11.27"
|
2018-01-27 11:56:36 +00:00
|
|
|
futures = "*"
|
|
|
|
mime_guess = "1.8.3"
|
2018-01-29 10:57:06 +00:00
|
|
|
url = "*"
|
2018-01-26 12:29:28 +00:00
|
|
|
|
2018-09-19 04:15:41 +00:00
|
|
|
reqwest = "0.9.0"
|
2018-01-30 04:53:28 +00:00
|
|
|
number_prefix = "0.2.7"
|
|
|
|
|
2018-01-27 03:27:41 +00:00
|
|
|
serde = "1.0.27"
|
|
|
|
serde_derive = "1.0.27"
|
|
|
|
serde_json = "1.0.9"
|
|
|
|
|
|
|
|
toml = "0.4"
|
|
|
|
|
2018-01-31 03:36:29 +00:00
|
|
|
semver = {version = "0.9.0", features = ["serde"]}
|
2018-01-29 12:28:14 +00:00
|
|
|
regex = "0.2"
|
2018-01-29 07:21:37 +00:00
|
|
|
|
2018-08-04 08:35:00 +00:00
|
|
|
dirs = "1.0"
|
2018-08-08 02:47:32 +00:00
|
|
|
zip = "0.4.2"
|
2018-09-20 03:47:16 +00:00
|
|
|
xz-decom = {git = "https://github.com/j-selby/xz-decom.git", rev = "9ebf3d00d9ff909c39eec1d2cf7e6e068ce214e5"}
|
2018-08-08 02:47:32 +00:00
|
|
|
tar = "0.4"
|
2018-08-03 11:49:38 +00:00
|
|
|
|
2018-08-04 06:28:13 +00:00
|
|
|
log = "0.4"
|
|
|
|
fern = "0.5"
|
|
|
|
chrono = "0.4.5"
|
|
|
|
|
2018-08-04 13:35:56 +00:00
|
|
|
clap = "2.32.0"
|
|
|
|
|
2018-08-07 10:17:01 +00:00
|
|
|
[build-dependencies]
|
|
|
|
walkdir = "2"
|
2018-08-09 06:02:03 +00:00
|
|
|
serde = "1.0.27"
|
|
|
|
serde_derive = "1.0.27"
|
|
|
|
toml = "0.4"
|
2018-08-07 10:17:01 +00:00
|
|
|
|
2018-08-03 11:49:38 +00: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 12:21:34 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
winres = "0.1"
|
2018-08-06 10:51:59 +00:00
|
|
|
cc = "1.0"
|