| 1 | [package] |
| 2 | name = "df-hook" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | |
| 8 | [[bin]] |
| 9 | name = "dogfood-hook" |
| 10 | path = "src/main.rs" |
| 11 | |
| 12 | [dependencies] |
| 13 | df-db = { path = "../df-db" } |
| 14 | df-store = { path = "../df-store" } |
| 15 | |
| 16 | sqlx.workspace = true |
| 17 | tokio = { workspace = true } |
| 18 | uuid.workspace = true |
18 lines · TOML