Paul Campbell
b8f4adeb50
All checks were successful
Rust / build (push) Successful in 1m26s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
35 lines
746 B
TOML
35 lines
746 B
TOML
[package]
|
|
name = "git-next-file-watcher-actor"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "Config file watcher for git-next, the trunk-based development manager"
|
|
|
|
[dependencies]
|
|
# logging
|
|
tracing = { workspace = true }
|
|
|
|
# file watcher
|
|
inotify = { workspace = true }
|
|
|
|
# Webhooks
|
|
# bytes = { workspace = true }
|
|
# warp = { workspace = true }
|
|
|
|
# boilerplate
|
|
# derive_more = { workspace = true }
|
|
thiserror = { 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"
|