feat(shell): add show_item_in_dir api

This commit is contained in:
amrbashir
2024-02-28 03:25:18 +02:00
parent dc6d3321e5
commit 5092683f97
31 changed files with 401 additions and 252 deletions
+12 -3
View File
@@ -9,11 +9,11 @@ rust-version = { workspace = true }
links = "tauri-plugin-shell"
[package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ]
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
[build-dependencies]
tauri-plugin = { workspace = true, features = [ "build" ] }
tauri-plugin = { workspace = true, features = ["build"] }
schemars = { workspace = true }
serde = { workspace = true }
@@ -29,3 +29,12 @@ regex = "1"
open = "4"
encoding_rs = "0.8"
os_pipe = "1"
[target."cfg(windows)".dependencies.windows]
version = "0.54"
features = [
"Win32_Foundation",
"Win32_UI_Shell_Common",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Com",
]