| 1 | [package] |
| 2 | name = "glib-macros" |
| 3 | documentation = "https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib_macros/" |
| 4 | description = "Rust bindings for the GLib library, proc macros crate" |
| 5 | keywords = ["glib" , "gtk-rs" , "gnome" , "GUI" ] |
| 6 | authors.workspace = true |
| 7 | edition.workspace = true |
| 8 | exclude.workspace = true |
| 9 | homepage.workspace = true |
| 10 | license.workspace = true |
| 11 | repository.workspace = true |
| 12 | rust-version.workspace = true |
| 13 | version.workspace = true |
| 14 | |
| 15 | [dependencies] |
| 16 | heck = "0.5" |
| 17 | proc-macro2 = "1.0" |
| 18 | quote = "1.0" |
| 19 | syn = { version = "2.0.68" , features = ["full" ] } |
| 20 | proc-macro-crate = "3.1" |
| 21 | |
| 22 | [lib] |
| 23 | proc-macro = true |
| 24 | |
| 25 | [dev-dependencies] |
| 26 | glib.workspace = true |
| 27 | trybuild2 = "1.2" |
| 28 | |