[package]
edition = "2021"
rust-version = "1.75"
name = "claude-stream"
version = "0.1.0"
authors = ["MukundaKatta"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse Anthropic's Server-Sent Events stream into typed events. No SDK dependency — feed it bytes, get back message_start, content_block_delta, etc."
homepage = "https://github.com/MukundaKatta/claude-stream-rs"
documentation = "https://docs.rs/claude-stream"
readme = "README.md"
keywords = [
"anthropic",
"claude",
"sse",
"streaming",
"parser",
]
categories = [
"parser-implementations",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/MukundaKatta/claude-stream-rs"
[lib]
name = "claude_stream"
path = "src/lib.rs"
[[test]]
name = "test_parser"
path = "tests/test_parser.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"