mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-22 10:11:32 +03:00
5a4e9efa0a
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
35 lines
742 B
TOML
35 lines
742 B
TOML
workspace = { }
|
|
|
|
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
[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", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0.79"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tauri = { path = "../../../../../../../../core/tauri", features = ["api-all"] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|