You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tauri-plugins-workspace/plugins/deep-link/Cargo.toml

29 lines
808 B

[package]
name = "tauri-plugin-deep-link"
version = "0.1.2"
description = "Set your Tauri application as the default handler for an URL."
authors = [ "FabianLars <fabianlars@fabianlars.de>", "Tauri Programme within The Commons Conservancy" ]
license.workspace = true
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
include = ["src/**", "Cargo.toml", "LICENSE_*"]
[dependencies]
log.workspace = true
dirs = "5"
once_cell = "1"
tauri-utils = "1"
[target.'cfg(windows)'.dependencies]
interprocess = { version = "1.2", default-features = false }
windows-sys = { version = "0.48.0", features = [
"Win32_Foundation",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
] }
winreg = "0.50.0"
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.4.1"