Comprehensive, type-safe Rust SDK for the Anthropic API.
- -----
```toml
[dependencies]
agentik-sdk = "0.1"
```
```rust
use agentik_sdk::Anthropic;
let client = Anthropic::new("your-api-key")?;
let response = client.messages().create(&request).await?;
```