StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | [package] |
| 2 | name = "strato-macros" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | authors.workspace = true |
| 6 | license.workspace = true |
| 7 | repository.workspace = true |
| 8 | documentation.workspace = true |
| 9 | description = "Procedural macros for StratoSDK framework" |
| 10 | |
| 11 | [lib] |
| 12 | proc-macro = true |
| 13 | |
| 14 | [dependencies] |
| 15 | syn = { workspace = true } |
| 16 | quote = { workspace = true } |
| 17 | proc-macro2 = { workspace = true } |
| 18 |