dora-rsWe welcome bug reports, feature requests, and pull requests!
Please discuss non-trivial changes in a Github issue or on Discord first before implementing them.
This way, we can avoid unnecessary work on both sides.
The dora project is set up as a cargo workspace.
You can use the standard cargo check, cargo build, cargo run, and cargo test commands.
To run a command for a specific package only, pass e.g. --package dora-daemon.
Running a command for the whole workspace is possible by passing --workspace.
We're using GitHub Actions to run automated checks on all commits and pull requests.
These checks ensure that our main branch always builds successfully and that it passes all tests.
Please ensure that your pull request passes all checks.
You don't need to fix warnings that are unrelated to your changes.
Feel free to ask for help if you're unsure about a check failure.
We're currently running the following kind of checks:
examples subdirectory. This check is run on Linux, Windows, and macOS.examples subdirectory. This check is run on Linux only.docs subfolder.dora command-line application. This check is run on Linux, Windows, and macOS.clippy project.rustfmt (see below)We use rustfmt with its default settings to format our code.
Please run cargo fmt --all on your code before submitting a pull request.
Our CI will run an automatic formatting check of your code.
The maintainers are responsible for publishing new versions of the dora crates.
Please don't open unsolicited pull requests to create new releases.
Instead, request a new version by opening an issue or by leaving a comment on a merged PR.