mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 08:02:13 +03:00
e288180104
* split tauri into 3 crates * fix macros * change builder into lib * cleanup package paths * add features back to lib * make build function public * add build-deps * rename and fix. * correct package name * move crates to root and refactor names * fix github action * move fixture to tauri-build * remove slash * add .vscode features * fix updater * fix updater mistake * fix(tauri) refactor buiilds * fix seperation * change get back to get * fix cfg and remove dead code warnings. * roll #160 into this pr * add credit * fix eof * chore(tauri) move assets to mod, loadAssets cfg outside its definition * chore(tauri) remove unused deps * update updater and cfg * fix(tauri) embedded-server with dead variable * add review refactors and remove cli form workgroup * chore(tauri) rename tauri to tauri-api and tauri-bundle to tauri * fix workspace and updater * rename update to updater
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "tauri-cli"
|
|
version = "0.1.2"
|
|
authors = ["George Burton <burtonageo@gmail.com>", "Lucas Fernandes Gonçalves Nogueira <lucas@quasar.dev>", "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"
|
|
error-chain = "0.12"
|
|
glob = "0.3.0"
|
|
icns = "0.3"
|
|
image = "0.22.3"
|
|
libflate = "0.1"
|
|
md5 = "0.7.0"
|
|
msi = "0.2"
|
|
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
strsim = "0.9.3"
|
|
tar = "0.4"
|
|
target_build_utils = "0.3"
|
|
term = "0.6.1"
|
|
toml = "0.5.5"
|
|
uuid = { version = "0.8", features = ["v5"] }
|
|
walkdir = "2"
|
|
|
|
attohttpc = { version = "0.7.0" }
|
|
|
|
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
|
handlebars = { version = "2.0" }
|
|
lazy_static = { version = "1.4" }
|
|
zip = { version = "0.5" }
|
|
sha2 = { version = "0.8" }
|
|
hex = { version = "0.4" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[[bin]]
|
|
name = "cargo-tauri-cli"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
appimage = []
|
|
ios = []
|
|
dmg = [] |