[package]
edition = "2024"
rust-version = "1.85"
name = "execute-command-macro-impl"
version = "0.3.0"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Create `Command` instances using the `command!` macro."
homepage = "https://magiclen.org/execute"
readme = "README.md"
keywords = [
"execute",
"command",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/magiclen/execute"
[lib]
name = "execute_command_macro_impl"
path = "src/lib.rs"
proc-macro = true
[dependencies.execute-command-tokens]
version = "0.3"
[dependencies.quote]
version = "1.0.25"
[dependencies.syn]
version = "2"
features = [
"parsing",
"proc-macro",
]
default-features = false