[package]
edition = "2021"
rust-version = "1.93"
name = "cargo-statum-graph"
version = "0.7.1"
authors = ["Eran Boodnero <eran@eran.codes>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cargo subcommand for exact Statum workspace export and inspection"
documentation = "https://docs.rs/cargo-statum-graph"
readme = "README.md"
keywords = [
"cargo",
"graph",
"mermaid",
"workflow",
"state-machine",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/eboody/statum"
[lib]
name = "cargo_statum_graph"
path = "src/lib.rs"
[[bin]]
name = "cargo-statum-graph"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[dependencies.cargo_metadata]
version = "0.21"
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.module_path_extractor]
version = "0.7.0"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.quote]
version = "1.0"
[dependencies.ratatui]
version = "0.29"
[dependencies.statum]
version = "0.7.0"
[dependencies.statum-graph]
version = "0.7.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit",
]
[dev-dependencies.tempfile]
version = "3"