| 1 | [package] |
| 2 | name = "steid" |
| 3 | version = "0.1.0" |
| 4 | edition = "2024" |
| 5 | |
| 6 | [dependencies] |
26d9828feat: password hashing behind a port1mo | 7 | argon2 = "0.5.3" |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 8 | dotenvy = "0.15.7" |
| 9 | envy = "0.4.2" |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 10 | rand = "0.10.2" |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 11 | serde = { version = "1.0.229", features = ["derive"] } |
e51b80cfeat: sqlite migrations for the identity schema1mo | 12 | sqlx = { version = "0.9.0", default-features = false, features = ["runtime-tokio", "sqlite", "macros", "migrate"] } |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 13 | subtle = "2.6.1" |
e6f4874feat: topcoat skeleton serving a page1mo | 14 | tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros"] } |
af126c7feat: tailwind theme and the first components25d | 15 | topcoat = { version = "0.5.0", features = ["tailwind", "ui"] } |
1e1ae56feat: identity domain model1mo | 16 | uuid = { version = "1.24.0", features = ["v4"] } |
af126c7feat: tailwind theme and the first components25d | 17 | |
| 18 | [build-dependencies] |
| 19 | topcoat = { version = "0.5.0", default-features = false, features = ["tailwind"] } |