mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-05 10:13:00 +02:00
Co-authored-by: Ngo Iok Ui (Wu Yu Wei) <wusyong9104@gmail.com> Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.studio>
22 lines
684 B
TOML
22 lines
684 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "An example Tauri Application showcasing the isolation pattern"
|
|
edition = "2021"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { path = "../../../core/tauri-build", features = [ "isolation" ] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { path = "../../../core/tauri", features = [ "isolation" ] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol", "isolation" ]
|
|
isolation = [ "tauri/isolation", "tauri-build/isolation" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|