mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
62 lines
1.9 KiB
TOML
62 lines
1.9 KiB
TOML
[package]
|
|
name = "tauri-plugin-opener"
|
|
version = "2.5.3"
|
|
description = "Open files and URLs using their default application."
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
links = "tauri-plugin-opener"
|
|
|
|
# Platforms supported by the plugin
|
|
# Support levels are "full", "partial", "none", "unknown"
|
|
# Details of the support level are left to plugin maintainer
|
|
[package.metadata.platforms.support]
|
|
windows = { level = "full", notes = "" }
|
|
linux = { level = "full", notes = "" }
|
|
macos = { level = "full", notes = "" }
|
|
android = { level = "partial", notes = "Only allows to open URLs via `open`" }
|
|
ios = { level = "partial", notes = "Only allows to open URLs via `open`" }
|
|
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = ["build"] }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
open = { version = "5", features = ["shellexecute-on-windows"] }
|
|
glob = { workspace = true }
|
|
dunce = { workspace = true }
|
|
|
|
[target."cfg(windows)".dependencies.windows]
|
|
version = "0.61"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_UI_Shell_Common",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_Com",
|
|
"Win32_System_Registry",
|
|
]
|
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"netbsd\", target_os = \"openbsd\"))".dependencies]
|
|
zbus = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies.objc2-app-kit]
|
|
version = "0.3"
|
|
default-features = false
|
|
features = ["std", "NSWorkspace"]
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies.objc2-foundation]
|
|
version = "0.3"
|
|
default-features = false
|
|
features = ["std", "NSURL", "NSArray", "NSString"]
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
tauri = { workspace = true, features = ["wry"] }
|