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
crates/strato-widgets/Cargo.toml
1[package]
2name = "strato-widgets"
3version.workspace = true
4edition.workspace = true
5authors.workspace = true
6license.workspace = true
7repository.workspace = true
8documentation.workspace = true
9description = "Widget library for StratoSDK framework"
10 
11[dependencies]
12strato-core = { workspace = true }
13strato-renderer = { workspace = true }
14strato-macros = { workspace = true }
15 
16# Math
17glam.workspace = true
18 
19# State
20parking_lot.workspace = true
21smallvec.workspace = true
22slotmap.workspace = true
23 
24# Error handling
25thiserror.workspace = true
26anyhow.workspace = true
27 
28# Image & Network
29image.workspace = true
30reqwest.workspace = true
31 
32# Logging
33tracing.workspace = true
34 
35# UUID generation
36uuid = { version = "1.0", features = ["v4"] }
37 
38[dev-dependencies]
39pretty_assertions.workspace = true
40 
41[features]
42default = []
43