1234567891011121314151617181920 |
- [package]
- name = "app"
- version = "0.1.0"
- description = "A Tauri App"
- authors = ["you"]
- license = ""
- repository = ""
- default-run = "app"
- edition = "2021"
- rust-version = "1.65"
- [build-dependencies]
- tauri-build = { path = "../../../../core/tauri-build", features = [] }
- [dependencies]
- api = { path = "../api" }
- tauri = { path = "../../../../core/tauri", features = ["dialog"] }
- [features]
- custom-protocol = [ "tauri/custom-protocol" ]
|