mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
a12dc92c17
Co-authored-by: Renovate Bot <bot@renovateapp.com>
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
workspace = {}
|
|
|
|
[package]
|
|
name = "tauri-bundler"
|
|
version = "0.9.4"
|
|
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>"
|
|
]
|
|
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
|
|
license = "MIT/Apache-2.0"
|
|
keywords = [ "bundle", "cargo", "tauri" ]
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Wrap rust executables in OS-specific app bundles for Tauri"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ar = "0.8.0"
|
|
chrono = "0.4"
|
|
dirs-next = "2.0.0"
|
|
glob = "0.3.0"
|
|
icns = "0.3"
|
|
image = "0.23.14"
|
|
libflate = "1.0"
|
|
md5 = "0.7.0"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
strsim = "0.10.0"
|
|
tar = "0.4"
|
|
termcolor = "1.1.2"
|
|
toml = "0.5.8"
|
|
walkdir = "2"
|
|
lazy_static = { version = "1.4" }
|
|
handlebars = { version = "3.5" }
|
|
zip = { version = "0.5" }
|
|
tempfile = "3.2.0"
|
|
regex = { version = "1" }
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
|
attohttpc = { version = "0.17.0" }
|
|
regex = { version = "1" }
|
|
uuid = { version = "0.8", features = [ "v5" ] }
|
|
bitness = "0.4"
|
|
winreg = "0.8"
|
|
|
|
[target."cfg(not(target_os = \"linux\"))".dependencies]
|
|
sha2 = { version = "0.9" }
|
|
hex = { version = "0.4" }
|
|
|
|
|
|
[lib]
|
|
name = "tauri_bundler"
|
|
path = "src/lib.rs"
|