Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.63 KB

File metadata and controls

57 lines (37 loc) · 1.63 KB

Contributing Guide

Welcoming contributions from the community!

Made with Rust Documentation

Quick Start

  1. Fork and clone the repository:
git clone https://github.com/yourusername/feluda.git
cd feluda
  1. Build and run:
cargo build
./target/debug/feluda --help
  1. Run tests:
cargo test
  1. Setup pre-commit hooks (recommended):
just setup

Documentation

For detailed contributing guidelines, please visit our documentation:

Submitting Changes

  1. Create a branch: git checkout -b feat/my-feature
  2. Make your changes and commit: git commit -m "add: feature"
  3. Push and open a PR: git push origin feat/my-feature

Reporting Issues

Found a bug or have a feature request? Open an issue on GitHub.


Minimum Supported Rust Version: 1.88.0