Skip to content

Commit 9281a88

Browse files
committed
chore: initial catalyst libs commit
1 parent 3981c19 commit 9281a88

File tree

733 files changed

+55
-52090
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

733 files changed

+55
-52090
lines changed

.github/CODEOWNERS

-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
/dashboard/ @minikin
2-
3-
/hermes/ @stevenj @Mr-Leshiy @FelipeRosa @cong-or @saibatizoku @minikin
4-
51
.md @stevenj @minikin

.github/ISSUE_TEMPLATE/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Hermes Discussions
4-
url: https://github.com/input-output-hk/hermes/discussions/
3+
- name: Catalyst Libs Discussions
4+
url: https://github.com/input-output-hk/catalyst-libs/discussions/
55
about: Please ask and answer questions here.

.github/dependabot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ updates:
1414
- "stevenj"
1515

1616
- package-ecosystem: "pub"
17-
directory: "/dashboard"
17+
directory: "/pubs"
1818
schedule:
1919
interval: "monthly"
2020
assignees:
2121
- "minikin"
2222

2323
- package-ecosystem: "cargo"
24-
directory: "/hermes"
24+
directory: "/crates"
2525
schedule:
26-
interval: "monthly"
26+
interval: "monthly"
2727
assignees:
2828
- "stevenj"

.github/workflows/flitter-mobile-integration-test.yml

-57
This file was deleted.

.github/workflows/flitter-web-integration-test.yml

-48
This file was deleted.

.markdownlint-cli2.jsonc

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"ignores": [
1111
".config/dictionaries/**",
1212
"**/target/**",
13-
"hermes/wasm/*/**",
1413
"**/.dart_tool/**"
1514
],
1615
// Set standard config options in `/.markdownlint.jsonc`

.vscode/launch.recommended.json

-44
This file was deleted.

.vscode/settings.recommended.json

+6-22
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,15 @@
99
},
1010
"files.autoSave": "afterDelay",
1111
"editor.formatOnType": true,
12-
"editor.rulers": [
13-
100
14-
],
12+
"editor.rulers": [100],
1513
"editor.tabSize": 4,
1614
"debug.openDebug": "openOnDebugBreak",
1715
"debug.internalConsoleOptions": "openOnSessionStart",
1816
"dart.debugSdkLibraries": false,
1917
"[dart]": {
2018
"editor.formatOnSave": true,
2119
"editor.formatOnType": true,
22-
"editor.rulers": [
23-
80
24-
],
20+
"editor.rulers": [80],
2521
"editor.codeActionsOnSave": {
2622
"source.fixAll": true,
2723
"source.organizeImports": true
@@ -35,9 +31,6 @@
3531
"window.title": "${dirty}${activeEditorShort}",
3632
"conventionalCommits.scopes": [
3733
"vscode",
38-
"hermes",
39-
"dashboard",
40-
"hermes-lib",
4134
"mdlint",
4235
"languages",
4336
"spelling",
@@ -52,15 +45,8 @@
5245
"files.associations": {
5346
"Earthfile": "earthfile"
5447
},
55-
"rust-analyzer.linkedProjects": [
56-
"./hermes/Cargo.toml",
57-
"./wasm/wasi-hermes-component-adapter/Cargo.toml"
58-
],
59-
"rust-analyzer.check.overrideCommand": [
60-
"bash",
61-
"-c",
62-
"cargo lint-vscode"
63-
],
48+
"rust-analyzer.linkedProjects": ["crates/*"],
49+
"rust-analyzer.check.overrideCommand": ["bash", "-c", "cargo lint-vscode"],
6450
"yaml.schemas": {
6551
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
6652
},
@@ -77,8 +63,6 @@
7763
"files.trimTrailingWhitespace": true,
7864
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
7965
},
80-
"rust-analyzer.rustfmt.extraArgs": [
81-
"+nightly"
82-
],
66+
"rust-analyzer.rustfmt.extraArgs": ["+nightly"],
8367
"rust-analyzer.lens.enable": true
84-
}
68+
}

CONTRIBUTING.md

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
# Contributing to Hermes
1+
# Contributing to Catalyst Libs
22

