[package] name = "inertia-macros" description = "A simple library of attribute macros to assist with overloading operators for borrowed and owned data." version = "0.1.0" authors = ["Tony Nguyen <900692-t101@users.noreply.gitlab.com>", "William Youmans "] edition = "2018" readme = "README.md" license = "Apache-2.0" keywords = ["operators", "overload", "macros"] repository = "https://github.com/wjyoumans/inertia-macros" include = [ "src/**/*.rs", "Cargo.toml", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] syn = { version = "1.0", features = ["full"] } quote = "1.0" proc-macro2 = "1.0"