liftinstall/Cargo.toml

60 lines
1 KiB
TOML
Raw Normal View History

2018-01-26 12:29:28 +00:00
[package]
2018-01-31 06:14:31 +00:00
name = "liftinstall"
2019-07-04 23:19:13 +00:00
version = "0.2.0"
2020-03-09 06:39:24 +00:00
edition = "2018"
2018-01-26 12:29:28 +00:00
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."
build = "build.rs"
2018-01-26 12:29:28 +00:00
[dependencies]
2020-03-09 06:24:29 +00:00
web-view = "0.6"
2018-07-28 05:33:06 +00:00
hyper = "0.11.27"
2019-09-05 16:39:42 +00:00
futures = "0.1.29"
mime_guess = "2.0"
url = "2.1"
2018-01-26 12:29:28 +00:00
2019-09-05 16:39:42 +00:00
reqwest = "0.9.22"
2020-05-27 22:14:09 +00:00
number_prefix = "0.4"
2018-01-30 04:53:28 +00:00
2019-09-05 16:39:42 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2018-01-27 03:27:41 +00:00
2019-09-05 16:39:42 +00:00
toml = "0.5"
2018-01-27 03:27:41 +00:00
2020-05-27 22:14:09 +00:00
semver = {version = "0.10", features = ["serde"]}
2019-09-05 16:39:42 +00:00
regex = "1.3"
2019-09-05 16:39:42 +00:00
dirs = "2.0"
zip = "0.5"
xz2 = "0.1"
2018-08-08 02:47:32 +00:00
tar = "0.4"
2018-08-04 06:28:13 +00:00
log = "0.4"
2020-05-27 22:14:09 +00:00
fern = "0.6"
2019-09-05 16:39:42 +00:00
chrono = "0.4"
2018-08-04 06:28:13 +00:00
2019-09-05 16:39:42 +00:00
clap = "2.33"
2018-08-04 13:35:56 +00:00
2018-08-07 10:17:01 +00:00
[build-dependencies]
2020-03-09 06:24:29 +00:00
walkdir = "2.3"
2019-09-05 16:39:42 +00:00
serde = "1.0"
serde_derive = "1.0"
toml = "0.5"
which = "3.1"
2018-08-07 10:17:01 +00:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["psapi", "winbase", "winioctl", "winnt"] }
widestring = "0.4.0"
[target.'cfg(not(windows))'.dependencies]
2020-05-27 22:14:09 +00:00
sysinfo = "0.14"
2019-09-05 16:39:42 +00:00
slug = "0.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
2018-08-06 10:51:59 +00:00
cc = "1.0"