~qeef/bcar

BCar is a Rust library with basic bicycle car computations.
d37d2c10 — Jiri Vlasak 3 years ago
Update readme with mailing list info
d242df37 — Jiri Vlasak 3 years ago
Add find entry for perpendicular parking
4efdfd66 — Jiri Vlasak 3 years ago
Merge branch 'hotfix/0.2.1'

clone

read-only
https://git.sr.ht/~qeef/bcar
read/write
git@git.sr.ht:~qeef/bcar

You can also use your local clone with git send-email.

#BCar library

builds.sr.ht status

BCar is a Rust library with basic bicycle car computations. The project is published under MIT License.

#Contribute

git send-email --to='~qeef/public-inbox@lists.sr.ht' --subject-prefix='PATCH bcar.rs' --annotate -vN gitrevisions

where N is patchset version and gitrevisions.

Use OneFlow branching model and keep the changelog.

Write great git commit messages:

  1. Separate subject from body with a blank line.
  2. Limit the subject line to 50 characters.
  3. Capitalize the subject line.
  4. Do not end the subject line with a period.
  5. Use the imperative mood in the subject line.
  6. Wrap the body at 72 characters.
  7. Use the body to explain what and why vs. how.

When adding feature or hotfix, use Test-driven development (TDD):

  1. Add unit test and skeleton.
  2. Run tests (cargo test), check that the test fail.
  3. Code now. Implement functionality.
  4. Run tests again, check that the test pass.
  5. Refactor.

Document new functions, methods, structs, and files. Use Examples section as basic unit tests.