llmrust 0.1.0

Unified Rust interface for 7 LLM providers (OpenAI, Anthropic, DeepSeek, Google Gemini, Ollama, Moonshot, OpenRouter) with HTTP proxy
Documentation
# Release Checklist


## v0.1.0


Before publishing:

- [ ] `git checkout main && git pull origin main`
- [ ] `cargo fmt --check`
- [ ] `cargo clippy --all-targets --all-features -- -D warnings`
- [ ] `cargo test`
- [ ] `cargo test --all-features`
- [ ] `RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --all-features`
- [ ] `cargo publish --dry-run`
- [ ] `cargo package --list`
- [ ] Confirm CI is green on `main`
- [ ] Confirm `Cargo.toml` version is `0.1.0`
- [ ] Confirm `rust-version` is `1.86`
- [ ] Confirm `CHANGELOG.md` has `## [0.1.0] - 2026-06-11`
- [ ] Create tag: `git tag -a v0.1.0 -m "Release v0.1.0"`
- [ ] Push tag: `git push origin v0.1.0`
- [ ] Publish crate: `cargo publish`
- [ ] Create GitHub Release from `v0.1.0`