mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-24 03:04:36 +03:00
f0d95a4244
* feat(testing) add test apps, docs for testing Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(testing) add test apps, docs for testing, fix entry and generator Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(tauri) use require.resolve Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(rust) fix for cargo sources Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * chore(version) bump Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(tauri) setup tauri object Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(demo) setup tauri object Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(entry) fix generator Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(docs) prepare quasar spa docs Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev>
37 lines
887 B
TOML
Executable File
37 lines
887 B
TOML
Executable File
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Quasar Tauri App"
|
|
author = []
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tauri-ui = { path = "../node_modules/@quasar/tauri/bindings/rust" }
|
|
serde_json = "1.0.39"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tiny_http = "0.6"
|
|
phf = "0.7.21"
|
|
includedir = "0.5.0"
|
|
tauri = { path = "../node_modules/@quasar/tauri/lib/rust" }
|
|
|
|
[features]
|
|
dev = ["tauri/dev"] # has no explicit dependencies
|
|
embedded-server = ["tauri/embedded-server"] # has no explicit dependencies
|
|
|
|
[package.metadata.bundle]
|
|
identifier = "com.quasar.dev"
|
|
icon = ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"]
|
|
|
|
[[bin]]
|
|
name = "updater"
|
|
path = "src/updater.rs"
|
|
|
|
[[bin]]
|
|
name = "app"
|
|
path = "src/main.rs"
|