[package] name = "oofs_derive" version = "0.2.3" edition = "2021" authors = ["PoOnesNerfect "] description = "Error handling library that generates and injects context for you." documentation = "https://docs.rs/oofs/" repository = "https://github.com/PoOnesNerfect/oofs" homepage = "https://github.com/PoOnesNerfect/oofs" license = "MIT" readme = "../README.md" categories = ["rust-patterns"] keywords = ["error", "error-handling", "attribute", "bubble-up"] # 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", "extra-traits"] } quote = "1.0" proc-macro2 = { version = "1.0" } proc-macro-error = { version = "1.0" } paste = { version = "1.0" } [dev-dependencies] oofs = { version = "0.2", path = "../oofs" } serde = { version = "1" } serde_json = { version = "1" }