| [package] |
| name = "deep-link-example" |
| version = "0.0.0" |
| description = "A Tauri App" |
| authors = ["you"] |
| license = "" |
| repository = "" |
| edition = "2021" |
| rust-version = "1.77.2" |
|
|
| |
|
|
| [lib] |
| crate-type = ["staticlib", "cdylib", "rlib"] |
|
|
| [build-dependencies] |
| tauri-build = { workspace = true } |
|
|
| [dependencies] |
| serde = { workspace = true } |
| serde_json = { workspace = true } |
| tauri = { workspace = true, features = ["wry", "common-controls-v6", "x11"] } |
| tauri-plugin-deep-link = { path = "../../../" } |
| tauri-plugin-log = { path = "../../../../log" } |
| tauri-plugin-single-instance = { path = "../../../../single-instance", features = [ |
| "deep-link", |
| ] } |
| log = "0.4" |
|
|
| [features] |
| |
| |
| |
| prod = ["tauri/custom-protocol"] |
|
|