2021-04-14 16:50:15 +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"
|
2021-08-16 23:59:06 +03:00
|
|
|
version = "1.0.0-beta.4"
|
2020-06-18 19:55:21 +03:00
|
|
|
authors = [
|
|
|
|
"George Burton <burtonageo@gmail.com>",
|
2021-04-14 21:11:08 +03:00
|
|
|
"Tauri Programme within The Commons Conservancy"
|
2020-06-18 19:55:21 +03:00
|
|
|
]
|
2020-07-10 03:54:35 +03:00
|
|
|
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
|
2021-04-11 01:09:09 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
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"
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.56"
|
2021-05-11 22:20:35 +03:00
|
|
|
exclude = [
|
|
|
|
".license_template",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"/target",
|
|
|
|
"rustfmt.toml"
|
|
|
|
]
|
2019-07-21 00:42:07 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-08-24 16:49:36 +03:00
|
|
|
ar = "0.9.0"
|
2019-11-30 12:04:42 +03:00
|
|
|
glob = "0.3.0"
|
|
|
|
icns = "0.3"
|
2021-03-08 03:38:38 +03:00
|
|
|
image = "0.23.14"
|
2021-04-21 07:41:02 +03:00
|
|
|
libflate = "1.1"
|
2019-11-30 12:04:42 +03:00
|
|
|
md5 = "0.7.0"
|
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"
|
2021-01-30 18:15:47 +03:00
|
|
|
termcolor = "1.1.2"
|
2021-01-06 13:47:47 +03:00
|
|
|
toml = "0.5.8"
|
2019-07-21 00:42:07 +03:00
|
|
|
walkdir = "2"
|
2022-01-07 19:45:48 +03:00
|
|
|
handlebars = { version = "4.2" }
|
2021-03-29 01:58:44 +03:00
|
|
|
zip = { version = "0.5" }
|
2022-01-12 16:15:05 +03:00
|
|
|
tempfile = "3.3.0"
|
2021-04-30 17:39:50 +03:00
|
|
|
regex = "1"
|
2019-07-21 00:42:07 +03:00
|
|
|
|
2020-06-18 19:55:21 +03:00
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
2021-10-20 16:56:33 +03:00
|
|
|
attohttpc = "0.18"
|
2021-05-21 19:35:55 +03:00
|
|
|
uuid = { version = "0.8", features = [ "v4", "v5" ] }
|
2021-03-29 01:58:44 +03:00
|
|
|
bitness = "0.4"
|
2021-09-21 19:44:27 +03:00
|
|
|
winreg = "0.10"
|
2021-12-09 04:32:41 +03:00
|
|
|
sha2 = "0.10"
|
2021-04-30 17:39:50 +03:00
|
|
|
hex = "0.4"
|
2019-12-22 22:04:45 +03:00
|
|
|
|
2021-04-30 17:39:50 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
|
|
chrono = "0.4"
|
|
|
|
dirs-next = "2.0"
|
2019-07-28 21:23:50 +03:00
|
|
|
|
2021-08-10 22:02:46 +03:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2021-12-15 22:02:56 +03:00
|
|
|
heck = "0.4"
|
2021-08-10 22:02:46 +03:00
|
|
|
|
2021-01-30 18:15:47 +03:00
|
|
|
[lib]
|
|
|
|
name = "tauri_bundler"
|
|
|
|
path = "src/lib.rs"
|