[package]
edition = "2021"
rust-version = "1.88"
name = "ghostscope-ui"
version = "0.1.5"
authors = ["swananan <jt26wzz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal user interface that streams GhostScope traces with async input handling."
homepage = "https://github.com/swananan/ghostscope"
documentation = "https://github.com/swananan/ghostscope#readme"
readme = "README.md"
keywords = [
"ebpf",
"gdb",
"dwarf",
"debugger",
]
categories = [
"development-tools::debugging",
"development-tools::profiling",
]
license = "GPL-3.0-only"
repository = "https://github.com/swananan/ghostscope"
[lib]
name = "ghostscope_ui"
path = "src/lib.rs"
[[test]]
name = "additional_ui_coverage_test"
path = "tests/additional_ui_coverage_test.rs"
[[test]]
name = "advanced_ui_test"
path = "tests/advanced_ui_test.rs"
[[test]]
name = "ansi_color_test"
path = "tests/ansi_color_test.rs"
[[test]]
name = "app_integration_test"
path = "tests/app_integration_test.rs"
[[test]]
name = "command_mode_movement_test"
path = "tests/command_mode_movement_test.rs"
[[test]]
name = "complex_interaction_test"
path = "tests/complex_interaction_test.rs"
[[test]]
name = "detailed_feature_test"
path = "tests/detailed_feature_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "realtime_save_test"
path = "tests/realtime_save_test.rs"
[dependencies.anyhow]
version = "1.0.93"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
[dependencies.crossterm]
version = "0.29"
features = ["event-stream"]
[dependencies.futures-util]
version = "0.3"
[dependencies.ghostscope-protocol]
version = "0.1.5"
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1.10"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.41"
[dependencies.unicode-width]
version = "0.2"