mirror of
https://github.com/tauri-apps/smoke-tests.git
synced 2026-01-31 00:35:18 +01:00
28 lines
533 B
TOML
28 lines
533 B
TOML
workspace = { }
|
|
|
|
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
author = [ "you" ]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { path = "../../../../../core/tauri", features = [] }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { path = "../../../../../core/tauri-build" }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|
|
|
|
[[bin]]
|
|
name = "app"
|
|
path = "src/main.rs"
|