| 1 | [package] |
| 2 | name = "steid" |
| 3 | version = "0.1.0" |
| 4 | edition = "2024" |
| 5 | |
| 6 | [dependencies] |
| 7 | argon2 = "0.5.3" |
| 8 | bytes = "1" |
| 9 | dotenvy = "0.15.7" |
| 10 | envy = "0.4.2" |
| 11 | futures-util = { version = "0.3", default-features = false, features = ["std"] } |
| 12 | http-body = "1" |
| 13 | rand = "0.10.2" |
| 14 | serde = { version = "1.0.229", features = ["derive"] } |
| 15 | sqlx = { version = "0.9.0", default-features = false, features = ["runtime-tokio", "sqlite", "macros", "migrate"] } |
| 16 | subtle = "2.6.1" |
| 17 | tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros", "process", "fs", "io-util"] } |
| 18 | tokio-util = { version = "0.7", features = ["io"] } |
| 19 | topcoat = { version = "0.5.0", features = ["icon-iconify", "tailwind", "ui"] } |
| 20 | uuid = { version = "1.24.0", features = ["v4"] } |
| 21 | |
| 22 | [build-dependencies] |
| 23 | topcoat = { version = "0.5.0", default-features = false, features = ["tailwind", "icon-iconify"] } |
| 24 | |
| 25 | [dev-dependencies] |
| 26 | tempfile = "3.27.0" |