| 1 | [package] |
| 2 | name = "df-web" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "dogfood-web" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [dependencies] |
| 13 | df-db = { path = "../df-db" } |
| 14 | df-auth = { path = "../df-auth" } |
| 15 | df-store = { path = "../df-store" } |
| 16 | df-render = { path = "../df-render" } |
| 17 | |
| 18 | anyhow.workspace = true |
| 19 | base64.workspace = true |
| 20 | axum.workspace = true |
| 21 | axum-extra.workspace = true |
| 22 | chrono.workspace = true |
| 23 | dotenvy.workspace = true |
| 24 | hex.workspace = true |
| 25 | hmac.workspace = true |
| 26 | maud.workspace = true |
| 27 | percent-encoding.workspace = true |
| 28 | rand.workspace = true |
| 29 | serde.workspace = true |
| 30 | serde_json.workspace = true |
| 31 | sha2.workspace = true |
| 32 | sqlx.workspace = true |
| 33 | subtle.workspace = true |
| 34 | tokio.workspace = true |
| 35 | tower.workspace = true |
| 36 | tower-http.workspace = true |
| 37 | tracing.workspace = true |
| 38 | tracing-subscriber.workspace = true |
| 39 | uuid.workspace = true |
| 40 | |
| 41 | # Parsing `_csrf` out of a urlencoded body on the no-JavaScript path. |
| 42 | # Streaming the request body into `git` on the push path. |
| 43 | futures = { workspace = true } |
| 44 | |
| 45 | form_urlencoded = "1" |
| 46 | # `axum-extra`'s cookie builder takes `time` types for expiry. |
| 47 | time = "0.3" |
| 48 | |
| 49 | [dev-dependencies] |
| 50 | async-trait.workspace = true |
50 lines · TOML