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"
|
|
|
|
|
2018-01-26 13:29:28 +01:00
|
|
|
[dependencies]
|
2019-03-28 18:08:13 +01:00
|
|
|
web-view = "0.4.0"
|
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-09-19 06:15:41 +02:00
|
|
|
reqwest = "0.9.0"
|
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-08-04 10:35:00 +02:00
|
|
|
dirs = "1.0"
|
2018-08-08 04:47:32 +02:00
|
|
|
zip = "0.4.2"
|
2018-09-20 05:47:16 +02:00
|
|
|
xz-decom = {git = "https://github.com/j-selby/xz-decom.git", rev = "9ebf3d00d9ff909c39eec1d2cf7e6e068ce214e5"}
|
2018-08-08 04:47:32 +02:00
|
|
|
tar = "0.4"
|
2018-08-03 13:49:38 +02:00
|
|
|
|
2018-08-04 08:28:13 +02:00
|
|
|
log = "0.4"
|
|
|
|
fern = "0.5"
|
|
|
|
chrono = "0.4.5"
|
|
|
|
|
2018-08-04 15:35:56 +02:00
|
|
|
clap = "2.32.0"
|
|
|
|
|
2018-08-07 12:17:01 +02:00
|
|
|
[build-dependencies]
|
|
|
|
walkdir = "2"
|
2018-08-09 08:02:03 +02:00
|
|
|
serde = "1.0.27"
|
|
|
|
serde_derive = "1.0.27"
|
|
|
|
toml = "0.4"
|
2018-08-07 12:17:01 +02:00
|
|
|
|
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
|
|
|
|
2018-12-29 23:04:55 +01:00
|
|
|
winapi = { version = "0.3", features = ["psapi", "winbase", "winioctl", "winnt"] }
|
|
|
|
|
2018-08-03 14:21:34 +02:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
winres = "0.1"
|
2018-08-06 12:51:59 +02:00
|
|
|
cc = "1.0"
|