Seregon/StratoSDK

StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.

Rust/27.3 KB/No license
examples/counter/Cargo.toml
StratoSDK / examples / counter / Cargo.toml
1[package]
2name = "counter"
3version = "0.1.0"
4edition = "2021"
5 
6[dependencies]
7strato-core = { path = "../../crates/strato-core" }
8strato-widgets = { path = "../../crates/strato-widgets" }
9strato-platform = { path = "../../crates/strato-platform" }
10strato-macros = { path = "../../crates/strato-macros" }
11 
12tokio = { version = "1.40", features = ["rt-multi-thread", "macros"] }
13anyhow = "1.0"
14parking_lot = "0.12"
15