StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | [package] |
| 2 | name = "hello_world" |
| 3 | version = "0.1.0" |
| 4 | edition = "2021" |
| 5 | |
| 6 | [dependencies] |
| 7 | strato-sdk = { path = "../.." } |
| 8 | |
| 9 | tokio = { version = "1.40", features = ["rt-multi-thread", "macros"] } |
| 10 | anyhow = "1.0" |
| 11 |