[package] name = "macro-attr" version = "0.2.0" authors = ["Daniel Keep "] description = "This crate provides the `macro_attr!` macro that enables the use of custom, macro-based attributes and derivations. Supercedes the `custom_derive` crate." repository = "https://github.com/DanielKeep/rust-custom-derive" documentation = "https://docs.rs/crate/macro-attr/" license = "MIT/Apache-2.0" keywords = ["custom", "derive", "attribute", "macro"] exclude = [ ".cargo/*", "local/*", "doc-pkg/*", "update-docs.py", ] [workspace] members = [ "enum_derive", "newtype_derive", "tests/derive-name-macro", "tests/derive-name-proc", "tests/derive-name-test", ] [features] default = ["std"] std = [] unstable-macros-1-1 = [] [dev-dependencies] rustc-serialize = "0.3.15"