[package]
name = "call-graph-cli"
version = "0.3.0"
edition = "2024"
rust-version = "1.88"
description = "Interactive call and type hierarchy TUI"
authors = ["Yinzuo Jiang"]
license = "MIT"
repository = "https://github.com/jiangyinzuo/cgraph"
[lib]
name = "cgraph"
path = "src/lib.rs"
[[bin]]
name = "cgraph"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.6", features = ["derive"] }
crossterm = { version = "0.29", features = ["osc52"] }
petgraph = { version = "0.8", default-features = false, features = ["std", "stable_graph"] }
ratatui = "0.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.53", features = ["io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
toml = "0.9"
tower-lsp = "0.20"
tree-sitter = "0.26"
tree-sitter-c = "0.24.2"
tree-sitter-cpp = "0.23.4"
tree-sitter-python = "0.25.0"
tree-sitter-rust = "0.24.2"
unicode-width = "0.2"