12345678910111213141516171819202122232425262728293031323334 |
- 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.56"
- [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.68"
- serde = "1.0"
- serde_derive = "1.0"
- tauri = { path = "../../../../../../../core/tauri", features = ["api-all"] }
- [features]
- default = [ "custom-protocol" ]
- custom-protocol = [ "tauri/custom-protocol" ]
|