Fix missing application permissions

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/4/head
trivernis 2 years ago
parent d316dfd471
commit db7c0adcaa

@ -1774,6 +1774,16 @@ version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
[[package]]
name = "open"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "176ee4b630d174d2da8241336763bb459281dddc0f4d87f72c3b1efc9a6109b7"
dependencies = [
"pathdiff",
"winapi",
]
[[package]]
name = "openssl"
version = "0.10.38"
@ -1807,6 +1817,16 @@ dependencies = [
"vcpkg",
]
[[package]]
name = "os_pipe"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "pango"
version = "0.14.8"
@ -1863,6 +1883,12 @@ dependencies = [
"winapi",
]
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]]
name = "pathsearch"
version = "0.2.0"
@ -2560,6 +2586,16 @@ dependencies = [
"lazy_static",
]
[[package]]
name = "shared_child"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6be9f7d5565b1483af3e72975e2dee33879b3b86bd48c0929fccf6585d79e65a"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
@ -2816,6 +2852,8 @@ dependencies = [
"http",
"ignore",
"once_cell",
"open",
"os_pipe",
"percent-encoding",
"rand 0.8.4",
"raw-window-handle 0.3.4",
@ -2824,6 +2862,7 @@ dependencies = [
"serde",
"serde_json",
"serde_repr",
"shared_child",
"state",
"tar",
"tauri-macros",

@ -20,7 +20,7 @@ typemap_rev = "^0.1.5"
[dependencies.tauri]
version = "^1.0.0-beta.8"
features = ["dialog-all"]
features = ["dialog-all", "path-all", "shell-all"]
[dependencies.tracing-subscriber]
version = "^0.3.0"

@ -52,6 +52,12 @@
"allowlist": {
"dialog": {
"all": true
},
"shell": {
"all": true
},
"path": {
"all": true
}
},
"windows": [

Loading…
Cancel
Save