[package] name = "auto-error-into-macro" version = "0.1.1" edition = "2021" authors = ["Aaron Robinson "] description = "Macro to automatically convert the Err variant of a Result to the Ok variant. Requires auto-error-into." repository = "https://github.com/Windows10CE/auto-error-into" license = "MIT" keywords = ["macros", "attribute", "result"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] proc-macro2 = "1.0.54" quote = "1.0.26" syn = { version = "2.0.11", features = ["full"] } [lib] proc-macro = true