File alfis-fix-deps.patch of Package rust-alfis

From e3c2f5c1c484d111fee98fd9488265eb9c16c0c2 Mon Sep 17 00:00:00 2001
From: Oleg Girko <ol@infoserver.lv>
Date: Wed, 29 Mar 2023 20:01:50 +0100
Subject: [PATCH] Revert "build: fix build on aarch64-darwin"

This reverts commit 03b461a740ab6ccbacd576eafc7a3faf4a66648f.

This fixes RPM package build that does not allow network access
to access external Git repositories.
---
 Cargo.lock | 6 ++++--
 Cargo.toml | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 997f441..2aba345 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1672,7 +1672,8 @@ dependencies = [
 [[package]]
 name = "web-view"
 version = "0.7.3"
-source = "git+https://github.com/Boscop/web-view#e87e08cab3a2d500d54068ec9c7aaa055a711465"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee1da6aa5f232e7a4f17ae4549772d2e35d0f4ade03e7527b25c4c0b00abafea"
 dependencies = [
  "boxfnonce",
  "tinyfiledialogs",
@@ -1724,7 +1725,8 @@ dependencies = [
 [[package]]
 name = "webview-sys"
 version = "0.6.2"
-source = "git+https://github.com/Boscop/web-view#e87e08cab3a2d500d54068ec9c7aaa055a711465"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0001f025c1425ffe36270a81cb091eade87dd8d29ac773735ae47e1a8c8066c9"
 dependencies = [
  "cc",
  "gdk-sys",
diff --git a/Cargo.toml b/Cargo.toml
index e1a04d6..21afbbd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -46,7 +46,7 @@ lazy_static = "1.4.0"
 spmc = "0.3.0"
 
 # Optional dependencies regulated by features
-web-view = { git = "https://github.com/Boscop/web-view", features = [], optional = true }
+web-view = { version = "0.7.3", features = [], optional = true }
 tinyfiledialogs = { version = "3.9.1", optional = true }
 open = { version = "3.0.3", optional = true }
 
-- 
2.39.2