embed-src 3.3.1

Embed source files into any text file
Documentation
# Contributing

## Prerequisites

- Rust (stable toolchain)
- A `GH_TOKEN` with repo access (for releases)

## Getting Started

```bash
git clone https://github.com/urmzd/embed-src.git
cd embed-src
cargo build
```

## Development

```bash
cargo build          # compile
cargo test           # run tests
cargo fmt            # format code
cargo clippy         # lint
```

## Commit Convention

We use [Angular Conventional Commits](https://www.conventionalcommits.org/):

```
type(scope): description
```

Types: `feat`, `fix`, `docs`, `refactor`, `test`, `chore`, `ci`, `perf`

Commits are enforced via [gitit](https://github.com/urmzd/gitit).

## Pull Requests

1. Fork the repository
2. Create a feature branch (`feat/my-feature`)
3. Make changes and commit using conventional commits
4. Open a pull request against `main`

## Code Style

- `cargo fmt` for formatting
- `clippy` for linting
- No `unsafe` code