StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | [package] |
| 2 | name = "strato-widgets" |
| 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 = "Widget library for StratoSDK framework" |
| 10 | |
| 11 | [dependencies] |
| 12 | strato-core = { workspace = true } |
| 13 | strato-renderer = { workspace = true } |
| 14 | strato-macros = { workspace = true } |
| 15 | |
| 16 | # Math |
| 17 | glam.workspace = true |
| 18 | |
| 19 | # State |
| 20 | parking_lot.workspace = true |
| 21 | smallvec.workspace = true |
| 22 | slotmap.workspace = true |
| 23 | |
| 24 | # Error handling |
| 25 | thiserror.workspace = true |
| 26 | anyhow.workspace = true |
| 27 | |
| 28 | # Image & Network |
| 29 | image.workspace = true |
| 30 | reqwest.workspace = true |
| 31 | |
| 32 | # Logging |
| 33 | tracing.workspace = true |
| 34 | |
| 35 | # UUID generation |
| 36 | uuid = { version = "1.0", features = ["v4"] } |
| 37 | |
| 38 | [dev-dependencies] |
| 39 | pretty_assertions.workspace = true |
| 40 | |
| 41 | [features] |
| 42 | default = [] |
| 43 |