mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
32 lines
932 B
TOML
32 lines
932 B
TOML
[package]
|
|
name = "tauri-plugin-shell"
|
|
version = "2.0.0-beta.2"
|
|
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 }
|
|
links = "tauri-plugin-shell"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = [ "build" ] }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
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"
|