[package] name = "proc-state" description = "Sustain global variables between individual proc-macro call" authors = ["Yasuo Ozu "] repository = "https://github.com/yasuo-ozu/proc-state" license = "MIT" version = "0.1.1" keywords = ["macros", "syn", "proc-macro"] categories = ["rust-patterns", "development-tools::procedural-macro-helpers"] edition = "2021" [lib] path = "lib.rs" [dependencies] proc-state-macro = { path = "macro", version = "0.1.1" } [dependencies.syn] version = "2.0" features = [ "full", "derive", "printing", "extra-traits"] [workspace] members = [ ".", "testing", "testing/macro", "testing/macro2", "testing/a", "macro", ] resolver = "2"