A collection of software to build services and apps in a particular style.
Applications:
appbiotic, a Rust CLI toolappbiotic-code-error, error types with well known metadataGuiding principles, strive for as much as possible:
Meaning:
build.rsIn order to develop and test against all features, select the full feature in your rust-analyzer settings. This
project's workspace .vscode/settings.json already has this setting.
Releasing uses cargo-release:
cargo install --version 0.24.11 cargo-release
Bump version:
cargo-release release version patch --workspace --execute
Push and merge to main. Then tag:
git tag -s "cargo read-manifest | jq -r '"v" + .version'"
Publish:
cargo-release release publish --workspace --execute
Please read the contributing guide for the latest contributing guidelines.