2024-06-29 10:57:18 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-file-watcher-actor"
|
2024-07-14 14:24:41 +01:00
|
|
|
version = "0.9.3"
|
2024-06-29 10:57:18 +01:00
|
|
|
edition = { workspace = true }
|
2024-07-14 10:40:34 +01:00
|
|
|
license = { workspace = true }
|
2024-07-14 13:32:07 +01:00
|
|
|
repository = { workspace = true }
|
|
|
|
description = "Config file watcher for git-next, the trunk-based development manager"
|
2024-06-29 10:57:18 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-06-29 11:14:09 +01:00
|
|
|
git-next-config = { workspace = true }
|
|
|
|
git-next-actor-macros = { workspace = true }
|
2024-06-29 10:57:18 +01:00
|
|
|
# git-next-repo-actor = { workspace = true }
|
|
|
|
|
|
|
|
# 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"
|