mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
34 lines
834 B
TOML
34 lines
834 B
TOML
[package]
|
|
name = "tauri-plugin-deep-link"
|
|
version = "0.1.2"
|
|
authors = ["FabianLars <fabianlars@fabianlars.de>"]
|
|
description = "A Tauri plugin for deep linking support"
|
|
repository = "https://github.com/FabianLars/tauri-plugin-deep-link"
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
include = ["src/**", "Cargo.toml", "LICENSE_*"]
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
dirs = "6"
|
|
log = "0.4"
|
|
once_cell = "1"
|
|
tauri-utils = { version = "2" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
interprocess = { version = "2", features = ["tokio"] }
|
|
windows-sys = { version = "0.60", features = [
|
|
"Win32_Foundation",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
winreg = "0.55.0"
|
|
tokio = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc2 = "0.6.1"
|