jackdaw 0.2.1

A 3D level editor built with Bevy
Documentation
# Contributing to Jackdaw

Thank you for your interest in contributing to Jackdaw! This document covers the basics of getting set up and submitting changes.

## Development Setup

### Prerequisites

- **Rust nightly toolchain** — Jackdaw uses edition 2024 features
  ```sh
  rustup toolchain install nightly
  rustup default nightly
  ```
- **System dependencies** — GPU drivers with Vulkan support (or Metal on macOS)
- **Linux extras**`libudev-dev`, `libasound2-dev`, `libwayland-dev` (or equivalent for your distro)

### Clone and Build

```sh
git clone https://github.com/jbuehler23/jackdaw.git
cd jackdaw
cargo build
```

### Running

```sh
# Run the basic example
cargo run --example basic

```

## Checks

Before submitting a PR, make sure the following pass:

```sh
# Format
cargo fmt --all --check

# Lint
cargo clippy --workspace -- -D warnings

# Tests
cargo test --workspace

# Doc build
cargo doc --workspace --no-deps
```

## Pull Requests

1. Fork the repository and create a feature branch from `main`
2. Keep changes focused — one feature or fix per PR please!
3. Make sure all checks above pass
4. Open a PR against `main` with a clear description of what changed and why

## License

By contributing, you agree that your contributions will be licensed under the project's dual MIT/Apache-2.0 license.