anthropic-async 0.5.2

Anthropic API client for Rust with prompt caching support
Documentation
#[cfg(feature = "streaming")]
#[test]
fn streaming_feature_compiles() {
    use anthropic_async::streaming::Accumulator;
    use anthropic_async::streaming::Event;
    use anthropic_async::streaming::EventStream;
    use anthropic_async::streaming::SSEDecoder;
    use anthropic_async::streaming::SseFrame;

    // Verify types are accessible and constructible by explicitly dropping instances.
    // The turbofish annotation ensures type resolution at compile time.
    drop::<SSEDecoder>(SSEDecoder::new());
    drop::<Accumulator>(Accumulator::new());
    drop::<SseFrame>(SseFrame::default());
    drop::<Event>(Event::MessageStop);
    drop::<Option<EventStream>>(None);
}

#[cfg(not(feature = "streaming"))]
#[test]
fn streaming_feature_not_enabled() {
    // Streaming should not be accessible without feature
}