Files
archived-tauri-plugin-shell/Cargo.toml
github-actions[bot] adb938ddf4 publish new versions (#1517)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/9914995577

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
2024-07-12 22:44:07 +00:00

34 lines
1015 B
TOML

[package]
name = "tauri-plugin-shell"
version = "2.0.0-beta.9"
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" ]
[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 }
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"