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