[package]
edition = "2024"
name = "cargo-macra"
version = "0.1.2"
authors = ["Yasuo Ozu <yasuo@ozu.email>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for working with macro expansion and diagnostics in Rust projects."
readme = "README.md"
keywords = [
"cargo",
"macros",
"rust",
"tooling",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/yasuo-ozu/macra"
[[bin]]
name = "cargo-macra"
path = "src/main.rs"
[[test]]
name = "show_expansion"
path = "tests/show_expansion.rs"
[[test]]
name = "test_debug_macros"
path = "tests/test_debug_macros.rs"
[dependencies.cargo_metadata]
version = "0.23"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.filetime]
version = "0.2"
[dependencies.macra]
version = "0.1.2"
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.quote]
version = "1.0.44"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
"visit",
]
[dev-dependencies]