tauri/tooling/bundler/Cargo.toml
github-actions[bot] 80f16d35f9
Apply Version Updates From Current Changes (#2246)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
2021-08-16 17:59:06 -03:00

62 lines
1.3 KiB
TOML

workspace = { }
[package]
name = "tauri-bundler"
version = "1.0.0-beta.4"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
]
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
license = "Apache-2.0 OR MIT"
keywords = [ "bundle", "cargo", "tauri" ]
repository = "https://github.com/tauri-apps/tauri"
description = "Wrap rust executables in OS-specific app bundles for Tauri"
edition = "2018"
exclude = [
".license_template",
"CHANGELOG.md",
"/target",
"rustfmt.toml"
]
[dependencies]
ar = "0.8.0"
glob = "0.3.0"
icns = "0.3"
image = "0.23.14"
libflate = "1.1"
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"
handlebars = { version = "4.1" }
zip = { version = "0.5" }
tempfile = "3.2.0"
regex = "1"
[target."cfg(target_os = \"windows\")".dependencies]
attohttpc = "0.17"
uuid = { version = "0.8", features = [ "v4", "v5" ] }
bitness = "0.4"
winreg = "0.9"
sha2 = "0.9"
hex = "0.4"
[target."cfg(target_os = \"macos\")".dependencies]
chrono = "0.4"
dirs-next = "2.0"
[target."cfg(target_os = \"linux\")".dependencies]
heck = "0.3"
[lib]
name = "tauri_bundler"
path = "src/lib.rs"