mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-26 04:03:29 +03:00
3125a5a383
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.82"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tauri = { path = "../../../../../../../../core/tauri", features = ["api-all"] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|