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