chore(deps): update to tauri beta.9 (#1037)

This commit is contained in:
Lucas Fernandes Nogueira
2024-03-07 00:08:52 -03:00
committed by GitHub
parent 16fc0f2ee3
commit cacf544d51
58 changed files with 374 additions and 339 deletions
+3 -1
View File
@@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
use std::sync::Arc;
use crate::open::Program;
use crate::process::Command;
@@ -141,7 +143,7 @@ pub struct OpenScope {
#[derive(Clone)]
pub struct ShellScope<'a> {
/// All allowed commands, using their unique command name as the keys.
pub scopes: Vec<&'a ScopeAllowedCommand>,
pub scopes: Vec<&'a Arc<ScopeAllowedCommand>>,
}
/// All errors that can happen while validating a scoped command.