Spaces:
Runtime error
Runtime error
Merge pull request #234 from neon-mmd/improve-issue-management
Browse files- .github/ISSUE_TEMPLATE/bug.yml +40 -0
- .github/ISSUE_TEMPLATE/bug_report.md +0 -36
- .github/ISSUE_TEMPLATE/config.yml +5 -1
- .github/ISSUE_TEMPLATE/docs.yml +40 -0
- .github/ISSUE_TEMPLATE/engine-request.md +0 -27
- .github/ISSUE_TEMPLATE/engine.yml +72 -0
- .github/ISSUE_TEMPLATE/feature.yml +40 -0
- .github/ISSUE_TEMPLATE/feature_request.md +0 -20
- .github/ISSUE_TEMPLATE/other.yml +36 -0
- Cargo.lock +52 -52
- Cargo.toml +1 -1
.github/ISSUE_TEMPLATE/bug.yml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: π Bug
|
2 |
+
description: Report an issue to help improve the project.
|
3 |
+
title: "π <description>"
|
4 |
+
labels: ["π οΈ goal: fix","π¦ status: awaiting triage"]
|
5 |
+
body:
|
6 |
+
- type: textarea
|
7 |
+
id: description
|
8 |
+
attributes:
|
9 |
+
label: Description
|
10 |
+
description: A brief description of the question or issue, also include what you tried and what didn't work
|
11 |
+
validations:
|
12 |
+
required: true
|
13 |
+
- type: textarea
|
14 |
+
id: screenshots
|
15 |
+
attributes:
|
16 |
+
label: Screenshots
|
17 |
+
description: Please add screenshots if applicable
|
18 |
+
validations:
|
19 |
+
required: false
|
20 |
+
- type: dropdown
|
21 |
+
id: assignee
|
22 |
+
attributes:
|
23 |
+
label: Do you want to work on this issue?
|
24 |
+
multiple: false
|
25 |
+
options:
|
26 |
+
- "Yes"
|
27 |
+
- "No"
|
28 |
+
validations:
|
29 |
+
required: false
|
30 |
+
- type: textarea
|
31 |
+
id: extrainfo
|
32 |
+
attributes:
|
33 |
+
label: Additional information
|
34 |
+
description: Is there anything else we should know about this bug?
|
35 |
+
validations:
|
36 |
+
required: false
|
37 |
+
- type: markdown
|
38 |
+
attributes:
|
39 |
+
value: |
|
40 |
+
You can also join our Discord community [here](https://discord.gg/SWnda7Mw5u)
|
.github/ISSUE_TEMPLATE/bug_report.md
DELETED
@@ -1,36 +0,0 @@
|
|
1 |
-
---
|
2 |
-
name: Bug report
|
3 |
-
about: Create a report to help us improve
|
4 |
-
title: "[BUG] <your bug report title>"
|
5 |
-
labels: bug
|
6 |
-
assignees: ''
|
7 |
-
|
8 |
-
---
|
9 |
-
|
10 |
-
<!-- PLEASE FILL THESE FIELDS, IT REALLY HELPS THE MAINTAINERS OF Websurfx -->
|
11 |
-
|
12 |
-
**Version of Websurfx, commit number if you are using on master branch**
|
13 |
-
<!-- If you are running on master branch using git execute this command
|
14 |
-
in order to fetch the latest commit ID:
|
15 |
-
```
|
16 |
-
git log -1
|
17 |
-
```
|
18 |
-
-->
|
19 |
-
|
20 |
-
**How did you install Websurfx?**
|
21 |
-
<!-- Did you install Websurfx following the README ? -->
|
22 |
-
|
23 |
-
**What happened?**
|
24 |
-
<!-- A clear and concise description of what the bug is. -->
|
25 |
-
|
26 |
-
**Steps To Reproduce**
|
27 |
-
<!-- How can we reproduce this issue? (as minimally and as precisely as possible) -->
|
28 |
-
|
29 |
-
**Expected behavior**
|
30 |
-
<!-- A clear and concise description of what you expected to happen. -->
|
31 |
-
|
32 |
-
**Screenshots**
|
33 |
-
<!-- If applicable, provide screenshots to help explain your problem better. -->
|
34 |
-
|
35 |
-
**Additional context**
|
36 |
-
<!-- Add any other context about the problem here. -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.github/ISSUE_TEMPLATE/config.yml
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
blank_issues_enabled:
|
|
|
|
|
|
|
|
|
|
1 |
+
blank_issues_enabled: false
|
2 |
+
contact_links:
|
3 |
+
- name: Question?
|
4 |
+
url: https://discord.gg/SWnda7Mw5u
|
5 |
+
about: Feel free to ask your question by joining our Discord server.
|
.github/ISSUE_TEMPLATE/docs.yml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: π Documentation issue
|
2 |
+
description: Found an issue in the documentation? You can use this one!
|
3 |
+
title: "π <description>"
|
4 |
+
labels: ["π aspect: text","π¦ status: awaiting triage"]
|
5 |
+
body:
|
6 |
+
- type: textarea
|
7 |
+
id: description
|
8 |
+
attributes:
|
9 |
+
label: Description
|
10 |
+
description: A brief description of the question or issue, also include what you tried and what didn't work
|
11 |
+
validations:
|
12 |
+
required: true
|
13 |
+
- type: textarea
|
14 |
+
id: screenshots
|
15 |
+
attributes:
|
16 |
+
label: Screenshots
|
17 |
+
description: Please add screenshots if applicable
|
18 |
+
validations:
|
19 |
+
required: false
|
20 |
+
- type: dropdown
|
21 |
+
id: assignee
|
22 |
+
attributes:
|
23 |
+
label: Do you want to work on this issue?
|
24 |
+
multiple: false
|
25 |
+
options:
|
26 |
+
- "Yes"
|
27 |
+
- "No"
|
28 |
+
validations:
|
29 |
+
required: false
|
30 |
+
- type: textarea
|
31 |
+
id: extrainfo
|
32 |
+
attributes:
|
33 |
+
label: Additional information
|
34 |
+
description: Is there anything else we should know about this issue?
|
35 |
+
validations:
|
36 |
+
required: false
|
37 |
+
- type: markdown
|
38 |
+
attributes:
|
39 |
+
value: |
|
40 |
+
You can also join our Discord community [here](https://discord.gg/SWnda7Mw5u)
|
.github/ISSUE_TEMPLATE/engine-request.md
DELETED
@@ -1,27 +0,0 @@
|
|
1 |
-
---
|
2 |
-
name: Engine request
|
3 |
-
about: 'Suggest a new engine to be add '
|
4 |
-
title: "[ENGINE] <your engine request title>"
|
5 |
-
labels: engine
|
6 |
-
assignees: ''
|
7 |
-
|
8 |
-
---
|
9 |
-
|
10 |
-
<!-- PLEASE FILL THESE FIELDS, IT REALLY HELPS THE MAINTAINERS OF Websurfx -->
|
11 |
-
|
12 |
-
**Working URL of the engine**
|
13 |
-
<!-- Please check if the engine is responding correctly before submitting it. -->
|
14 |
-
|
15 |
-
**Why do you want to add this engine?**
|
16 |
-
<!-- What's special about this engine? Is it open source or libre? -->
|
17 |
-
|
18 |
-
**Features of this engine**
|
19 |
-
<!-- Features of this engine: Doesn't track its users, fast, easy to integrate, ... -->
|
20 |
-
|
21 |
-
**Applicable category of this engine**
|
22 |
-
<!-- Where should this new engine fit in Websurfx? Current categories in Websurfx:
|
23 |
-
general, files, images, it, map, music, news, science, social media and videos.
|
24 |
-
You can add multiple categories at the same time. -->
|
25 |
-
|
26 |
-
**Additional context**
|
27 |
-
<!-- Add any other context about this engine here. -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.github/ISSUE_TEMPLATE/engine.yml
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: β¨ Engine
|
2 |
+
description: Have a new engine to suggest for Websurfx? Please suggest!
|
3 |
+
title: 'β¨ <your engine request title>'
|
4 |
+
labels: ['β goal: addition', 'π¦ status: awaiting triage']
|
5 |
+
body:
|
6 |
+
- type: textarea
|
7 |
+
id: workingUrl
|
8 |
+
attributes:
|
9 |
+
label: Working URL of the engine
|
10 |
+
description: Please check if the engine is responding correctly before submitting it.
|
11 |
+
validations:
|
12 |
+
required: true
|
13 |
+
- type: textarea
|
14 |
+
id: reason
|
15 |
+
attributes:
|
16 |
+
label: Why do you want to add this engine?
|
17 |
+
description: What's special about this engine? Is it open source or libre?
|
18 |
+
validations:
|
19 |
+
required: true
|
20 |
+
- type: textarea
|
21 |
+
id: features
|
22 |
+
attributes:
|
23 |
+
label: Features of this engine
|
24 |
+
description: Features of this engine: Doesn't track its users, fast, easy to integrate, or anything else that we can know about.
|
25 |
+
validations:
|
26 |
+
required: true
|
27 |
+
- type: textarea
|
28 |
+
id: screenshots
|
29 |
+
attributes:
|
30 |
+
label: Screenshots
|
31 |
+
description: Please add screenshots if applicable
|
32 |
+
validations:
|
33 |
+
required: false
|
34 |
+
- type: dropdown
|
35 |
+
id: assignee
|
36 |
+
attributes:
|
37 |
+
label: Do you want to work on this issue?
|
38 |
+
multiple: true
|
39 |
+
options:
|
40 |
+
- 'General'
|
41 |
+
- 'Files'
|
42 |
+
- 'Images'
|
43 |
+
- 'IT'
|
44 |
+
- 'Map'
|
45 |
+
- 'Music'
|
46 |
+
- 'News'
|
47 |
+
- 'Science'
|
48 |
+
- 'Social Media'
|
49 |
+
- 'Videos'
|
50 |
+
validations:
|
51 |
+
required: true
|
52 |
+
- type: dropdown
|
53 |
+
id: assignee
|
54 |
+
attributes:
|
55 |
+
label: Do you want to work on this issue?
|
56 |
+
multiple: false
|
57 |
+
options:
|
58 |
+
- 'Yes'
|
59 |
+
- 'No'
|
60 |
+
validations:
|
61 |
+
required: false
|
62 |
+
- type: textarea
|
63 |
+
id: extrainfo
|
64 |
+
attributes:
|
65 |
+
label: Additional information
|
66 |
+
description: Is there anything else we should know about this idea?
|
67 |
+
validations:
|
68 |
+
required: false
|
69 |
+
- type: markdown
|
70 |
+
attributes:
|
71 |
+
value: |
|
72 |
+
You can also join our Discord community [here](https://discord.gg/SWnda7Mw5u)
|
.github/ISSUE_TEMPLATE/feature.yml
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: π‘ General Feature Request
|
2 |
+
description: Have a new idea/feature for Websurfx? Please suggest!
|
3 |
+
title: "β¨ <description>"
|
4 |
+
labels: ["β goal: addition", "π¦ status: awaiting triage"]
|
5 |
+
body:
|
6 |
+
- type: textarea
|
7 |
+
id: description
|
8 |
+
attributes:
|
9 |
+
label: Description
|
10 |
+
description: A brief description of the enhancement you propose, also include what you tried and what worked.
|
11 |
+
validations:
|
12 |
+
required: true
|
13 |
+
- type: textarea
|
14 |
+
id: screenshots
|
15 |
+
attributes:
|
16 |
+
label: Screenshots
|
17 |
+
description: Please add screenshots if applicable
|
18 |
+
validations:
|
19 |
+
required: false
|
20 |
+
- type: dropdown
|
21 |
+
id: assignee
|
22 |
+
attributes:
|
23 |
+
label: Do you want to work on this issue?
|
24 |
+
multiple: false
|
25 |
+
options:
|
26 |
+
- "Yes"
|
27 |
+
- "No"
|
28 |
+
validations:
|
29 |
+
required: false
|
30 |
+
- type: textarea
|
31 |
+
id: extrainfo
|
32 |
+
attributes:
|
33 |
+
label: Additional information
|
34 |
+
description: Is there anything else we should know about this idea?
|
35 |
+
validations:
|
36 |
+
required: false
|
37 |
+
- type: markdown
|
38 |
+
attributes:
|
39 |
+
value: |
|
40 |
+
You can also join our Discord community [here](https://discord.gg/SWnda7Mw5u)
|
.github/ISSUE_TEMPLATE/feature_request.md
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
---
|
2 |
-
name: Feature request
|
3 |
-
about: Suggest an idea for this project
|
4 |
-
title: "[FEATURE] <your feature request title>"
|
5 |
-
labels: enhancement
|
6 |
-
assignees: ''
|
7 |
-
|
8 |
-
---
|
9 |
-
|
10 |
-
**Is your feature request related to a problem? Please describe.**
|
11 |
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12 |
-
|
13 |
-
**Describe the solution you'd like**
|
14 |
-
A clear and concise description of what you want to happen.
|
15 |
-
|
16 |
-
**Describe alternatives you've considered**
|
17 |
-
A clear and concise description of any alternative solutions or features you've considered.
|
18 |
-
|
19 |
-
**Additional context**
|
20 |
-
Add any other context or screenshots about the feature request here.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.github/ISSUE_TEMPLATE/other.yml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: 𧱠Other
|
2 |
+
description: Use this for any other issues. Please do NOT create blank issues
|
3 |
+
title: "𧱠<Add your title here>"
|
4 |
+
labels: ["π¦ status: awaiting triage"]
|
5 |
+
body:
|
6 |
+
- type: markdown
|
7 |
+
attributes:
|
8 |
+
value: "# Other issue"
|
9 |
+
- type: textarea
|
10 |
+
id: issuedescription
|
11 |
+
attributes:
|
12 |
+
label: What would you like to share?
|
13 |
+
description: Provide a clear and concise explanation of your issue.
|
14 |
+
validations:
|
15 |
+
required: true
|
16 |
+
- type: dropdown
|
17 |
+
id: assignee
|
18 |
+
attributes:
|
19 |
+
label: Do you want to work on this issue?
|
20 |
+
multiple: false
|
21 |
+
options:
|
22 |
+
- "Yes"
|
23 |
+
- "No"
|
24 |
+
validations:
|
25 |
+
required: false
|
26 |
+
- type: textarea
|
27 |
+
id: extrainfo
|
28 |
+
attributes:
|
29 |
+
label: Additional information
|
30 |
+
description: Is there anything else we should know about this issue?
|
31 |
+
validations:
|
32 |
+
required: false
|
33 |
+
- type: markdown
|
34 |
+
attributes:
|
35 |
+
value: |
|
36 |
+
You can also join our Discord community [here](https://discord.gg/SWnda7Mw5u)
|
Cargo.lock
CHANGED
@@ -115,7 +115,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115 |
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
116 |
dependencies = [
|
117 |
"quote 1.0.33",
|
118 |
-
"syn 2.0.
|
119 |
]
|
120 |
|
121 |
[[package]]
|
@@ -226,9 +226,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226 |
checksum = "eb1f50ebbb30eca122b188319a4398b3f7bb4a8cdf50ecfb73bfc6a3c3ce54f5"
|
227 |
dependencies = [
|
228 |
"actix-router",
|
229 |
-
"proc-macro2 1.0.
|
230 |
"quote 1.0.33",
|
231 |
-
"syn 2.0.
|
232 |
]
|
233 |
|
234 |
[[package]]
|
@@ -324,9 +324,9 @@ version = "0.1.73"
|
|
324 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325 |
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
|
326 |
dependencies = [
|
327 |
-
"proc-macro2 1.0.
|
328 |
"quote 1.0.33",
|
329 |
-
"syn 2.0.
|
330 |
]
|
331 |
|
332 |
[[package]]
|
@@ -544,9 +544,9 @@ dependencies = [
|
|
544 |
|
545 |
[[package]]
|
546 |
name = "clap"
|
547 |
-
version = "4.4.
|
548 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
549 |
-
checksum = "
|
550 |
dependencies = [
|
551 |
"clap_builder",
|
552 |
]
|
@@ -826,7 +826,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826 |
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
827 |
dependencies = [
|
828 |
"quote 1.0.33",
|
829 |
-
"syn 2.0.
|
830 |
]
|
831 |
|
832 |
[[package]]
|
@@ -855,7 +855,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855 |
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
856 |
dependencies = [
|
857 |
"convert_case",
|
858 |
-
"proc-macro2 1.0.
|
859 |
"quote 1.0.33",
|
860 |
"rustc_version 0.4.0",
|
861 |
"syn 1.0.109",
|
@@ -999,7 +999,7 @@ version = "0.1.8"
|
|
999 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000 |
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
|
1001 |
dependencies = [
|
1002 |
-
"proc-macro2 1.0.
|
1003 |
"quote 1.0.33",
|
1004 |
"syn 1.0.109",
|
1005 |
"synstructure",
|
@@ -1170,9 +1170,9 @@ version = "0.3.28"
|
|
1170 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1171 |
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
1172 |
dependencies = [
|
1173 |
-
"proc-macro2 1.0.
|
1174 |
"quote 1.0.33",
|
1175 |
-
"syn 2.0.
|
1176 |
]
|
1177 |
|
1178 |
[[package]]
|
@@ -1373,7 +1373,7 @@ dependencies = [
|
|
1373 |
"log",
|
1374 |
"mac",
|
1375 |
"markup5ever 0.11.0",
|
1376 |
-
"proc-macro2 1.0.
|
1377 |
"quote 1.0.33",
|
1378 |
"syn 1.0.109",
|
1379 |
]
|
@@ -1658,15 +1658,15 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
1658 |
|
1659 |
[[package]]
|
1660 |
name = "libc"
|
1661 |
-
version = "0.2.
|
1662 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663 |
-
checksum = "
|
1664 |
|
1665 |
[[package]]
|
1666 |
name = "libmimalloc-sys"
|
1667 |
-
version = "0.1.
|
1668 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1669 |
-
checksum = "
|
1670 |
dependencies = [
|
1671 |
"cc",
|
1672 |
"libc",
|
@@ -1811,9 +1811,9 @@ dependencies = [
|
|
1811 |
|
1812 |
[[package]]
|
1813 |
name = "mimalloc"
|
1814 |
-
version = "0.1.
|
1815 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1816 |
-
checksum = "
|
1817 |
dependencies = [
|
1818 |
"libmimalloc-sys",
|
1819 |
]
|
@@ -2024,9 +2024,9 @@ version = "0.1.1"
|
|
2024 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025 |
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
2026 |
dependencies = [
|
2027 |
-
"proc-macro2 1.0.
|
2028 |
"quote 1.0.33",
|
2029 |
-
"syn 2.0.
|
2030 |
]
|
2031 |
|
2032 |
[[package]]
|
@@ -2143,9 +2143,9 @@ checksum = "d1511785c5e98d79a05e8a6bc34b4ac2168a0e3e92161862030ad84daa223141"
|
|
2143 |
dependencies = [
|
2144 |
"pest",
|
2145 |
"pest_meta",
|
2146 |
-
"proc-macro2 1.0.
|
2147 |
"quote 1.0.33",
|
2148 |
-
"syn 2.0.
|
2149 |
]
|
2150 |
|
2151 |
[[package]]
|
@@ -2245,9 +2245,9 @@ checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
|
2245 |
dependencies = [
|
2246 |
"phf_generator 0.11.2",
|
2247 |
"phf_shared 0.11.2",
|
2248 |
-
"proc-macro2 1.0.
|
2249 |
"quote 1.0.33",
|
2250 |
-
"syn 2.0.
|
2251 |
]
|
2252 |
|
2253 |
[[package]]
|
@@ -2292,9 +2292,9 @@ version = "1.1.3"
|
|
2292 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2293 |
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
|
2294 |
dependencies = [
|
2295 |
-
"proc-macro2 1.0.
|
2296 |
"quote 1.0.33",
|
2297 |
-
"syn 2.0.
|
2298 |
]
|
2299 |
|
2300 |
[[package]]
|
@@ -2366,9 +2366,9 @@ dependencies = [
|
|
2366 |
|
2367 |
[[package]]
|
2368 |
name = "proc-macro2"
|
2369 |
-
version = "1.0.
|
2370 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2371 |
-
checksum = "
|
2372 |
dependencies = [
|
2373 |
"unicode-ident",
|
2374 |
]
|
@@ -2414,7 +2414,7 @@ version = "1.0.33"
|
|
2414 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2415 |
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
2416 |
dependencies = [
|
2417 |
-
"proc-macro2 1.0.
|
2418 |
]
|
2419 |
|
2420 |
[[package]]
|
@@ -2922,16 +2922,16 @@ version = "1.0.188"
|
|
2922 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2923 |
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
|
2924 |
dependencies = [
|
2925 |
-
"proc-macro2 1.0.
|
2926 |
"quote 1.0.33",
|
2927 |
-
"syn 2.0.
|
2928 |
]
|
2929 |
|
2930 |
[[package]]
|
2931 |
name = "serde_json"
|
2932 |
-
version = "1.0.
|
2933 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2934 |
-
checksum = "
|
2935 |
dependencies = [
|
2936 |
"itoa 1.0.9",
|
2937 |
"ryu",
|
@@ -3119,7 +3119,7 @@ checksum = "f0f45ed1b65bf9a4bf2f7b7dc59212d1926e9eaf00fa998988e420fd124467c6"
|
|
3119 |
dependencies = [
|
3120 |
"phf_generator 0.7.24",
|
3121 |
"phf_shared 0.7.24",
|
3122 |
-
"proc-macro2 1.0.
|
3123 |
"quote 1.0.33",
|
3124 |
"string_cache_shared",
|
3125 |
]
|
@@ -3132,7 +3132,7 @@ checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
|
|
3132 |
dependencies = [
|
3133 |
"phf_generator 0.10.0",
|
3134 |
"phf_shared 0.10.0",
|
3135 |
-
"proc-macro2 1.0.
|
3136 |
"quote 1.0.33",
|
3137 |
]
|
3138 |
|
@@ -3159,18 +3159,18 @@ version = "1.0.109"
|
|
3159 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3160 |
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
3161 |
dependencies = [
|
3162 |
-
"proc-macro2 1.0.
|
3163 |
"quote 1.0.33",
|
3164 |
"unicode-ident",
|
3165 |
]
|
3166 |
|
3167 |
[[package]]
|
3168 |
name = "syn"
|
3169 |
-
version = "2.0.
|
3170 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3171 |
-
checksum = "
|
3172 |
dependencies = [
|
3173 |
-
"proc-macro2 1.0.
|
3174 |
"quote 1.0.33",
|
3175 |
"unicode-ident",
|
3176 |
]
|
@@ -3181,7 +3181,7 @@ version = "0.12.6"
|
|
3181 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3182 |
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
|
3183 |
dependencies = [
|
3184 |
-
"proc-macro2 1.0.
|
3185 |
"quote 1.0.33",
|
3186 |
"syn 1.0.109",
|
3187 |
"unicode-xid 0.2.4",
|
@@ -3245,9 +3245,9 @@ version = "1.0.48"
|
|
3245 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3246 |
checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
|
3247 |
dependencies = [
|
3248 |
-
"proc-macro2 1.0.
|
3249 |
"quote 1.0.33",
|
3250 |
-
"syn 2.0.
|
3251 |
]
|
3252 |
|
3253 |
[[package]]
|
@@ -3405,9 +3405,9 @@ version = "2.1.0"
|
|
3405 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3406 |
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
|
3407 |
dependencies = [
|
3408 |
-
"proc-macro2 1.0.
|
3409 |
"quote 1.0.33",
|
3410 |
-
"syn 2.0.
|
3411 |
]
|
3412 |
|
3413 |
[[package]]
|
@@ -3597,9 +3597,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
3597 |
|
3598 |
[[package]]
|
3599 |
name = "unicode-ident"
|
3600 |
-
version = "1.0.
|
3601 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3602 |
-
checksum = "
|
3603 |
|
3604 |
[[package]]
|
3605 |
name = "unicode-normalization"
|
@@ -3738,9 +3738,9 @@ dependencies = [
|
|
3738 |
"bumpalo",
|
3739 |
"log",
|
3740 |
"once_cell",
|
3741 |
-
"proc-macro2 1.0.
|
3742 |
"quote 1.0.33",
|
3743 |
-
"syn 2.0.
|
3744 |
"wasm-bindgen-shared",
|
3745 |
]
|
3746 |
|
@@ -3772,9 +3772,9 @@ version = "0.2.87"
|
|
3772 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3773 |
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
3774 |
dependencies = [
|
3775 |
-
"proc-macro2 1.0.
|
3776 |
"quote 1.0.33",
|
3777 |
-
"syn 2.0.
|
3778 |
"wasm-bindgen-backend",
|
3779 |
"wasm-bindgen-shared",
|
3780 |
]
|
@@ -3797,7 +3797,7 @@ dependencies = [
|
|
3797 |
|
3798 |
[[package]]
|
3799 |
name = "websurfx"
|
3800 |
-
version = "0.20.
|
3801 |
dependencies = [
|
3802 |
"actix-cors",
|
3803 |
"actix-files",
|
|
|
115 |
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
116 |
dependencies = [
|
117 |
"quote 1.0.33",
|
118 |
+
"syn 2.0.33",
|
119 |
]
|
120 |
|
121 |
[[package]]
|
|
|
226 |
checksum = "eb1f50ebbb30eca122b188319a4398b3f7bb4a8cdf50ecfb73bfc6a3c3ce54f5"
|
227 |
dependencies = [
|
228 |
"actix-router",
|
229 |
+
"proc-macro2 1.0.67",
|
230 |
"quote 1.0.33",
|
231 |
+
"syn 2.0.33",
|
232 |
]
|
233 |
|
234 |
[[package]]
|
|
|
324 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325 |
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
|
326 |
dependencies = [
|
327 |
+
"proc-macro2 1.0.67",
|
328 |
"quote 1.0.33",
|
329 |
+
"syn 2.0.33",
|
330 |
]
|
331 |
|
332 |
[[package]]
|
|
|
544 |
|
545 |
[[package]]
|
546 |
name = "clap"
|
547 |
+
version = "4.4.3"
|
548 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
549 |
+
checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6"
|
550 |
dependencies = [
|
551 |
"clap_builder",
|
552 |
]
|
|
|
826 |
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
827 |
dependencies = [
|
828 |
"quote 1.0.33",
|
829 |
+
"syn 2.0.33",
|
830 |
]
|
831 |
|
832 |
[[package]]
|
|
|
855 |
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
856 |
dependencies = [
|
857 |
"convert_case",
|
858 |
+
"proc-macro2 1.0.67",
|
859 |
"quote 1.0.33",
|
860 |
"rustc_version 0.4.0",
|
861 |
"syn 1.0.109",
|
|
|
999 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000 |
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
|
1001 |
dependencies = [
|
1002 |
+
"proc-macro2 1.0.67",
|
1003 |
"quote 1.0.33",
|
1004 |
"syn 1.0.109",
|
1005 |
"synstructure",
|
|
|
1170 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1171 |
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
1172 |
dependencies = [
|
1173 |
+
"proc-macro2 1.0.67",
|
1174 |
"quote 1.0.33",
|
1175 |
+
"syn 2.0.33",
|
1176 |
]
|
1177 |
|
1178 |
[[package]]
|
|
|
1373 |
"log",
|
1374 |
"mac",
|
1375 |
"markup5ever 0.11.0",
|
1376 |
+
"proc-macro2 1.0.67",
|
1377 |
"quote 1.0.33",
|
1378 |
"syn 1.0.109",
|
1379 |
]
|
|
|
1658 |
|
1659 |
[[package]]
|
1660 |
name = "libc"
|
1661 |
+
version = "0.2.148"
|
1662 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663 |
+
checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
|
1664 |
|
1665 |
[[package]]
|
1666 |
name = "libmimalloc-sys"
|
1667 |
+
version = "0.1.35"
|
1668 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1669 |
+
checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664"
|
1670 |
dependencies = [
|
1671 |
"cc",
|
1672 |
"libc",
|
|
|
1811 |
|
1812 |
[[package]]
|
1813 |
name = "mimalloc"
|
1814 |
+
version = "0.1.39"
|
1815 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1816 |
+
checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c"
|
1817 |
dependencies = [
|
1818 |
"libmimalloc-sys",
|
1819 |
]
|
|
|
2024 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025 |
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
2026 |
dependencies = [
|
2027 |
+
"proc-macro2 1.0.67",
|
2028 |
"quote 1.0.33",
|
2029 |
+
"syn 2.0.33",
|
2030 |
]
|
2031 |
|
2032 |
[[package]]
|
|
|
2143 |
dependencies = [
|
2144 |
"pest",
|
2145 |
"pest_meta",
|
2146 |
+
"proc-macro2 1.0.67",
|
2147 |
"quote 1.0.33",
|
2148 |
+
"syn 2.0.33",
|
2149 |
]
|
2150 |
|
2151 |
[[package]]
|
|
|
2245 |
dependencies = [
|
2246 |
"phf_generator 0.11.2",
|
2247 |
"phf_shared 0.11.2",
|
2248 |
+
"proc-macro2 1.0.67",
|
2249 |
"quote 1.0.33",
|
2250 |
+
"syn 2.0.33",
|
2251 |
]
|
2252 |
|
2253 |
[[package]]
|
|
|
2292 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2293 |
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
|
2294 |
dependencies = [
|
2295 |
+
"proc-macro2 1.0.67",
|
2296 |
"quote 1.0.33",
|
2297 |
+
"syn 2.0.33",
|
2298 |
]
|
2299 |
|
2300 |
[[package]]
|
|
|
2366 |
|
2367 |
[[package]]
|
2368 |
name = "proc-macro2"
|
2369 |
+
version = "1.0.67"
|
2370 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2371 |
+
checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
|
2372 |
dependencies = [
|
2373 |
"unicode-ident",
|
2374 |
]
|
|
|
2414 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2415 |
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
2416 |
dependencies = [
|
2417 |
+
"proc-macro2 1.0.67",
|
2418 |
]
|
2419 |
|
2420 |
[[package]]
|
|
|
2922 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2923 |
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
|
2924 |
dependencies = [
|
2925 |
+
"proc-macro2 1.0.67",
|
2926 |
"quote 1.0.33",
|
2927 |
+
"syn 2.0.33",
|
2928 |
]
|
2929 |
|
2930 |
[[package]]
|
2931 |
name = "serde_json"
|
2932 |
+
version = "1.0.107"
|
2933 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2934 |
+
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
|
2935 |
dependencies = [
|
2936 |
"itoa 1.0.9",
|
2937 |
"ryu",
|
|
|
3119 |
dependencies = [
|
3120 |
"phf_generator 0.7.24",
|
3121 |
"phf_shared 0.7.24",
|
3122 |
+
"proc-macro2 1.0.67",
|
3123 |
"quote 1.0.33",
|
3124 |
"string_cache_shared",
|
3125 |
]
|
|
|
3132 |
dependencies = [
|
3133 |
"phf_generator 0.10.0",
|
3134 |
"phf_shared 0.10.0",
|
3135 |
+
"proc-macro2 1.0.67",
|
3136 |
"quote 1.0.33",
|
3137 |
]
|
3138 |
|
|
|
3159 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3160 |
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
3161 |
dependencies = [
|
3162 |
+
"proc-macro2 1.0.67",
|
3163 |
"quote 1.0.33",
|
3164 |
"unicode-ident",
|
3165 |
]
|
3166 |
|
3167 |
[[package]]
|
3168 |
name = "syn"
|
3169 |
+
version = "2.0.33"
|
3170 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3171 |
+
checksum = "9caece70c63bfba29ec2fed841a09851b14a235c60010fa4de58089b6c025668"
|
3172 |
dependencies = [
|
3173 |
+
"proc-macro2 1.0.67",
|
3174 |
"quote 1.0.33",
|
3175 |
"unicode-ident",
|
3176 |
]
|
|
|
3181 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3182 |
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
|
3183 |
dependencies = [
|
3184 |
+
"proc-macro2 1.0.67",
|
3185 |
"quote 1.0.33",
|
3186 |
"syn 1.0.109",
|
3187 |
"unicode-xid 0.2.4",
|
|
|
3245 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3246 |
checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
|
3247 |
dependencies = [
|
3248 |
+
"proc-macro2 1.0.67",
|
3249 |
"quote 1.0.33",
|
3250 |
+
"syn 2.0.33",
|
3251 |
]
|
3252 |
|
3253 |
[[package]]
|
|
|
3405 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3406 |
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
|
3407 |
dependencies = [
|
3408 |
+
"proc-macro2 1.0.67",
|
3409 |
"quote 1.0.33",
|
3410 |
+
"syn 2.0.33",
|
3411 |
]
|
3412 |
|
3413 |
[[package]]
|
|
|
3597 |
|
3598 |
[[package]]
|
3599 |
name = "unicode-ident"
|
3600 |
+
version = "1.0.12"
|
3601 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3602 |
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
3603 |
|
3604 |
[[package]]
|
3605 |
name = "unicode-normalization"
|
|
|
3738 |
"bumpalo",
|
3739 |
"log",
|
3740 |
"once_cell",
|
3741 |
+
"proc-macro2 1.0.67",
|
3742 |
"quote 1.0.33",
|
3743 |
+
"syn 2.0.33",
|
3744 |
"wasm-bindgen-shared",
|
3745 |
]
|
3746 |
|
|
|
3772 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3773 |
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
3774 |
dependencies = [
|
3775 |
+
"proc-macro2 1.0.67",
|
3776 |
"quote 1.0.33",
|
3777 |
+
"syn 2.0.33",
|
3778 |
"wasm-bindgen-backend",
|
3779 |
"wasm-bindgen-shared",
|
3780 |
]
|
|
|
3797 |
|
3798 |
[[package]]
|
3799 |
name = "websurfx"
|
3800 |
+
version = "0.20.8"
|
3801 |
dependencies = [
|
3802 |
"actix-cors",
|
3803 |
"actix-files",
|
Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
[package]
|
2 |
name = "websurfx"
|
3 |
-
version = "0.20.
|
4 |
edition = "2021"
|
5 |
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
|
6 |
repository = "https://github.com/neon-mmd/websurfx"
|
|
|
1 |
[package]
|
2 |
name = "websurfx"
|
3 |
+
version = "0.20.8"
|
4 |
edition = "2021"
|
5 |
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
|
6 |
repository = "https://github.com/neon-mmd/websurfx"
|