mirror of
https://github.com/tauri-apps/tauri-plugin-shell.git
synced 2026-01-31 00:45:19 +01:00
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com> Co-authored-by: FabianLars <fabianlars@fabianlars.de> Co-authored-by: Fabian-Lars <github@fabianlars.de> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/12239153716 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "tauri-plugin-shell"
|
|
version = "2.2.0"
|
|
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.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[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"] }
|