2019-07-21 00:42:07 +03:00
|
|
|
[package]
|
2019-11-28 01:26:24 +03:00
|
|
|
name = "tauri-cli"
|
2019-12-02 00:31:16 +03:00
|
|
|
version = "0.1.2"
|
2019-12-22 22:04:45 +03:00
|
|
|
authors = ["George Burton <burtonageo@gmail.com>", "Lucas Fernandes Gonçalves Nogueira <lucas@quasar.dev>", "Daniel Thompson-Yvetot <denjell@sfosc.org>", "Tensor Programming <tensordeveloper@gmail.com>"]
|
2019-07-21 00:42:07 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
2019-10-07 21:36:56 +03:00
|
|
|
keywords = ["bundle", "cargo", "tauri"]
|
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Wrap rust executables in OS-specific app bundles for Tauri"
|
2019-07-21 00:42:07 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-30 12:04:42 +03:00
|
|
|
ar = "0.8.0"
|
2019-07-21 00:42:07 +03:00
|
|
|
chrono = "0.4"
|
|
|
|
clap = "^2"
|
2019-11-30 12:04:42 +03:00
|
|
|
dirs = "2.0.2"
|
2019-07-21 00:42:07 +03:00
|
|
|
error-chain = "0.12"
|
2019-11-30 12:04:42 +03:00
|
|
|
glob = "0.3.0"
|
|
|
|
icns = "0.3"
|
|
|
|
image = "0.22.3"
|
2019-07-21 00:42:07 +03:00
|
|
|
libflate = "0.1"
|
2019-11-30 12:04:42 +03:00
|
|
|
md5 = "0.7.0"
|
2019-07-21 00:42:07 +03:00
|
|
|
msi = "0.2"
|
2019-11-26 23:16:21 +03:00
|
|
|
|
2019-07-21 00:42:07 +03:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2019-12-19 02:19:09 +03:00
|
|
|
strsim = "0.9.3"
|
2019-07-21 00:42:07 +03:00
|
|
|
tar = "0.4"
|
|
|
|
target_build_utils = "0.3"
|
2019-11-30 12:04:42 +03:00
|
|
|
term = "0.6.1"
|
|
|
|
toml = "0.5.5"
|
|
|
|
uuid = { version = "0.8", features = ["v5"] }
|
2019-07-21 00:42:07 +03:00
|
|
|
walkdir = "2"
|
|
|
|
|
2019-12-22 22:04:45 +03:00
|
|
|
attohttpc = { version = "0.7.0" }
|
|
|
|
|
|
|
|
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
|
|
|
handlebars = { version = "2.0" }
|
|
|
|
lazy_static = { version = "1.4" }
|
|
|
|
zip = { version = "0.5" }
|
|
|
|
sha2 = { version = "0.8" }
|
|
|
|
hex = { version = "0.4" }
|
2019-07-28 21:23:50 +03:00
|
|
|
|
2019-07-21 00:42:07 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3"
|
2019-11-30 14:48:39 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cargo-tauri-cli"
|
|
|
|
path = "src/main.rs"
|
2019-12-22 22:04:45 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
appimage = []
|
|
|
|
ios = []
|
|
|
|
dmg = []
|