1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
I know that this is a dirty awful thing to do, but i'm lazy to figure out how to
disable that f-ing dependency that fails to fetch. Not going to compile gui anyway, no
point in trying.
Index: Cargo.toml
--- Cargo.toml.orig
+++ 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 = { git = "https://github.com/Boscop/web-view", features = [], optional = true }
tinyfiledialogs = { version = "3.9.1", optional = true }
open = { version = "3.0.3", optional = true }
@@ -80,7 +80,7 @@ ProductName="ALFIS"
FileDescription="Alternative Free Identity System"
[features]
-webgui = ["web-view", "tinyfiledialogs", "open"]
-edge = ["webgui", "web-view/edge"]
+# webgui = ["web-view", "tinyfiledialogs", "open"]
+# edge = ["webgui", "web-view/edge"]
doh = ["ureq"]
-default = ["webgui", "doh"]
+default = ["doh"]
|