mirror of
https://github.com/tauri-apps/tauri-plugin-shell.git
synced 2026-01-31 00:45:19 +01:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/20820397684 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "tauri-plugin-shell"
|
|
version = "2.3.4"
|
|
description = "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application."
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
repository = { workspace = true }
|
|
links = "tauri-plugin-shell"
|
|
|
|
[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 }
|
|
tokio = { version = "1", features = ["time"] }
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
shared_child = "1"
|
|
regex = "1"
|
|
open = { version = "5", features = ["shellexecute-on-windows"] }
|
|
encoding_rs = "0.8"
|
|
os_pipe = "1"
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
tauri = { workspace = true, features = ["wry"] }
|