1
1
mirror of https://github.com/tauri-apps/tauri.git synced 2024-12-19 08:31:35 +03:00
tauri/tauri-api/Cargo.toml
Lucas Fernandes Nogueira b7a6bc0f42 feat(bundler&tauri) add wix resource bundling and utils to get the path to the platform resource dir ()
* feat(bundler) copy resources to the out dir

* feat(utils) add resource_dir fn

* feat(examples) spawn node with resource JS instead of pkg bin

* feat(bundler) WIP on windows resource bundler

* feat(utils) add windows, macos resource_dir logic

* fix(bundler) resource folder iteration on wix

* chore(bundler) add comments to generate_resource_data fn

* chore(bundler) add comments to the get_wix_data fn

* change minor items.

* run `cargo fmt`

* run `rust fmt` and `clippy` and add fmt.toml

* remove unnessecary rustfmt.toml files.

Co-authored-by: Tensor-Programming <abeltensor@tensor-programming.com>
2020-01-26 19:57:09 -05:00

29 lines
804 B
TOML

[package]
name = "tauri-api"
version = "0.3.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.studio"
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.11"
zip = "0.5.4"
tempdir = "0.3"
semver = "0.9"
tempfile = "3"
either = "1.5.3"
tar = "0.4"
flate2 = "1"
error-chain = "0.12"
tauri-utils = {version = "0.3.0", path = "../tauri-utils"}
[dev-dependencies]
quickcheck = "0.9.2"
quickcheck_macros = "0.9.1"
totems = "0.2.7"