split-brain-harness 1.0.0

Soul-injected two-stage LLM telemetry pipeline. Wraps any LLM with affective/intent/cognitive analysis, deterministic verification, and a Stage 0 deobfuscation normalizer. Drop-in OpenAI-compatible proxy.
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 = "2021"
name = "split-brain-harness"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Soul-injected two-stage LLM telemetry pipeline. Wraps any LLM with affective/intent/cognitive analysis, deterministic verification, and a Stage 0 deobfuscation normalizer. Drop-in OpenAI-compatible proxy."
readme = "README.md"
keywords = [
    "llm",
    "security",
    "ai-safety",
    "prompt-injection",
    "telemetry",
]
categories = [
    "asynchronous",
    "network-programming",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/bigblue-r4/split-brain-harness"

[features]
default = ["serve"]
live-tests = []
monitor = [
    "dep:ratatui",
    "dep:crossterm",
]
serve = [
    "dep:axum",
    "dep:axum-server",
]

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

[[bin]]
name = "sbh-monitor"
path = "src/bin/monitor.rs"
required-features = ["monitor"]

[[bin]]
name = "split-brain-harness"
path = "src/main.rs"

[[example]]
name = "norm_bench"
path = "examples/norm_bench.rs"

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
version = "0.7"
features = ["json"]
optional = true

[dependencies.axum-server]
version = "0.7"
features = ["tls-rustls"]
optional = true

[dependencies.base64]
version = "0.22"

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.ratatui]
version = "0.29"
optional = true

[dependencies.reqwest]
version = "0.12"
features = ["json"]

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1.38"
features = ["full"]

[dependencies.toml]
version = "0.8"
features = ["parse"]
default-features = false

[dev-dependencies.tempfile]
version = "3"