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"
|
2022-12-08 17:57:21 +03:00
|
|
|
version = "1.1.2"
|
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"
|
2022-09-28 20:33:35 +03:00
|
|
|
rust-version = "1.59"
|
2022-09-15 18:03:45 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
|
2019-07-21 00:42:07 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-11-24 18:52:54 +03:00
|
|
|
tauri-utils = { version = "1.2.1", path = "../../core/tauri-utils", features = [ "resources" ] }
|
2022-11-30 17:25:53 +03:00
|
|
|
image = "0.24.5"
|
2022-04-03 17:39:51 +03:00
|
|
|
libflate = "1.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"
|
2022-03-23 20:00:12 +03:00
|
|
|
tar = "0.4.38"
|
2019-07-21 00:42:07 +03:00
|
|
|
walkdir = "2"
|
2022-05-18 15:56:23 +03:00
|
|
|
handlebars = "4.3"
|
2022-01-12 16:15:05 +03:00
|
|
|
tempfile = "3.3.0"
|
2022-05-08 02:01:58 +03:00
|
|
|
log = { version = "0.4.17", features = [ "kv_unstable" ] }
|
2022-06-09 22:16:33 +03:00
|
|
|
dirs-next = "2.0"
|
2023-01-19 20:39:53 +03:00
|
|
|
encoding_rs = "0.8"
|
2023-01-19 21:42:40 +03:00
|
|
|
os_pipe = "1"
|
2019-07-21 00:42:07 +03:00
|
|
|
|
2023-01-19 21:42:40 +03:00
|
|
|
# dependencies for Windows targets
|
2022-11-20 15:37:49 +03:00
|
|
|
attohttpc = "0.24"
|
2023-01-19 21:42:40 +03:00
|
|
|
hex = "0.4"
|
|
|
|
semver = "1"
|
|
|
|
sha1 = "0.10"
|
|
|
|
sha2 = "0.10"
|
|
|
|
zip = "0.6"
|
|
|
|
|
|
|
|
# dependencies for code signing on Windows hosts
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
2022-04-20 20:38:51 +03:00
|
|
|
uuid = { version = "1", features = [ "v4", "v5" ] }
|
2021-03-29 01:58:44 +03:00
|
|
|
bitness = "0.4"
|
2023-01-19 21:42:40 +03:00
|
|
|
winreg = "0.10" # Can only be compiled for Windows hosts
|
2022-02-08 19:13:21 +03:00
|
|
|
glob = "0.3"
|
2023-01-19 21:42:40 +03:00
|
|
|
|
2019-12-22 22:04:45 +03:00
|
|
|
|
2021-04-30 17:39:50 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2022-09-03 20:37:41 +03:00
|
|
|
icns = { package = "tauri-icns", version = "0.1" }
|
2022-02-11 00:03:25 +03:00
|
|
|
time = { version = "0.3", features = [ "formatting" ] }
|
2022-06-21 16:00:12 +03:00
|
|
|
plist = "1"
|
2019-07-28 21:23:50 +03:00
|
|
|
|
2022-02-05 06:40:13 +03:00
|
|
|
[target."cfg(any(target_os = \"macos\", target_os = \"windows\"))".dependencies]
|
|
|
|
regex = "1"
|
|
|
|
|
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"
|
2022-05-07 16:19:54 +03:00
|
|
|
ar = "0.9.0"
|
|
|
|
md5 = "0.7.0"
|
2021-08-10 22:02:46 +03:00
|
|
|
|
2021-01-30 18:15:47 +03:00
|
|
|
[lib]
|
|
|
|
name = "tauri_bundler"
|
|
|
|
path = "src/lib.rs"
|