mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-22 18:21:35 +03:00
35 lines
616 B
TOML
35 lines
616 B
TOML
workspace = { }
|
|
|
|
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
author = [ "Daniel Thompson-Yvetot" ]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
edition = "2018"
|
|
|
|
[package.metadata.bundle]
|
|
identifier = "com.tauri.dev"
|
|
icon = [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
|
|
[dependencies]
|
|
serde_json = "1.0.64"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tauri = { path = "../../../../../../../core/tauri", features =["api-all"]}
|
|
|
|
[features]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|
|
|
|
[[bin]]
|
|
name = "app"
|
|
path = "src/main.rs"
|