mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
c1fd33b3a2
* fix(opener): allow open network share locations * Clippy * Move to a seperate file * Add license header * test(opener): add unit tests for shell_parent_path and absolute functions (#1) * Keep `absolute` non pub in `windows_shell_path` * Add change file --------- Co-authored-by: Mark Gandolfo <mark@gandolfo.com.au>
63 lines
2.0 KiB
TOML
63 lines
2.0 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",
|
|
"Win32_Storage_FileSystem",
|
|
]
|
|
|
|
[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"] }
|