llm-dialect 0.1.3

Pure sans-I/O LLM dialect translation: Anthropic Messages / OpenAI Chat / OpenAI Responses wire formats ↔ a canonical model, plus SSE framer state machines. No runtime, no I/O, no wall clock.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "llm-dialect"
version = "0.1.3"
build = false
include = [
    "src/**/*.rs",
    "benches/**/*.rs",
    "tests/**/*.rs",
    "Cargo.toml",
    "README.md",
    "LICENSE-MIT",
    "ARCHITECTURE.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure sans-I/O LLM dialect translation: Anthropic Messages / OpenAI Chat / OpenAI Responses wire formats ↔ a canonical model, plus SSE framer state machines. No runtime, no I/O, no wall clock."
homepage = "https://github.com/df49b9cd/llm-dialect"
documentation = "https://docs.rs/llm-dialect"
readme = "README.md"
keywords = [
    "llm",
    "openai",
    "anthropic",
    "sse",
    "translate",
]
categories = [
    "web-programming",
    "network-programming",
    "parsing",
]
license = "MIT"
repository = "https://github.com/df49b9cd/llm-dialect"

[features]
axum = ["dep:axum"]
default = []

[lib]
name = "llm_dialect"
path = "src/lib.rs"

[[test]]
name = "purity_lint"
path = "tests/purity_lint.rs"

[[bench]]
name = "deflate"
path = "benches/deflate.rs"
harness = false

[[bench]]
name = "framer"
path = "benches/framer.rs"
harness = false

[[bench]]
name = "req"
path = "benches/req.rs"
harness = false

[dependencies.anyhow]
version = "1"

[dependencies.axum]
version = "0.8"
optional = true

[dependencies.eventsource-stream]
version = "0.2"

[dependencies.futures]
version = "0.3"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.criterion]
version = "0.8"
features = [
    "cargo_bench_support",
    "plotters",
]
default-features = false

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
]