[package]
edition = "2024"
rust-version = "1.93"
name = "trace-stream"
version = "0.1.2"
authors = ["Enzo Lombardi <enzinol@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming renderer for model token streams: tool-call parsing, thinking-text split, and markdown/syntax highlighting to ANSI"
readme = "README.md"
keywords = [
"llm",
"streaming",
"markdown",
"ansi",
"terminal",
]
categories = [
"command-line-interface",
"text-processing",
]
license = "MIT"
repository = "https://github.com/aovestdipaperino/plank"
[lib]
name = "trace_stream"
path = "src/lib.rs"
[dependencies]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"