erroracle 0.2.0

HTTP error classification and target modeling for scanner feedback loops.
Documentation
# erroracle

Classify HTTP error responses. Is it a WAF block? A real application error? A rate limit? A generic 404? Feed it responses, it builds a model of the target's error behavior, then classifies new responses against that model.

```rust
use erroracle::{HttpResponse, ResponseDisposition};

let resp = HttpResponse::new(403, "Access Denied by Firewall");
let classification = erroracle::classify(&resp);
// ResponseDisposition::WafBlock
```

## Contributing

Pull requests are welcome. There is no such thing as a perfect crate. If you find a bug, a better API, or just a rough edge, open a PR. We review quickly.

## License

MIT. Copyright 2026 CORUM COLLECTIVE LLC.