2020-06-18 19:55:21 +03:00
|
|
|
workspace = { }
|
2019-12-23 22:30:21 +03:00
|
|
|
|
2019-07-21 00:42:07 +03:00
|
|
|
[package]
|
2020-02-08 18:51:48 +03:00
|
|
|
name = "tauri-bundler"
|
2020-09-02 20:26:08 +03:00
|
|
|
version = "0.9.3"
|
2020-06-18 19:55:21 +03:00
|
|
|
authors = [
|
|
|
|
"George Burton <burtonageo@gmail.com>",
|
|
|
|
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
|
|
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
|
|
"Tensor Programming <tensordeveloper@gmail.com>"
|
|
|
|
]
|
2020-07-10 03:54:35 +03:00
|
|
|
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
|
2019-07-21 00:42:07 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
2020-06-18 19:55:21 +03:00
|
|
|
keywords = [ "bundle", "cargo", "tauri" ]
|
2019-10-07 21:36:56 +03:00
|
|
|
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"
|
2020-10-18 03:01:10 +03:00
|
|
|
dirs-next = "1.0.2"
|
2019-11-30 12:04:42 +03:00
|
|
|
glob = "0.3.0"
|
|
|
|
icns = "0.3"
|
2020-10-10 22:32:38 +03:00
|
|
|
image = "0.23.10"
|
2020-05-08 16:09:39 +03:00
|
|
|
libflate = "1.0"
|
2019-11-30 12:04:42 +03:00
|
|
|
md5 = "0.7.0"
|
2019-07-21 00:42:07 +03:00
|
|
|
msi = "0.2"
|
2020-05-30 02:56:05 +03:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
2020-02-29 22:49:45 +03:00
|
|
|
serde_json = "1.0"
|
2020-06-18 19:55:21 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2020-02-08 18:10:30 +03:00
|
|
|
strsim = "0.10.0"
|
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"
|
2020-10-18 01:00:22 +03:00
|
|
|
toml = "0.5.7"
|
2020-06-18 19:55:21 +03:00
|
|
|
uuid = { version = "0.8", features = [ "v5" ] }
|
2019-07-21 00:42:07 +03:00
|
|
|
walkdir = "2"
|
2020-04-03 19:30:55 +03:00
|
|
|
lazy_static = { version = "1.4" }
|
2020-09-24 04:00:20 +03:00
|
|
|
handlebars = { version = "3.5" }
|
2019-07-21 00:42:07 +03:00
|
|
|
|
2020-06-18 19:55:21 +03:00
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
2020-10-18 01:00:22 +03:00
|
|
|
attohttpc = { version = "0.16.0" }
|
2020-01-17 06:19:21 +03:00
|
|
|
regex = { version = "1" }
|
2020-05-30 02:56:05 +03:00
|
|
|
runas = "0.2"
|
2019-12-22 22:04:45 +03:00
|
|
|
|
2020-06-18 19:55:21 +03:00
|
|
|
[target."cfg(not(target_os = \"linux\"))".dependencies]
|
2019-12-22 22:04:45 +03:00
|
|
|
zip = { version = "0.5" }
|
2020-06-11 18:11:52 +03:00
|
|
|
sha2 = { version = "0.9" }
|
2019-12-22 22:04:45 +03:00
|
|
|
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]]
|
2020-02-08 18:51:48 +03:00
|
|
|
name = "cargo-tauri-bundler"
|
2019-11-30 14:48:39 +03:00
|
|
|
path = "src/main.rs"
|