steid

@jamesgill /

steid/Cargo.toml
410 BCode·Blame·Raw
1111df1feat: init1mo
1[package]
2name = "steid"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
0d12f7dfeat: config from env and SQLite pool in app context1mo
7dotenvy = "0.15.7"
8envy = "0.4.2"
9serde = { version = "1.0.229", features = ["derive"] }
10sqlx = { version = "0.9.0", default-features = false, features = ["runtime-tokio", "sqlite", "macros"] }
e6f4874feat: topcoat skeleton serving a page1mo
11tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros"] }
12topcoat = "0.5.0"
1e1ae56feat: identity domain model1mo
13uuid = { version = "1.24.0", features = ["v4"] }