[package]
edition = "2024"
rust-version = "1.87"
name = "make-noop"
version = "0.1.0"
authors = ["Sebestyén Balázs <bali.sb@gmail.com>"]
build = false
exclude = [
"/.claude",
"/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attribute macros that replace function, method, and impl-block bodies with no-ops, with customizable return values."
homepage = "https://github.com/s23b/make-noop"
documentation = "https://docs.rs/make-noop"
readme = "README.md"
keywords = [
"noop",
"macro",
"proc-macro",
"stub",
"testing",
]
categories = [
"development-tools::testing",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/s23b/make-noop"
[lib]
name = "make_noop"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "noop"
path = "tests/noop.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]