claude-agent-sdk 0.1.1

Idiomatic Rust SDK for building AI agents powered by Claude Code with full async support, type safety, and security hardening
Documentation
1
2
3
4
5
6
7
8
//! Message parsing and handling
//!
//! This module provides functionality for parsing JSON messages from the Claude Code CLI
//! into typed Rust structures.

pub mod parser;

pub use parser::parse_message;