[package]
edition = "2021"
rust-version = "1.75"
name = "stopstream"
version = "0.1.0"
authors = ["Mukunda Katta <mukunda.vjcs6@gmail.com>"]
build = false
include = [
"src/**",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming-safe stop-sequence detector for LLM token streams. Handles partial matches at chunk boundaries."
homepage = "https://github.com/MukundaKatta/rust-llm-stack"
readme = "README.md"
keywords = [
"llm",
"streaming",
"stop-sequence",
"tokens",
]
categories = ["text-processing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/rust-llm-stack"
[lib]
name = "stopstream"
path = "src/lib.rs"
[dependencies]