[package]
edition = "2024"
rust-version = "1.93"
name = "turbo-debug-console"
version = "0.1.0"
authors = ["Enzo Lombardi <enzinol@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Turbo Vision monitor that renders a model-token stream over a socket"
readme = "README.md"
keywords = [
"tui",
"debug",
"turbo-vision",
"console",
"streaming",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
]
license = "MIT"
repository = "https://github.com/aovestdipaperino/turbo-debug-console"
[lib]
name = "turbo_debug_console"
path = "src/lib.rs"
[[bin]]
name = "turbo-debug-console"
path = "src/main.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "protocol"
path = "tests/protocol.rs"
[dependencies.trace-stream]
version = "0.1"
[dependencies.turbo-vision]
version = "2.0"
[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"