| 1 | [package] |
| 2 | name = "codewhale-hooks" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | repository.workspace = true |
| 8 | description = "Hook dispatch and notifications support for Codewhale" |
| 9 | |
| 10 | [lints] |
| 11 | workspace = true |
| 12 | |
| 13 | [dependencies] |
| 14 | anyhow.workspace = true |
| 15 | async-trait.workspace = true |
| 16 | chrono.workspace = true |
| 17 | codewhale-protocol = { path = "../protocol", version = "0.10.0" } |
| 18 | codewhale-release = { path = "../release", version = "0.10.0" } |
| 19 | reqwest.workspace = true |
| 20 | serde.workspace = true |
| 21 | serde_json.workspace = true |
| 22 | tokio.workspace = true |
| 23 | tracing.workspace = true |
| 24 | |
| 25 | [dev-dependencies] |
| 26 | tempfile.workspace = true |
| 27 | wiremock = "0.6" |
| 28 |