| 1 | [package] | |
| 2 | name = "df-worker" | |
| 3 | version.workspace = true | |
| 4 | edition.workspace = true | |
| 5 | rust-version.workspace = true | |
| 6 | license.workspace = true | |
| 7 | ||
| 8 | [[bin]] | |
| 9 | name = "dogfood-worker" | |
| 10 | path = "src/main.rs" | |
| 11 | ||
| 12 | [dependencies] | |
| 13 | df-db = { path = "../df-db" } | |
| 14 | df-index = { path = "../df-index" } | |
| 15 | df-store = { path = "../df-store" } | |
| 16 | ||
| 17 | anyhow.workspace = true | |
| 18 | chrono.workspace = true | |
| 19 | dotenvy.workspace = true | |
| 20 | serde.workspace = true | |
| 21 | serde_json.workspace = true | |
| 22 | sqlx.workspace = true | |
| 23 | tokio.workspace = true | |
| 24 | tracing.workspace = true | |
| 25 | tracing-subscriber.workspace = true | |
| 26 | uuid.workspace = true |
26 lines · TOML