[package]
edition = "2024"
rust-version = "1.85"
name = "fastapi-output"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-aware rich console output for fastapi_rust"
homepage = "https://github.com/Dicklesworthstone/fastapi_rust"
documentation = "https://docs.rs/fastapi-output"
readme = "README.md"
keywords = [
"terminal",
"cli",
"output",
"fastapi",
"logging",
]
categories = [
"command-line-interface",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Dicklesworthstone/fastapi_rust"
resolver = "2"
[features]
default = ["rich"]
full = [
"rich",
"rich_rust/full",
]
rich = ["dep:rich_rust"]
[lib]
name = "fastapi_output"
path = "src/lib.rs"
[[test]]
name = "e2e_agent_detection"
path = "tests/e2e_agent_detection.rs"
[[test]]
name = "e2e_component_integration"
path = "tests/e2e_component_integration.rs"
[[test]]
name = "integration_app_lifecycle"
path = "tests/integration_app_lifecycle.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[dependencies.crossterm]
version = "0.28"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.rich_rust]
version = "0.1.1"
optional = true
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.insta]
version = "1.34"
features = ["redactions"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serial_test]
version = "3.2"
[lints.clippy]
doc_link_with_quotes = "allow"
doc_markdown = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"