mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +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
23 lines
641 B
TOML
23 lines
641 B
TOML
[package]
|
|
name = "tauri-api"
|
|
version = "0.2.0"
|
|
authors = ["Lucas Fernandes Gonçalves Nogueira <lucas@quasar.dev>", "Daniel Thompson-Yvetot <denjell@sfosc.org>", "Tensor Programming <tensordeveloper@gmail.com>"]
|
|
license = "MIT"
|
|
homepage = "https://tauri-apps.org"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Make tiny, secure apps for all desktop platforms with Tauri"
|
|
edition = "2018"
|
|
exclude = ["test/fixture/**"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
dirs = "2.0.2"
|
|
ignore = "0.4.10"
|
|
zip = "0.5.3"
|
|
tempdir = "0.3"
|
|
semver = "0.9"
|
|
tempfile = "3"
|
|
either = "1.5.3"
|
|
tar = "0.4"
|
|
flate2 = "1"
|