Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed Dec 2, 2024
1 parent f4c0068 commit f815cc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/tauri-bundler/src/bundle/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ pub struct WixSettings {
pub banner_path: Option<PathBuf>,
/// Path to a bitmap file to use on the installation user interface dialogs.
/// It is used on the welcome and completion dialogs.
///
/// The required dimensions are 493px × 312px.
pub dialog_image_path: Option<PathBuf>,
/// Enables FIPS compliant algorithms.
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ pub mod test;
const _: () = {
use specta::{datatype::DataType, function::FunctionArg, TypeMap};

impl<'r, T: Send + Sync + 'static> FunctionArg for crate::State<'r, T> {
impl<T: Send + Sync + 'static> FunctionArg for crate::State<'_, T> {
fn to_datatype(_: &mut TypeMap) -> Option<DataType> {
None
}
Expand Down

0 comments on commit f815cc5

Please sign in to comment.