git-next/crates/file-watcher-actor/Cargo.toml
Paul Campbell cd93d047cb fix: explicitly specify version in each crate
crates.io doesn't appear to like taking the version from the workspace
crate
2024-07-14 14:24:41 +01:00

39 lines
863 B
TOML

[package]
name = "git-next-file-watcher-actor"
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "Config file watcher for git-next, the trunk-based development manager"
[dependencies]
git-next-config = { workspace = true }
git-next-actor-macros = { workspace = true }
# 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"