livetrace 0.2.3

CLI tool for live tailing of OTLP traces and logs in the Serverless OTLP Forwarder architecture.
Documentation
[package]
name = "livetrace"
version = "0.2.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
rust-version.workspace = true
description = "CLI tool for live tailing of OTLP traces and logs in the Serverless OTLP Forwarder architecture."
repository = "https://github.com/dev7a/serverless-otlp-forwarder/tree/main/cli/livetrace"
documentation = "https://docs.rs/livetrace"
readme = "README.md"
keywords = [ "lambda", "cli", "tracing", "serverless", "otel"]
categories = ["command-line-utilities", "development-tools::debugging"]

[dependencies]
# AWS SDK (Inherit from workspace where possible, specify version if not)
aws-config = { workspace = true }
aws-sdk-cloudwatchlogs = { workspace = true }
aws-sdk-cloudformation = { workspace = true }
aws-sdk-sts = { workspace = true }

# Async Runtime & Utilities (Inherit from workspace)
tokio = { workspace = true }
futures = { workspace = true }

# HTTP Client (Inherit from workspace)
reqwest = { workspace = true, features = ["json", "gzip"] } # Add required features

# Serialization / Deserialization (Inherit from workspace)
serde = { workspace = true }
serde_json = { workspace = true }

# Encoding / Compression (Inherit from workspace)
base64 = { workspace = true }
flate2 = { workspace = true }

# Protobuf (Inherit from workspace)
prost = { workspace = true }
opentelemetry-proto = { workspace = true } # Inherit version and features

# Local Workspace Crates (Path dependencies are fine)
otlp-stdout-span-exporter = { workspace = true }

# CLI Arguments (Inherit from workspace)
clap = { workspace = true, features = ["derive", "env", "cargo"] } # Add required features
clap_complete = { workspace = true }

# Logging (Inherit from workspace)
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] } # Add required features

# Error Handling (Inherit from workspace)
anyhow = { workspace = true }

# Console Coloring and Table
colored = { workspace = true }
comfy-table = { workspace = true, features = ["tty", "custom_styling"] }
# Timestamp Formatting
chrono = { workspace = true, features = ["clock"] }


toml.workspace = true
indexmap = { workspace = true, features = ["serde"] }

globset.workspace = true
regex = { workspace = true } # Added for --grep
# New dependency
hex = { workspace = true }
# Spinner and progress indicators
indicatif = { workspace = true }
terminal_size = { workspace = true }

[dev-dependencies]
tempfile = { workspace = true }