bcar 0.2.1

BCar is a Rust library with basic bicycle car computations.
Documentation
  • Coverage
  • 36.36%
    12 out of 33 items documented9 out of 9 items with examples
  • Size
  • Source code size: 51.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 5.27 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • qeef

BCar library

builds.sr.ht status

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

Contribute

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.