31 lines
587 B
TOML
31 lines
587 B
TOML
[package]
|
|
name = "git-next-webhook-actor"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
git-next-config = { workspace = true }
|
|
git-next-repo-actor = { workspace = true }
|
|
|
|
# logging
|
|
tracing = { workspace = true }
|
|
|
|
# Webhooks
|
|
bytes = { workspace = true }
|
|
warp = { workspace = true }
|
|
|
|
# boilerplate
|
|
derive_more = { workspace = true }
|
|
|
|
# Actors
|
|
actix = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
# assert2 = { workspace = true }
|
|
|
|
[lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|