mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
7d8eb5effb
Signed-off-by: Daniel Thompson-Yvetot <denjell@mailscript.com>
34 lines
697 B
TOML
34 lines
697 B
TOML
workspace = { }
|
|
|
|
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
license = ""
|
|
repository = ""
|
|
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"
|
|
]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { path = "../../../../../../../core/tauri-build" }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0.64"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tauri = { path = "../../../../../../../core/tauri", features =["api-all"]}
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|