call-graph-cli 0.1.0

Interactive call and type hierarchy TUI
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "call-graph-cli"
version = "0.1.0"
authors = ["Yinzuo Jiang"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive call and type hierarchy TUI"
readme = "README.md"
license = "MIT"
repository = "https://github.com/jiangyinzuo/cgraph"

[lib]
name = "cgraph"
path = "src/lib.rs"

[[bin]]
name = "cgraph"
path = "src/main.rs"

[[example]]
name = "lsp_hierarchy"
path = "examples/lsp_hierarchy.rs"

[[example]]
name = "lsp_workspace_symbols"
path = "examples/lsp_workspace_symbols.rs"

[[test]]
name = "test_documentation"
path = "tests/test_documentation.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.6"
features = ["derive"]

[dependencies.crossterm]
version = "0.29"

[dependencies.petgraph]
version = "0.8"
features = [
    "std",
    "stable_graph",
]
default-features = false

[dependencies.ratatui]
version = "0.30"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1.53"
features = [
    "io-util",
    "macros",
    "net",
    "process",
    "rt-multi-thread",
    "signal",
    "sync",
    "time",
]

[dependencies.toml]
version = "0.9"

[dependencies.tower-lsp]
version = "0.20"

[dependencies.tree-sitter]
version = "0.26"

[dependencies.tree-sitter-c]
version = "0.24.2"

[dependencies.tree-sitter-cpp]
version = "0.23.4"

[dependencies.tree-sitter-python]
version = "0.25.0"

[dependencies.tree-sitter-rust]
version = "0.24.2"

[dependencies.unicode-width]
version = "0.2"