workspace = { members = [ "examples/dev-testing"] } [package] name = "py03_helper_macros" version = "0.0.2" authors = ["Retrokiller543 "] license = "MIT" repository = "https://gitlab.com/retrokiller543/pyo3-helper-macro" homepage = "https://gitlab.com/retrokiller543/pyo3-helper-macro" documentation = "https://docs.rs/py03_helper_macros" description = "A procedural macro to help wrapping rust structs for pyo3" keywords = ["proc_macro", "procmacro"] edition = "2021" [lib] proc-macro = true [dependencies] quote = "1.0.33" proc-macro2 = "1.0.71" syn = { version = "2.0.43", features = ["full"] } uuid = { version = "1.6.1", features = ["v4"] } pyo3 = "0.20.1" [features] default = [] # if you need more than one pymethod, use this multiple_pymethod = []