33
First off, thanks for taking the time to contribute! ❤️
44

5-
* [Contributing to Hermes](#contributing-to-hermes)
6-
* [Code of Conduct](#code-of-conduct)
7-
* [I Have a Question](#i-have-a-question)
8-
* [I Want To Contribute](#i-want-to-contribute)
9-
* [Reporting Bugs](#reporting-bugs)
10-
* [Before Submitting a Bug Report](#before-submitting-a-bug-report)
11-
* [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
12-
* [Suggesting Enhancements](#suggesting-enhancements)
13-
* [Before Submitting an Enhancement](#before-submitting-an-enhancement)
14-
* [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
15-
* [Your First Code Contribution](#your-first-code-contribution)
16-
* [Improving The Documentation](#improving-the-documentation)
17-
* [Style guides](#style-guides)
18-
* [Rust](#rust)
19-
* [Dart](#dart)
20-
* [Flutter](#flutter)
21-
* [Commit Messages](#commit-messages)
5+
- [Contributing to Catalyst Libs](#contributing-to-catalyst-libs)
6+
- [Code of Conduct](#code-of-conduct)
7+
- [I Have a Question](#i-have-a-question)
8+
- [I Want To Contribute](#i-want-to-contribute)
9+
- [Reporting Bugs](#reporting-bugs)
10+
- [Before Submitting a Bug Report](#before-submitting-a-bug-report)
11+
- [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
12+
- [Suggesting Enhancements](#suggesting-enhancements)
13+
- [Before Submitting an Enhancement](#before-submitting-an-enhancement)
14+
- [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
15+
- [Your First Code Contribution](#your-first-code-contribution)
16+
- [Improving The Documentation](#improving-the-documentation)
17+
- [Style guides](#style-guides)
18+
- [Rust](#rust)
19+
- [Dart](#dart)
20+
- [Flutter](#flutter)
21+
- [Commit Messages](#commit-messages)
2222

2323
All types of contributions are encouraged and valued.
2424
Please make sure to read the relevant section before making your contribution.
@@ -28,26 +28,26 @@ The community looks forward to your contributions. 🎉
2828
## Code of Conduct
2929

3030
This project and everyone participating in it is governed by the
31-
[Hermes Code of Conduct](https://github.com/input-output-hk/hermes/blob/main/CODE_OF_CONDUCT.md).
31+
[catalyst-libs Code of Conduct](https://github.com/input-output-hk/catalyst-libs/blob/main/CODE_OF_CONDUCT.md).
3232
By participating, you are expected to uphold this code.
3333
Please report unacceptable behavior
3434
3535

3636
## I Have a Question
3737

3838
> If you want to ask a question, we assume that you have read the available
39-
[Documentation](https://input-output-hk.github.io/hermes/).
39+
[Documentation](https://input-output-hk.github.io/catalyst-libs/).
4040

4141
Before you ask a question, it is best to search for existing
42-
[Issues](https://github.com/input-output-hk/hermes/issues)
42+
[Issues](https://github.com/input-output-hk/catalyst-libs/issues)
4343
that might help you.
4444
In case you have found a suitable issue and still need clarification, you can write your question
45-
[here](https://github.com/input-output-hk/hermes/discussions).
45+
[here](https://github.com/input-output-hk/catalyst-libs/discussions).
4646
It is also advisable to search the internet for answers first.
4747

4848
If you then still feel the need to ask a question and need clarification, we recommend the following:
4949

50-
* Open an [Issue](https://github.com/input-output-hk/hermes/issues/new/choose).
50+
* Open an [Issue](https://github.com/input-output-hk/catalyst-libs/issues/new/choose).
5151
* Provide as much context as you can about what you're running into.
5252
* Provide project and platform versions (`rustc --version --verbose`, `flutter doctor -v`, etc),
5353
depending on what seems relevant.
@@ -67,11 +67,11 @@ Please complete the following steps in advance to help us fix any potential bug
6767
* Make sure that you are using the latest version.
6868
* Determine if your bug is really a bug and not an error on your side.
6969
e.g. using incompatible environment components/versions (Make sure that you have read the
70-
[documentation](https://input-output-hk.github.io/hermes).
70+
[documentation](https://input-output-hk.github.io/catalyst-libs).
7171
If you are looking for support, you might want to check [this section](#i-have-a-question).
7272
* To see if other users have experienced (and potentially already solved) the same issue you are having.
7373
Check if there is not already a bug report existing for your bug or error in the
74-
[bug tracker](https://github.com/input-output-hk/hermes/issues?q=is%3Aopen+is%3Aissue+label%3Abug).
74+
[bug tracker](https://github.com/input-output-hk/catalyst-libs/issues?q=is%3Aopen+is%3Aissue+label%3Abug).
7575
* Also make sure to search the internet (including Stack Overflow)
7676
to see if users outside the GitHub community have discussed the issue.
7777
* Collect information about the bug:
@@ -92,7 +92,7 @@ Please complete the following steps in advance to help us fix any potential bug
9292
We use GitHub issues to track bugs and errors.
9393
If you run into an issue with the project:
9494

95-
* Open an [Issue](https://github.com/input-output-hk/hermes/issues/new).
95+
* Open an [Issue](https://github.com/input-output-hk/catalyst-libs/issues/new).
9696
(Since we can't be sure at this point whether it is a bug or not,
9797
we ask you not to talk about a bug yet and not to label the issue.)
9898
* Explain the behavior you would expect and the actual behavior.
@@ -115,17 +115,17 @@ Once it's filed:
115115

116116
### Suggesting Enhancements
117117

118-
This section guides you through submitting an enhancement suggestion for Hermes,
118+
This section guides you through submitting an enhancement suggestion for catalyst-libs,
119119
**including completely new features and minor improvements to existing functionality**.
120120
Following these guidelines will help maintainers and the community to understand your suggestion and
121121
find related suggestions.
122122

123123
#### Before Submitting an Enhancement
124124

125125
* Make sure that you are using the latest version.
126-
* Read the [documentation](https://github.com/input-output-hk/hermes) carefully.
126+
* Read the [documentation](https://github.com/input-output-hk/catalyst-libs) carefully.
127127
Find out if the functionality is already covered, maybe by an individual configuration.
128-
* Perform a [search](https://github.com/input-output-hk/hermes/issues)
128+
* Perform a [search](https://github.com/input-output-hk/catalyst-libs/issues)
129129
to see if the enhancement has already been suggested.
130130
If it has, add a comment to the existing issue instead of opening a new one.
131131
* Find out whether your idea fits with the scope and aims of the project.
@@ -135,7 +135,7 @@ to see if the enhancement has already been suggested.
135135

136136
#### How Do I Submit a Good Enhancement Suggestion?
137137

138-
Enhancement suggestions are tracked as [GitHub issues](https://github.com/input-output-hk/hermes/issues).
138+
Enhancement suggestions are tracked as [GitHub issues](https://github.com/input-output-hk/catalyst-libs/issues).
139139

140140
* Use a **clear and descriptive title** for the issue to identify the suggestion.
141141
* Provide a **step-by-step description of the suggested enhancement** in as many details as possible.
@@ -146,13 +146,13 @@ Enhancement suggestions are tracked as [GitHub issues](https://github.com/input-
146146
You can use [this tool](https://www.cockos.com/licecap/) to record GIFs on macOS and Windows,
147147
and [this tool](https://github.com/colinkeenan/silentcast) or
148148
[this tool](https://github.com/GNOME/byzanz) on Linux.
149-
* **Explain why this enhancement would be useful** to most Hermes users.
149+
* **Explain why this enhancement would be useful** to most catalyst-libs users.
150150
You may also want to point out the other projects that solved it better and which could serve as inspiration.
151151

152152
### Your First Code Contribution
153153

154154
Embarking on your first code contribution can be an exhilarating yet intimidating endeavor.
155-
Here at Hermes, we foster a welcoming and supportive environment to ensure
155+
Here at catalyst-libs, we foster a welcoming and supportive environment to ensure
156156
that everyone can contribute to the codebase irrespective of their experience level.
157157
Below is a step-by-step guide to making your first code contribution to our repository:
158158

0 commit comments

Comments
 (0)