tauri/cli/tauri-bundler/Cargo.toml
Tensor-Programming 6ab67ed390
feat(bundler) remove error_chain and add thiserror and anyhow. (#623)
* Publish (#547)

Co-authored-by: nothingismagick <drthompsonsmagickindustries@gmail.com>

* chore(tauri.js): version updates (#556) (#557)

Co-authored-by: nothingismagick <denjell@sfosc.org>

* Publish (#588)

* hotfix(tauri.js) proxy dev-server websocket connection so HMR works (#591)

* hotfix(tauri.js) proxy dev-server websocket connection so HMR works

* chore(tauri.js) lint fix

* Publish (#606)

* Publish (#608)

* chore(api): "version updates" (#614) (#615)

bump api version

Co-authored-by: nothingismagick <denjell@mailscript.com>

* add anyhow and thiserror to bundler.

* remove error chain

* cleanup

* fix import paths.

* remove bail calls.

* add more consistent error descriptions.

* add cfg for non-linux errors.

* fix linux cfg

* fix maskfile

* add runas and loopback command

* cleanup maskfile clean.

* fix cfg

* export print info and fix cfg.

* fix maskfile's logic

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: nothingismagick <drthompsonsmagickindustries@gmail.com>
Co-authored-by: nothingismagick <denjell@sfosc.org>
Co-authored-by: Lucas Fernandes Nogueira <lucasfernandesnog@gmail.com>
Co-authored-by: nothingismagick <denjell@mailscript.com>
2020-05-29 19:56:05 -04:00

57 lines
1.3 KiB
TOML

workspace = {}
[package]
name = "tauri-bundler"
version = "0.6.0"
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>"]
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"
clap = "^2"
dirs = "2.0.2"
glob = "0.3.0"
icns = "0.3"
image = "0.23.4"
libflate = "1.0"
md5 = "0.7.0"
msi = "0.2"
# error handling
anyhow = "1.0"
thiserror = "1.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
strsim = "0.10.0"
tar = "0.4"
target_build_utils = "0.3"
term = "0.6.1"
toml = "0.5.6"
uuid = { version = "0.8", features = ["v5"] }
walkdir = "2"
lazy_static = { version = "1.4" }
handlebars = { version = "3.0" }
[target.'cfg(target_os = "windows")'.dependencies]
attohttpc = { version = "0.13.0" }
regex = { version = "1" }
runas = "0.2"
[target.'cfg(not(target_os = "linux"))'.dependencies]
zip = { version = "0.5" }
sha2 = { version = "0.8" }
hex = { version = "0.4" }
[dev-dependencies]
tempfile = "3"
[[bin]]
name = "cargo-tauri-bundler"
path = "src/main.rs"