[package] name = "function-wrapper" version = "0.1.7" authors = ["Chandler Calkins "] edition = "2021" description = "Rust attribute macro library that makes it easy to wrap functions in code that runs before and / or after a function executes." readme = "README.md" documentation = "https://docs.rs/function-wrapper" repository = "https://github.com/ChandlerJayCalkins/function-wrapper" license = "MIT OR Apache-2.0" keywords = ["wrapper", "function", "attribute", "attributes", "macros"] categories = ["data-structures", "development-tools", "development-tools::procedural-macro-helpers"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] proc-macro2 = { version = "1.0.86" } syn = { version = "2.0.79", features = ["full", "extra-traits"] } quote = { version = "1.0.37" }