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"
|
2023-12-20 19:50:17 +03:00
|
|
|
version = "1.4.8"
|
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"
|
2023-03-31 18:36:59 +03:00
|
|
|
rust-version = "1.60"
|
2022-09-15 18:03:45 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
|
2019-07-21 00:42:07 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-12-20 19:50:17 +03:00
|
|
|
tauri-utils = { version = "1.5.2", path = "../../core/tauri-utils", features = [ "resources" ] }
|
2023-10-18 19:26:24 +03:00
|
|
|
image = "0.24.7"
|
2023-10-26 19:33:01 +03:00
|
|
|
libflate = "2.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"
|
2023-10-18 19:26:24 +03:00
|
|
|
tar = "0.4.40"
|
2019-07-21 00:42:07 +03:00
|
|
|
walkdir = "2"
|
2023-11-19 14:58:27 +03:00
|
|
|
handlebars = "4.5"
|
2023-11-14 03:43:45 +03:00
|
|
|
tempfile = "3.8.1"
|
2023-10-18 19:26:24 +03:00
|
|
|
log = { version = "0.4.20", features = [ "kv_unstable" ] }
|
2022-06-09 22:16:33 +03:00
|
|
|
dirs-next = "2.0"
|
2023-01-19 21:42:40 +03:00
|
|
|
os_pipe = "1"
|
2024-01-10 22:03:25 +03:00
|
|
|
ureq = { version = "2.9.1", default-features = false }
|
2023-06-06 19:29:52 +03:00
|
|
|
native-tls = { version = "0.2", optional = true }
|
2023-01-19 21:42:40 +03:00
|
|
|
hex = "0.4"
|
|
|
|
semver = "1"
|
|
|
|
sha1 = "0.10"
|
|
|
|
sha2 = "0.10"
|
|
|
|
zip = "0.6"
|
2023-05-15 18:11:10 +03:00
|
|
|
dunce = "1"
|
2023-01-19 21:42:40 +03:00
|
|
|
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
2022-04-20 20:38:51 +03:00
|
|
|
uuid = { version = "1", features = [ "v4", "v5" ] }
|
2023-10-18 19:26:24 +03:00
|
|
|
winreg = "0.51"
|
2022-02-08 19:13:21 +03:00
|
|
|
glob = "0.3"
|
2023-01-19 21:42:40 +03:00
|
|
|
|
2023-09-28 20:01:19 +03:00
|
|
|
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
|
|
|
|
version = "0.48"
|
|
|
|
features = [
|
2023-07-12 13:38:25 +03:00
|
|
|
"Win32_System_SystemInformation",
|
|
|
|
"Win32_System_Diagnostics_Debug"
|
|
|
|
]
|
|
|
|
|
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"
|
2023-05-03 20:59:09 +03:00
|
|
|
|
|
|
|
[features]
|
2023-06-14 18:59:28 +03:00
|
|
|
default = [ "rustls" ]
|
2023-06-06 19:29:52 +03:00
|
|
|
native-tls = [ "ureq/native-tls" ]
|
|
|
|
native-tls-vendored = [ "native-tls", "native-tls/vendored" ]
|
|
|
|
rustls = [ "ureq/tls" ]
|