[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-plugin-deep-link"
version = "2.4.7"
authors = ["Tauri Programme within The Commons Conservancy"]
build = "build.rs"
links = "tauri-plugin-deep-link"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Set your Tauri application as the default handler for an URL"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/tauri-apps/plugins-workspace"
[package.metadata.docs.rs]
targets = ["x86_64-linux-android"]
[package.metadata.platforms.support.windows]
level = "full"
notes = ""
[package.metadata.platforms.support.linux]
level = "full"
notes = ""
[package.metadata.platforms.support.macos]
level = "partial"
notes = "Deep links must be registered in config. Dynamic registration at runtime is not supported."
[package.metadata.platforms.support.android]
level = "partial"
notes = "Deep links must be registered in config. Dynamic registration at runtime is not supported."
[package.metadata.platforms.support.ios]
level = "partial"
notes = "Deep links must be registered in config. Dynamic registration at runtime is not supported."
[lib]
name = "tauri_plugin_deep_link"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2.10"
default-features = false
[dependencies.tauri-utils]
version = "2.8"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[build-dependencies.serde]
version = "1"
features = ["derive"]
[build-dependencies.serde_json]
version = "1"
[build-dependencies.tauri-plugin]
version = "2.5"
features = ["build"]
[build-dependencies.tauri-utils]
version = "2.8"
[target.'cfg(target_os = "linux")'.dependencies.rust-ini]
version = "0.21"
[target.'cfg(target_os = "macos")'.build-dependencies.plist]
version = "1"
[target."cfg(windows)".dependencies.dunce]
version = "1"
[target."cfg(windows)".dependencies.windows-registry]
version = "0.5"
[target."cfg(windows)".dependencies.windows-result]
version = "0.3"