StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | [package] |
| 2 | name = "animated_showcase" |
| 3 | version = "0.1.0" |
| 4 | edition = "2021" |
| 5 | |
| 6 | [dependencies] |
| 7 | strato-platform = { path = "../../crates/strato-platform" } |
| 8 | strato-core = { path = "../../crates/strato-core" } |
| 9 | strato-renderer = { path = "../../crates/strato-renderer" } |
| 10 | strato-widgets = { path = "../../crates/strato-widgets" } |
| 11 | tokio = { workspace = true, features = ["full"] } |
| 12 | tracing = { workspace = true } |
| 13 | tracing-subscriber = { workspace = true } |
| 14 | winit = { workspace = true } |
| 15 | glam = { workspace = true } |
| 16 | anyhow = "1.0" |
| 17 |