liftinstall/Cargo.toml
2020-05-28 16:50:52 +10:00

60 lines
1 KiB
TOML

[package]
name = "liftinstall"
version = "0.2.0"
edition = "2018"
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 = "0.6"
hyper = "0.11.27"
futures = "0.1.29"
mime_guess = "2.0"
url = "2.1"
reqwest = "0.9.22"
number_prefix = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
toml = "0.5"
semver = {version = "0.10", features = ["serde"]}
regex = "1.3"
dirs = "2.0"
zip = "0.5"
xz2 = "0.1"
tar = "0.4"
log = "0.4"
fern = "0.6"
chrono = "0.4"
clap = "2.33"
[build-dependencies]
walkdir = "2.3"
serde = "1.0"
serde_derive = "1.0"
toml = "0.5"
which = "3.1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["psapi", "winbase", "winioctl", "winnt"] }
widestring = "0.4.0"
[target.'cfg(not(windows))'.dependencies]
sysinfo = "0.14"
slug = "0.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
cc = "1.0"