generated from veeso-dev/rust-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit aa2277d
Showing
16 changed files
with
2,745 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: build-test | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- "*.md" | ||
push: | ||
paths-ignore: | ||
- "*.md" | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update && | ||
sudo apt install -y libssl-dev pkg-config unzip && | ||
wget -O /tmp/cargo-make.zip https://github.com/sagiegurari/cargo-make/releases/download/0.37.5/cargo-make-v0.37.5-x86_64-unknown-linux-gnu.zip && | ||
sudo unzip /tmp/cargo-make.zip -d /tmp && | ||
sudo mv /tmp/cargo-make-v0.37.5-x86_64-unknown-linux-gnu/cargo-make $HOME/.cargo/bin/cargo-make && | ||
sudo chmod +x $HOME/.cargo/bin/cargo-make | ||
- name: Build | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: build | ||
args: --all-targets | ||
- name: Test | ||
run: cargo make test --profile development | ||
- name: Format | ||
run: cargo make check-format | ||
- name: Clippy | ||
run: cargo make lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
debug/ | ||
target/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
# Cargo.lock | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb | ||
|
||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
- [Changelog](#changelog) | ||
- [0.1.0](#010) | ||
|
||
--- | ||
|
||
## 0.1.0 | ||
|
||
Released on 26/06/2022 | ||
|
||
- First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Contributing | ||
|
||
- [Contributing](#contributing) | ||
- [Open an issue](#open-an-issue) | ||
- [Questions](#questions) | ||
- [Bug reports](#bug-reports) | ||
- [Feature requests](#feature-requests) | ||
- [Preferred contributions](#preferred-contributions) | ||
- [Pull Request Process](#pull-request-process) | ||
- [Software guidelines](#software-guidelines) | ||
|
||
--- | ||
|
||
## Open an issue | ||
|
||
Open an issue when: | ||
|
||
- You have questions or concerns regarding the project or the application itself. | ||
- You have a bug to report. | ||
- You have a feature or a suggestion to improve tui-realm to submit. | ||
|
||
### Questions | ||
|
||
If you have a question open an issue using the `Question` template. | ||
By default your question should already be labeled with the `question` label, if you need help with your installation, please also add the `help wanted` label. | ||
Check the issue is always assigned to `veeso`. | ||
|
||
### Bug reports | ||
|
||
If you want to report an issue or a bug you've encountered while using tui-realm, open an issue using the `Bug report` template. | ||
The `Bug` label should already be set and the issue should already be assigned to `veeso`. | ||
Don't set other labels to your issue, not even priority. | ||
|
||
When you open a bug try to be the most precise as possible in describing your issue. I'm not saying you should always be that precise, since sometimes it's very easy for maintainers to understand what you're talking about. Just try to be reasonable to understand sometimes we might not know what you're talking about or we just don't have the technical knowledge you might think. | ||
Please always provide the environment you're working on and consider I only offer support for the latest release of the library. | ||
Last but not least: the template I've written must be used. Full stop. | ||
|
||
Maintainers will may add additional labels to your issue: | ||
|
||
- **duplicate**: the issue is duplicated; the reference to the related issue will be added to your description. Your issue will be closed. | ||
- **priority**: this must be fixed asap | ||
- **sorcery**: it is not possible to find out what's causing your bug, nor is reproducible on our test environments. | ||
- **wontfix**: your bug has a very high ratio between the probability to encounter it and the difficult to fix it, or it just isn't a bug, but a feature. | ||
|
||
### Feature requests | ||
|
||
Whenever you have a good idea which chould improve the project, it is a good idea to submit it to the project owner. | ||
The first thing you should do though, is not starting to write the code, but is to become concern about how tui-realm works, what kind | ||
of contribution I appreciate and what kind of contribution I won't consider. | ||
Said so, follow these steps: | ||
|
||
- Read the contributing guidelines, entirely | ||
- Think on whether your idea would fit in the project mission and guidelines or not | ||
- Think about the impact your idea would have on the project | ||
- Open an issue using the `feature request` template describing with accuracy your suggestion | ||
- Wait for the maintainer feedback on your idea | ||
|
||
It is very important to follow these steps, since it will prevent you from working on a feature that will be rejected and trust me, none of us wants to deal with this situation. | ||
|
||
Always mind that your suggestion, may be rejected: I'll always provide a feedback on the reasons that brought me to reject your feature, just try not to get mad about that. | ||
|
||
--- | ||
|
||
## Preferred contributions | ||
|
||
At the moment, these kind of contributions are more appreciated and should be preferred: | ||
|
||
- Fix for issues described in [Known Issues](./README.md#known-issues-) or [issues reported by the community](https://github.com/veeso-dev/ozone/issues) | ||
- Code optimizations: any optimization to the code is welcome | ||
|
||
For any other kind of contribution, especially for new features, please submit a new issue first. | ||
|
||
## Pull Request Process | ||
|
||
Let's make it simple and clear: | ||
|
||
1. Open a PR with an **appropriate label** (e.g. bug, enhancement, ...). | ||
2. Write a **properly documentation** for your software compliant with **rustdoc** standard. | ||
3. Write tests for your code | ||
4. Check your code with `cargo clippy`. | ||
5. Check if the CI for your commits reports three-green. | ||
6. Report changes to the PR you opened, writing a report of what you changed and what you have introduced. | ||
7. Update the `CHANGELOG.md` file with details of changes to the application. In changelog report changes under a chapter called `PR{PULL_REQUEST_NUMBER}` (e.g. PR12). | ||
8. Assign a maintainer to the reviewers. | ||
9. Request maintainers to merge your changes. | ||
|
||
### Software guidelines | ||
|
||
In addition to the process described for the PRs, I've also decided to introduce a list of guidelines to follow when writing the code, that should be followed: | ||
|
||
1. **Let's stop the NPM apocalypse**: personally I'm against the abuse of dependencies we make in software projects and I think that NodeJS has opened the way to this drama (and has already gone too far). Nowadays nobody cares about adding hundreds of dependencies to their projects. Don't misunderstand me: I think that package managers are cool, but I'm totally against the abuse we're making of them. I think when we work on a project, we should try to use the minor quantity of dependencies as possible, especially because it's not hard to see how many libraries are getting abandoned right now, causing compatibility issues after a while. So please, when working on tui-realm, try not to add useless dependencies. | ||
2. **No C-bindings**: personally I think that Rust still relies too much on C. And that's bad, really bad. Many libraries in Rust are just wrappers to C libraries, which is a huge problem, especially considering this is a multiplatform project. Everytime you add a C-binding to your project, you're forcing your users to install additional libraries to their systems. Sometimes these libraries are already installed on their systems (as happens for libssh2 or openssl in this case), but sometimes not. So if you really have to add a dependency to this project, please AVOID completely adding C-bounded libraries. | ||
3. **Test units matter**: Whenever you implement something new to this project, always implement test units which cover the most cases as possible. | ||
4. **Comments are useful**: Many people say that the code should be that simple to talk by itself about what it does, and comments should then be useless. I personally don't agree. I'm not saying they're wrong, but I'm just saying that this approach has, in my personal opinion, many aspects which are underrated: | ||
1. What's obvious for me, might not be for the others. | ||
2. Our capacity to work on a code depends mostly on **time and experience**, not on complexity: I'm not denying complexity matter, but the most decisive factor when working on code is the experience we've acquired working on it and the time we've spent. As the author of the project, I know the project like the back of my hands, but if I didn't work on it for a year, then I would probably have some problems in working on it again as the same speed as before. And do you know what's really time-saving in these cases? Comments. | ||
|
||
--- | ||
|
||
Thank you for any contribution! | ||
Christian Visintin |
Oops, something went wrong.