mib-rs 0.8.0

SNMP MIB parser and resolver
Documentation
# Contributing to mib-rs

Thank you for your interest in contributing.

## Getting Started

1. Fork and clone the repository
2. Install Rust 1.88 or later via [rustup]https://rustup.rs/
3. Run the test suite: `cargo test --all-features`

## Development

### Code Style

Format code before committing:

```bash
cargo fmt
```

Check for lint issues:

```bash
cargo clippy --all-targets --all-features
```

### Testing

Run the full test suite:

```bash
cargo test --all-features
```

### Documentation

Build and preview documentation:

```bash
cargo doc --all-features --open
```

## Pull Requests

- Keep changes focused on a single feature or fix
- Add tests for new functionality
- Update documentation as needed
- Ensure CI passes before requesting review
- Follow existing code style and patterns

## Reporting Issues

When reporting bugs, please include:

- Rust version (`rustc --version`)
- Operating system
- Minimal reproduction case
- Expected vs actual behavior

## License

By contributing, you agree that your contributions will be licensed under the same terms as the project (MIT).