[package]
edition = "2024"
name = "agent-client-protocol-trace-viewer"
version = "0.11.0"
authors = ["Zed <hi@zed.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive sequence diagram viewer for Agent Client Protocol trace files"
homepage = "https://github.com/agentclientprotocol/rust-sdk"
readme = false
keywords = [
"acp",
"trace",
"debugging",
"visualization",
]
categories = ["development-tools::debugging"]
license = "Apache-2.0"
repository = "https://github.com/agentclientprotocol/rust-sdk"
[lib]
name = "agent_client_protocol_trace_viewer"
path = "src/lib.rs"
[[bin]]
name = "agent-client-protocol-trace-viewer"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.8"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.open]
version = "5"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.tokio]
version = "1.48"
features = ["full"]
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = ["fs"]
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
type_complexity = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
let-underscore = "warn"
missing_debug_implementations = "warn"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.unused]
level = "warn"
priority = -1