[package]
edition = "2024"
name = "modum"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attribute macro that rewrites named items into module::item paths"
readme = "README.md"
license = "MIT"
repository = "https://github.com/eboody/modum"
resolver = "2"
[lib]
name = "modum"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "cfg_test_module"
path = "tests/cfg_test_module.rs"
[[test]]
name = "permutations"
path = "tests/permutations.rs"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.trybuild]
version = "1"